MENU navbar-image

Introduction

This documentation aims to provide all the information you need to work with our API.

<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>

Authenticating requests

This API is not authenticated.

Abonnements et publications

GET api/v1/user-follows

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/user-follows" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user-follows"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/user-follows

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/user-follows

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/user-follows" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"follower_id\": \"architecto\",
    \"followed_user_id\": \"architecto\",
    \"followed_profile\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user-follows"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "follower_id": "architecto",
    "followed_user_id": "architecto",
    "followed_profile": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/user-follows

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

follower_id   string     

User who follows. Example: architecto

followed_user_id   string     

User being followed. Legacy following is accepted. Example: architecto

followed_profile   string  optional    

optional seller or buyer. Legacy isSeller/is_seller is accepted. Example: architecto

DELETE api/v1/user-follows/{followUser_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/user-follows/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user-follows/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/user-follows/{followUser_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

followUser_id   string     

The ID of the followUser. Example: architecto

Authentification

POST api/v1/register

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/register" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"gbailey@example.net\",
    \"telephone\": \"architecto\",
    \"password\": \"|]|{+-\",
    \"username\": \"b\",
    \"firstname\": \"architecto\",
    \"lastname\": \"architecto\",
    \"language\": \"en\",
    \"currency\": \"USD\",
    \"country_indicative\": \"ngzmiy\",
    \"password_confirmation\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/register"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "gbailey@example.net",
    "telephone": "architecto",
    "password": "|]|{+-",
    "username": "b",
    "firstname": "architecto",
    "lastname": "architecto",
    "language": "en",
    "currency": "USD",
    "country_indicative": "ngzmiy",
    "password_confirmation": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/register

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Unique email. Example: gbailey@example.net

telephone   string     

Unique phone number. Example: architecto

password   string     

Password. Example: |]|{+-

username   string  optional    

Must not be greater than 255 characters. Example: b

firstname   string  optional    

optional First name (also accepted as first_name). Example: architecto

lastname   string  optional    

optional Last name (also accepted as last_name). Example: architecto

language   string     

Example: en

Must be one of:
  • fr
  • en
currency   string     

Example: USD

Must be one of:
  • CAD
  • XOF
  • EUR
  • USD
country_indicative   string  optional    

Must not be greater than 10 characters. Example: ngzmiy

roles   object  optional    
password_confirmation   string     

Confirmation. Example: architecto

POST api/v1/login

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/login" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"gbailey@example.net\",
    \"password\": \"|]|{+-\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/login"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "gbailey@example.net",
    "password": "|]|{+-"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/login

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Must be a valid email address. Example: gbailey@example.net

password   string     

Example: |]|{+-

POST api/v1/auth/google

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/auth/google" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id_token\": \"b\",
    \"google_id\": \"n\",
    \"email\": \"gbailey@example.net\",
    \"first_name\": \"g\",
    \"last_name\": \"z\",
    \"picture\": \"architecto\",
    \"idToken\": \"architecto\",
    \"googleId\": \"architecto\",
    \"firstName\": \"architecto\",
    \"lastName\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auth/google"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id_token": "b",
    "google_id": "n",
    "email": "gbailey@example.net",
    "first_name": "g",
    "last_name": "z",
    "picture": "architecto",
    "idToken": "architecto",
    "googleId": "architecto",
    "firstName": "architecto",
    "lastName": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/auth/google

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id_token   string     

Must not be greater than 4096 characters. Example: b

google_id   string     

Must not be greater than 255 characters. Example: n

email   string     

Adresse email retournΓ©e par Google. Example: gbailey@example.net

first_name   string  optional    

Must not be greater than 255 characters. Example: g

last_name   string  optional    

Must not be greater than 255 characters. Example: z

picture   string  optional    

optional URL de la photo de profil Google. Example: architecto

idToken   string     

Jeton d'identitΓ© Google reΓ§u cΓ΄tΓ© frontend/mobile. Example: architecto

googleId   string     

Identifiant Google stable de l'utilisateur. Example: architecto

firstName   string  optional    

optional PrΓ©nom retournΓ© par Google. Example: architecto

lastName   string  optional    

optional Nom retournΓ© par Google. Example: architecto

POST api/v1/auth/apple

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/auth/apple" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id_token\": \"b\",
    \"apple_id\": \"n\",
    \"email\": \"gbailey@example.net\",
    \"first_name\": \"g\",
    \"last_name\": \"z\",
    \"picture\": \"architecto\",
    \"idToken\": \"architecto\",
    \"appleId\": \"architecto\",
    \"firstName\": \"architecto\",
    \"lastName\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auth/apple"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id_token": "b",
    "apple_id": "n",
    "email": "gbailey@example.net",
    "first_name": "g",
    "last_name": "z",
    "picture": "architecto",
    "idToken": "architecto",
    "appleId": "architecto",
    "firstName": "architecto",
    "lastName": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/auth/apple

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id_token   string     

Must not be greater than 4096 characters. Example: b

apple_id   string     

Must not be greater than 255 characters. Example: n

email   string     

Adresse email retournΓ©e par Apple. Example: gbailey@example.net

first_name   string  optional    

Must not be greater than 255 characters. Example: g

last_name   string  optional    

Must not be greater than 255 characters. Example: z

picture   string  optional    

optional URL de la photo de profil. Example: architecto

idToken   string     

Jeton d'identitΓ© Apple reΓ§u cΓ΄tΓ© frontend/mobile. Example: architecto

appleId   string     

Identifiant Apple stable de l'utilisateur. Example: architecto

firstName   string  optional    

optional PrΓ©nom retournΓ© par Apple. Example: architecto

lastName   string  optional    

optional Nom retournΓ© par Apple. Example: architecto

POST api/v1/users/verify-otp

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/verify-otp" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"gbailey@example.net\",
    \"code\": \"miyvdl\",
    \"purpose\": \"verify_account\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/verify-otp"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "gbailey@example.net",
    "code": "miyvdl",
    "purpose": "verify_account"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/users/verify-otp

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Must be a valid email address. Must match an existing stored value. Example: gbailey@example.net

code   string     

Must be 6 characters. Example: miyvdl

purpose   string  optional    

Example: verify_account

Must be one of:
  • verify_account
  • login

POST api/v1/users/resend/otp

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/resend/otp" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"field\": \"architecto\",
    \"channel\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/resend/otp"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "field": "architecto",
    "channel": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/users/resend/otp

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

field   string     

Example: architecto

channel   string  optional    

Example: architecto

POST api/v1/users/double/factor

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/double/factor" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"field\": \"architecto\",
    \"channel\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/double/factor"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "field": "architecto",
    "channel": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/users/double/factor

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

field   string     

Email ou numΓ©ro de tΓ©lΓ©phone Γ  vΓ©rifier. Example: architecto

channel   string     

Canal de vΓ©rification: email ou sms. Example: architecto

POST api/v1/users/double/factor/verify

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/double/factor/verify" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"field\": \"architecto\",
    \"code\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/double/factor/verify"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "field": "architecto",
    "code": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/users/double/factor/verify

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

field   string     

Email ou numΓ©ro de tΓ©lΓ©phone utilisΓ© pour demander le code. Example: architecto

code   string     

Code OTP reΓ§u. Example: architecto

POST api/v1/reset-password

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reset-password" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"gbailey@example.net\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reset-password"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "gbailey@example.net"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reset-password

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Must be a valid email address. Must match an existing stored value. Example: gbailey@example.net

POST api/v1/reset-password/verify-otp

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reset-password/verify-otp" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"gbailey@example.net\",
    \"code\": \"miyvdl\",
    \"purpose\": \"verify_account\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reset-password/verify-otp"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "gbailey@example.net",
    "code": "miyvdl",
    "purpose": "verify_account"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reset-password/verify-otp

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Must be a valid email address. Must match an existing stored value. Example: gbailey@example.net

code   string     

Must be 6 characters. Example: miyvdl

purpose   string  optional    

Example: verify_account

Must be one of:
  • verify_account
  • login

POST api/v1/reset-password/reset

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reset-password/reset" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"gbailey@example.net\",
    \"code\": \"miyvdl\",
    \"password\": \"vYgxwmi\\/#\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reset-password/reset"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "gbailey@example.net",
    "code": "miyvdl",
    "password": "vYgxwmi\/#"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reset-password/reset

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Must be a valid email address. Must match an existing stored value. Example: gbailey@example.net

code   string     

Must be 6 characters. Example: miyvdl

password   string     

Must be at least 8 characters. Example: vYgxwmi/#

GET api/v1/me

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/me" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/me"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/me

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/refresh-token

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/refresh-token" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/refresh-token"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/refresh-token

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/logout

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/logout" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/logout"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/logout

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/check-password

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/check-password" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"password\": \"|]|{+-\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/check-password"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "password": "|]|{+-"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/check-password

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

password   string     

Current user password. Example: |]|{+-

POST api/v1/change-password

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/change-password" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"current_password\": \"architecto\",
    \"password\": \"|]|{+-\",
    \"password_confirmation\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/change-password"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "current_password": "architecto",
    "password": "|]|{+-",
    "password_confirmation": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/change-password

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

current_password   string     

Current password. Example: architecto

password   string     

New password. Example: |]|{+-

password_confirmation   string     

New password confirmation. Example: architecto

Avis et Γ©valuations

GET api/v1/profile-ratings

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/profile-ratings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/profile-ratings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/profile-ratings

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/profile-ratings

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/profile-ratings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rated_user_id\": \"architecto\",
    \"reviewer_id\": \"architecto\",
    \"command_seller_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"mark\": 4326.41688,
    \"notice\": \"architecto\",
    \"rated_profile\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/profile-ratings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "rated_user_id": "architecto",
    "reviewer_id": "architecto",
    "command_seller_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "mark": 4326.41688,
    "notice": "architecto",
    "rated_profile": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/profile-ratings

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

rated_user_id   uuid     

User being rated. Legacy seller is accepted. Example: architecto

reviewer_id   uuid     

User creating the rating. Legacy buyer is accepted. Example: architecto

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

mark   number     

Rating value from 0 to 5. Example: 4326.41688

notice   string  optional    

Example: architecto

rated_profile   string  optional    

optional seller or buyer. Legacy isSeller is accepted. Example: architecto

GET api/v1/profile-ratings/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/profile-ratings/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/profile-ratings/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/profile-ratings/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the profile rating. Example: architecto

PUT api/v1/profile-ratings/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/profile-ratings/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rated_user_id\": \"architecto\",
    \"reviewer_id\": \"architecto\",
    \"command_seller_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"mark\": 4326.41688,
    \"notice\": \"architecto\",
    \"rated_profile\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/profile-ratings/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "rated_user_id": "architecto",
    "reviewer_id": "architecto",
    "command_seller_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "mark": 4326.41688,
    "notice": "architecto",
    "rated_profile": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/profile-ratings/{id}

PATCH api/v1/profile-ratings/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the profile rating. Example: architecto

Body Parameters

rated_user_id   uuid     

User being rated. Legacy seller is accepted. Example: architecto

reviewer_id   uuid     

User creating the rating. Legacy buyer is accepted. Example: architecto

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

mark   number     

Rating value from 0 to 5. Example: 4326.41688

notice   string  optional    

Example: architecto

rated_profile   string  optional    

optional seller or buyer. Legacy isSeller is accepted. Example: architecto

DELETE api/v1/profile-ratings/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/profile-ratings/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/profile-ratings/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/profile-ratings/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the profile rating. Example: architecto

GET api/v1/seller-marks

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/seller-marks" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/seller-marks"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/seller-marks

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/seller-marks

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/seller-marks" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rated_user_id\": \"architecto\",
    \"reviewer_id\": \"architecto\",
    \"command_seller_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"mark\": 4326.41688,
    \"notice\": \"architecto\",
    \"rated_profile\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/seller-marks"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "rated_user_id": "architecto",
    "reviewer_id": "architecto",
    "command_seller_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "mark": 4326.41688,
    "notice": "architecto",
    "rated_profile": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/seller-marks

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

rated_user_id   uuid     

User being rated. Legacy seller is accepted. Example: architecto

reviewer_id   uuid     

User creating the rating. Legacy buyer is accepted. Example: architecto

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

mark   number     

Rating value from 0 to 5. Example: 4326.41688

notice   string  optional    

Example: architecto

rated_profile   string  optional    

optional seller or buyer. Legacy isSeller is accepted. Example: architecto

GET api/v1/seller-marks/{profileRating_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/seller-marks/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/seller-marks/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/seller-marks/{profileRating_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

profileRating_id   string     

The ID of the profileRating. Example: architecto

PUT api/v1/seller-marks/{profileRating_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/seller-marks/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rated_user_id\": \"architecto\",
    \"reviewer_id\": \"architecto\",
    \"command_seller_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"mark\": 4326.41688,
    \"notice\": \"architecto\",
    \"rated_profile\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/seller-marks/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "rated_user_id": "architecto",
    "reviewer_id": "architecto",
    "command_seller_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "mark": 4326.41688,
    "notice": "architecto",
    "rated_profile": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/seller-marks/{profileRating_id}

PATCH api/v1/seller-marks/{profileRating_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

profileRating_id   string     

The ID of the profileRating. Example: architecto

Body Parameters

rated_user_id   uuid     

User being rated. Legacy seller is accepted. Example: architecto

reviewer_id   uuid     

User creating the rating. Legacy buyer is accepted. Example: architecto

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

mark   number     

Rating value from 0 to 5. Example: 4326.41688

notice   string  optional    

Example: architecto

rated_profile   string  optional    

optional seller or buyer. Legacy isSeller is accepted. Example: architecto

DELETE api/v1/seller-marks/{profileRating_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/seller-marks/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/seller-marks/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/seller-marks/{profileRating_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

profileRating_id   string     

The ID of the profileRating. Example: architecto

Catalogue produits

GET api/v1/users/account/products

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/users/account/product-lots

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/product-lots" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/product-lots"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/product-lots

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/products/recent

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/products/recent" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products/recent"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [],
    "meta": {
        "pagination": {
            "current_page": 1,
            "last_page": 1,
            "per_page": 30,
            "total": 0
        }
    }
}
 

Request      

GET api/v1/products/recent

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/products/older

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/products/older" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products/older"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [],
    "meta": {
        "pagination": {
            "current_page": 1,
            "last_page": 1,
            "per_page": 30,
            "total": 0
        }
    }
}
 

Request      

GET api/v1/products/older

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/products/deals

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/products/deals" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products/deals"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [],
    "meta": {
        "pagination": {
            "current_page": 1,
            "last_page": 1,
            "per_page": 30,
            "total": 0
        }
    }
}
 

Request      

GET api/v1/products/deals

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/lots

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/lots" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/lots"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [],
    "meta": {
        "pagination": {
            "current_page": 1,
            "last_page": 1,
            "per_page": 30,
            "total": 0
        }
    }
}
 

Request      

GET api/v1/lots

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/products

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/products

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/products" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "article_id=architecto"\
    --form "brand_id=architecto"\
    --form "model_id=architecto"\
    --form "product_state_id=architecto"\
    --form "product_condition_id=architecto"\
    --form "control_status_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "weight_unit_proposal_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "region_id=architecto"\
    --form "created_by_id=architecto"\
    --form "long_wording=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "quantity=16"\
    --form "quantity_reserved=77"\
    --form "critical_stock=8"\
    --form "price=4326.41688"\
    --form "price_in_local_currency=76"\
    --form "selling_price=60"\
    --form "currency=dljnik"\
    --form "language=hwaykc"\
    --form "is_published=n"\
    --form "is_refurbished=o"\
    --form "is_negotiable=o"\
    --form "is_bookable=o"\
    --form "require_validation=n"\
    --form "don=n"\
    --form "troc=o"\
    --form "debarras=n"\
    --form "classic=n"\
    --form "flashsale=n"\
    --form "is_in_event=n"\
    --form "don_is_over=o"\
    --form "is_hidden_don=o"\
    --form "accepts_hand_delivery=n"\
    --form "is_reward=1"\
    --form "is_reward_active="\
    --form "height=38"\
    --form "length=50"\
    --form "width=72"\
    --form "area=61"\
    --form "country_ids[]=architecto"\
    --form "media_paths[][path]=l"\
    --form "media_paths[][kind]=video"\
    --form "media_paths[][is_cover]=n"\
    --form "promotion[][referencePrice]=34"\
    --form "promotion[][promotionDeadLine]=2026-07-17T18:03:41"\
    --form "flashSale[][referencePrice]=3"\
    --form "flashSale[][hour]=wrsitcpscqldzsnr"\
    --form "auction[][minPrice]=74"\
    --form "auction[][hour]=tujwvlxjklqppwqb"\
    --form "auction[][isPublic]=n"\
    --form "media_files[]=@/tmp/phpRSxNIs" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('article_id', 'architecto');
body.append('brand_id', 'architecto');
body.append('model_id', 'architecto');
body.append('product_state_id', 'architecto');
body.append('product_condition_id', 'architecto');
body.append('control_status_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('weight_unit_proposal_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('region_id', 'architecto');
body.append('created_by_id', 'architecto');
body.append('long_wording', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('quantity', '16');
body.append('quantity_reserved', '77');
body.append('critical_stock', '8');
body.append('price', '4326.41688');
body.append('price_in_local_currency', '76');
body.append('selling_price', '60');
body.append('currency', 'dljnik');
body.append('language', 'hwaykc');
body.append('is_published', 'n');
body.append('is_refurbished', 'o');
body.append('is_negotiable', 'o');
body.append('is_bookable', 'o');
body.append('require_validation', 'n');
body.append('don', 'n');
body.append('troc', 'o');
body.append('debarras', 'n');
body.append('classic', 'n');
body.append('flashsale', 'n');
body.append('is_in_event', 'n');
body.append('don_is_over', 'o');
body.append('is_hidden_don', 'o');
body.append('accepts_hand_delivery', 'n');
body.append('is_reward', '1');
body.append('is_reward_active', '');
body.append('height', '38');
body.append('length', '50');
body.append('width', '72');
body.append('area', '61');
body.append('country_ids[]', 'architecto');
body.append('media_paths[][path]', 'l');
body.append('media_paths[][kind]', 'video');
body.append('media_paths[][is_cover]', 'n');
body.append('promotion[][referencePrice]', '34');
body.append('promotion[][promotionDeadLine]', '2026-07-17T18:03:41');
body.append('flashSale[][referencePrice]', '3');
body.append('flashSale[][hour]', 'wrsitcpscqldzsnr');
body.append('auction[][minPrice]', '74');
body.append('auction[][hour]', 'tujwvlxjklqppwqb');
body.append('auction[][isPublic]', 'n');
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/products

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

article_id   uuid  optional    

nullable Existing article identifier. Example: architecto

brand_id   uuid  optional    

nullable Existing brand identifier. Example: architecto

model_id   uuid  optional    

nullable Existing model identifier. Example: architecto

product_state_id   uuid  optional    

nullable Existing product state identifier. Example: architecto

product_condition_id   uuid  optional    

nullable Existing product condition identifier. Example: architecto

control_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

weight_unit_proposal_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

region_id   uuid  optional    

nullable Existing region identifier. Example: architecto

created_by_id   uuid  optional    

nullable Symfony user UUID until user migration is complete. Example: architecto

long_wording   string  optional    

nullable Product display title. Example: architecto

description   string  optional    

nullable Product description. Example: Eius et animi quos velit et.

quantity   integer  optional    

nullable Stock quantity. Example: 16

quantity_reserved   integer  optional    

Must be at least 0. Example: 77

critical_stock   integer  optional    

Must be at least 0. Example: 8

price   number  optional    

nullable Sale price. Example: 4326.41688

price_in_local_currency   number  optional    

Must be at least 0. Example: 76

selling_price   number  optional    

Must be at least 0. Example: 60

currency   string  optional    

Must not be greater than 10 characters. Example: dljnik

language   string  optional    

Must not be greater than 10 characters. Example: hwaykc

is_published   string  optional    

Example: n

Must be one of:
  • o
  • n
is_refurbished   string  optional    

Example: o

Must be one of:
  • o
  • n
is_negotiable   string  optional    

Example: o

Must be one of:
  • o
  • n
is_bookable   string  optional    

Example: o

Must be one of:
  • o
  • n
require_validation   string  optional    

Example: n

Must be one of:
  • o
  • n
don   string  optional    

Example: n

Must be one of:
  • o
  • n
troc   string  optional    

Example: o

Must be one of:
  • o
  • n
debarras   string  optional    

Example: n

Must be one of:
  • o
  • n
classic   string  optional    

Example: n

Must be one of:
  • o
  • n
auction   object[]  optional    
minPrice   number  optional    

Must be at least 0. Example: 74

hour   string  optional    

This field is required when auction is present. Must not be greater than 20 characters. Example: tujwvlxjklqppwqb

isPublic   string  optional    

Example: n

Must be one of:
  • o
  • n
promotion   object[]  optional    
referencePrice   number  optional    

This field is required when promotion is present. Must be at least 0. Example: 34

promotionDeadLine   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:41

flashsale   string  optional    

Example: n

Must be one of:
  • o
  • n
is_in_event   string  optional    

Example: n

Must be one of:
  • o
  • n
don_is_over   string  optional    

Example: o

Must be one of:
  • o
  • n
is_hidden_don   string  optional    

Example: o

Must be one of:
  • o
  • n
accepts_hand_delivery   string  optional    

Example: n

Must be one of:
  • o
  • n
is_reward   boolean  optional    

Example: true

is_reward_active   boolean  optional    

Example: false

height   number  optional    

Must be at least 0. Example: 38

length   number  optional    

Must be at least 0. Example: 50

width   number  optional    

Must be at least 0. Example: 72

area   number  optional    

Must be at least 0. Example: 61

country_ids   uuid[]  optional    

nullable Selling countries.

media_files   file[]  optional    

optional Photos/videos uploaded to R2.

is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: o

Must be one of:
  • o
  • n
media_paths   object[]  optional    

optional Existing media paths to attach.

path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: l

kind   string  optional    

Example: video

Must be one of:
  • photo
  • video
is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
flashSale   object[]  optional    
referencePrice   number  optional    

This field is required when flashSale is present. Must be at least 0. Example: 3

hour   string  optional    

This field is required when flashSale is present. Must not be greater than 20 characters. Example: wrsitcpscqldzsnr

GET api/v1/products/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/products/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product. Example: architecto

PUT api/v1/products/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/products/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "article_id=architecto"\
    --form "brand_id=architecto"\
    --form "model_id=architecto"\
    --form "product_state_id=architecto"\
    --form "product_condition_id=architecto"\
    --form "control_status_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "weight_unit_proposal_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "region_id=architecto"\
    --form "created_by_id=architecto"\
    --form "long_wording=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "quantity=16"\
    --form "quantity_reserved=77"\
    --form "critical_stock=8"\
    --form "price=4326.41688"\
    --form "price_in_local_currency=76"\
    --form "selling_price=60"\
    --form "currency=dljnik"\
    --form "language=hwaykc"\
    --form "is_published=n"\
    --form "is_refurbished=o"\
    --form "is_negotiable=n"\
    --form "is_bookable=o"\
    --form "require_validation=o"\
    --form "don=o"\
    --form "troc=n"\
    --form "debarras=o"\
    --form "classic=n"\
    --form "flashsale=n"\
    --form "is_in_event=o"\
    --form "don_is_over=n"\
    --form "is_hidden_don=n"\
    --form "accepts_hand_delivery=n"\
    --form "is_reward="\
    --form "is_reward_active=1"\
    --form "height=38"\
    --form "length=50"\
    --form "width=72"\
    --form "area=61"\
    --form "country_ids[]=architecto"\
    --form "media_paths[][path]=l"\
    --form "media_paths[][kind]=video"\
    --form "media_paths[][is_cover]=o"\
    --form "promotion[][referencePrice]=34"\
    --form "promotion[][promotionDeadLine]=2026-07-17T18:03:41"\
    --form "flashSale[][referencePrice]=3"\
    --form "flashSale[][hour]=wrsitcpscqldzsnr"\
    --form "auction[][minPrice]=74"\
    --form "auction[][hour]=tujwvlxjklqppwqb"\
    --form "auction[][isPublic]=o"\
    --form "media_files[]=@/tmp/phpwgRybU" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('article_id', 'architecto');
body.append('brand_id', 'architecto');
body.append('model_id', 'architecto');
body.append('product_state_id', 'architecto');
body.append('product_condition_id', 'architecto');
body.append('control_status_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('weight_unit_proposal_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('region_id', 'architecto');
body.append('created_by_id', 'architecto');
body.append('long_wording', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('quantity', '16');
body.append('quantity_reserved', '77');
body.append('critical_stock', '8');
body.append('price', '4326.41688');
body.append('price_in_local_currency', '76');
body.append('selling_price', '60');
body.append('currency', 'dljnik');
body.append('language', 'hwaykc');
body.append('is_published', 'n');
body.append('is_refurbished', 'o');
body.append('is_negotiable', 'n');
body.append('is_bookable', 'o');
body.append('require_validation', 'o');
body.append('don', 'o');
body.append('troc', 'n');
body.append('debarras', 'o');
body.append('classic', 'n');
body.append('flashsale', 'n');
body.append('is_in_event', 'o');
body.append('don_is_over', 'n');
body.append('is_hidden_don', 'n');
body.append('accepts_hand_delivery', 'n');
body.append('is_reward', '');
body.append('is_reward_active', '1');
body.append('height', '38');
body.append('length', '50');
body.append('width', '72');
body.append('area', '61');
body.append('country_ids[]', 'architecto');
body.append('media_paths[][path]', 'l');
body.append('media_paths[][kind]', 'video');
body.append('media_paths[][is_cover]', 'o');
body.append('promotion[][referencePrice]', '34');
body.append('promotion[][promotionDeadLine]', '2026-07-17T18:03:41');
body.append('flashSale[][referencePrice]', '3');
body.append('flashSale[][hour]', 'wrsitcpscqldzsnr');
body.append('auction[][minPrice]', '74');
body.append('auction[][hour]', 'tujwvlxjklqppwqb');
body.append('auction[][isPublic]', 'o');
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/products/{id}

PATCH api/v1/products/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product. Example: architecto

Body Parameters

article_id   uuid  optional    

nullable Existing article identifier. Example: architecto

brand_id   uuid  optional    

nullable Existing brand identifier. Example: architecto

model_id   uuid  optional    

nullable Existing model identifier. Example: architecto

product_state_id   uuid  optional    

nullable Existing product state identifier. Example: architecto

product_condition_id   uuid  optional    

nullable Existing product condition identifier. Example: architecto

control_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

weight_unit_proposal_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

region_id   uuid  optional    

nullable Existing region identifier. Example: architecto

created_by_id   uuid  optional    

nullable Symfony user UUID until user migration is complete. Example: architecto

long_wording   string  optional    

nullable Product display title. Example: architecto

description   string  optional    

nullable Product description. Example: Eius et animi quos velit et.

quantity   integer  optional    

nullable Stock quantity. Example: 16

quantity_reserved   integer  optional    

Must be at least 0. Example: 77

critical_stock   integer  optional    

Must be at least 0. Example: 8

price   number  optional    

nullable Sale price. Example: 4326.41688

price_in_local_currency   number  optional    

Must be at least 0. Example: 76

selling_price   number  optional    

Must be at least 0. Example: 60

currency   string  optional    

Must not be greater than 10 characters. Example: dljnik

language   string  optional    

Must not be greater than 10 characters. Example: hwaykc

is_published   string  optional    

Example: n

Must be one of:
  • o
  • n
is_refurbished   string  optional    

Example: o

Must be one of:
  • o
  • n
is_negotiable   string  optional    

Example: n

Must be one of:
  • o
  • n
is_bookable   string  optional    

Example: o

Must be one of:
  • o
  • n
require_validation   string  optional    

Example: o

Must be one of:
  • o
  • n
don   string  optional    

Example: o

Must be one of:
  • o
  • n
troc   string  optional    

Example: n

Must be one of:
  • o
  • n
debarras   string  optional    

Example: o

Must be one of:
  • o
  • n
classic   string  optional    

Example: n

Must be one of:
  • o
  • n
auction   object[]  optional    
minPrice   number  optional    

Must be at least 0. Example: 74

hour   string  optional    

This field is required when auction is present. Must not be greater than 20 characters. Example: tujwvlxjklqppwqb

isPublic   string  optional    

Example: o

Must be one of:
  • o
  • n
promotion   object[]  optional    
referencePrice   number  optional    

This field is required when promotion is present. Must be at least 0. Example: 34

promotionDeadLine   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:41

flashsale   string  optional    

Example: n

Must be one of:
  • o
  • n
is_in_event   string  optional    

Example: o

Must be one of:
  • o
  • n
don_is_over   string  optional    

Example: n

Must be one of:
  • o
  • n
is_hidden_don   string  optional    

Example: n

Must be one of:
  • o
  • n
accepts_hand_delivery   string  optional    

Example: n

Must be one of:
  • o
  • n
is_reward   boolean  optional    

Example: false

is_reward_active   boolean  optional    

Example: true

height   number  optional    

Must be at least 0. Example: 38

length   number  optional    

Must be at least 0. Example: 50

width   number  optional    

Must be at least 0. Example: 72

area   number  optional    

Must be at least 0. Example: 61

country_ids   uuid[]  optional    

nullable Selling countries.

media_files   file[]  optional    

optional Photos/videos uploaded to R2.

is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: o

Must be one of:
  • o
  • n
media_paths   object[]  optional    

optional Existing media paths to attach.

path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: l

kind   string  optional    

Example: video

Must be one of:
  • photo
  • video
is_cover   string  optional    

Example: o

Must be one of:
  • o
  • n
flashSale   object[]  optional    
referencePrice   number  optional    

This field is required when flashSale is present. Must be at least 0. Example: 3

hour   string  optional    

This field is required when flashSale is present. Must not be greater than 20 characters. Example: wrsitcpscqldzsnr

DELETE api/v1/products/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/products/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product. Example: architecto

POST api/v1/product-lots/with-new-products

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/product-lots/with-new-products" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "created_by_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "wording=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "price=60"\
    --form "product_condition_id=architecto"\
    --form "is_published=n"\
    --form "is_negotiable=o"\
    --form "is_bookable=n"\
    --form "don=o"\
    --form "country_ids[]=5707ca55-f609-3528-be8b-1baeaee1567e"\
    --form "existing_rows[][product_id]=architecto"\
    --form "existing_rows[][quantity]=16"\
    --form "rows[][quantity]=16"\
    --form "rows[][product][quantity]=64"\
    --form "rows[][product][price]=87"\
    --form "rows[][product][selling_price]=39"\
    --form "rows[][product][is_in_event]=n"\
    --form "rows[][product][description]=Eius et animi quos velit et."\
    --form "rows[][product][article_id]=21c4122b-d554-3723-966c-6d723ea5293f"\
    --form "rows[][product][brand_id]=add3503c-ebff-3875-93af-b8c6a695762b"\
    --form "rows[][product][model_id]=c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a"\
    --form "rows[][product][product_state_id]=51c7cf5e-fac2-3ac6-8ef8-61e6050503af"\
    --form "rows[][product][product_condition_id]=d207102d-bce0-31f9-8c36-aa9cf4cfe75a"\
    --form "rows[][product][weight_unit_proposal_id]=10b3f4c6-2aaf-32e1-a52d-6bf43d9ddd70"\
    --form "rows[][product][long_wording]=c"\
    --form "rows[][product][height]=38"\
    --form "rows[][product][length]=50"\
    --form "rows[][product][width]=72"\
    --form "rows[][product][product_characteristics][][article_characteristic_id]=d03cceb8-0e59-3c26-8133-808072ac8a4c"\
    --form "rows[][product][product_characteristics][][value]=w"\
    --form "media_paths[][path]=l"\
    --form "media_paths[][kind]=photo"\
    --form "media_paths[][is_cover]=o"\
    --form "rows[][product][image]=@/tmp/phpvxMTAk" \
    --form "media_files[]=@/tmp/phpQVD0Yd" \
    --form "productLotRows[][product][image]=@/tmp/phpJ4J2Xy" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-lots/with-new-products"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('created_by_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('wording', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('price', '60');
body.append('product_condition_id', 'architecto');
body.append('is_published', 'n');
body.append('is_negotiable', 'o');
body.append('is_bookable', 'n');
body.append('don', 'o');
body.append('country_ids[]', '5707ca55-f609-3528-be8b-1baeaee1567e');
body.append('existing_rows[][product_id]', 'architecto');
body.append('existing_rows[][quantity]', '16');
body.append('rows[][quantity]', '16');
body.append('rows[][product][quantity]', '64');
body.append('rows[][product][price]', '87');
body.append('rows[][product][selling_price]', '39');
body.append('rows[][product][is_in_event]', 'n');
body.append('rows[][product][description]', 'Eius et animi quos velit et.');
body.append('rows[][product][article_id]', '21c4122b-d554-3723-966c-6d723ea5293f');
body.append('rows[][product][brand_id]', 'add3503c-ebff-3875-93af-b8c6a695762b');
body.append('rows[][product][model_id]', 'c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a');
body.append('rows[][product][product_state_id]', '51c7cf5e-fac2-3ac6-8ef8-61e6050503af');
body.append('rows[][product][product_condition_id]', 'd207102d-bce0-31f9-8c36-aa9cf4cfe75a');
body.append('rows[][product][weight_unit_proposal_id]', '10b3f4c6-2aaf-32e1-a52d-6bf43d9ddd70');
body.append('rows[][product][long_wording]', 'c');
body.append('rows[][product][height]', '38');
body.append('rows[][product][length]', '50');
body.append('rows[][product][width]', '72');
body.append('rows[][product][product_characteristics][][article_characteristic_id]', 'd03cceb8-0e59-3c26-8133-808072ac8a4c');
body.append('rows[][product][product_characteristics][][value]', 'w');
body.append('media_paths[][path]', 'l');
body.append('media_paths[][kind]', 'photo');
body.append('media_paths[][is_cover]', 'o');
body.append('rows[][product][image]', document.querySelector('input[name="rows[][product][image]"]').files[0]);
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);
body.append('productLotRows[][product][image]', document.querySelector('input[name="productLotRows[][product][image]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/product-lots/with-new-products

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

created_by_id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

wording   string     

Lot title. Example: architecto

description   string  optional    

Example: Eius et animi quos velit et.

price   number  optional    

Must be at least 0. Example: 60

product_condition_id   uuid  optional    

nullable Lot condition identifier. Example: architecto

is_published   string  optional    

Example: n

Must be one of:
  • o
  • n
is_negotiable   string  optional    

Example: o

Must be one of:
  • o
  • n
is_bookable   string  optional    

Example: n

Must be one of:
  • o
  • n
don   string  optional    

Example: o

Must be one of:
  • o
  • n
country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

existing_rows   object[]  optional    

nullable Rows referencing products that already exist.

product_id   uuid     

Existing product identifier. Example: architecto

quantity   integer     

Quantity in lot. Example: 16

rows   object[]  optional    

nullable Rows creating a brand-new product.

quantity   integer     

Quantity in lot. Example: 16

product   object     

New product attributes.

quantity   integer  optional    

This field is required when rows is present. Must be at least 1. Example: 64

price   number  optional    

Must be at least 0. Example: 87

selling_price   number  optional    

Must be at least 0. Example: 39

is_in_event   string  optional    

Example: n

Must be one of:
  • o
  • n
description   string  optional    

Example: Eius et animi quos velit et.

article_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: add3503c-ebff-3875-93af-b8c6a695762b

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

product_state_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 51c7cf5e-fac2-3ac6-8ef8-61e6050503af

product_condition_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d207102d-bce0-31f9-8c36-aa9cf4cfe75a

weight_unit_proposal_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 10b3f4c6-2aaf-32e1-a52d-6bf43d9ddd70

long_wording   string  optional    

Must not be greater than 255 characters. Example: c

height   number  optional    

Must be at least 0. Example: 38

length   number  optional    

Must be at least 0. Example: 50

width   number  optional    

Must be at least 0. Example: 72

product_characteristics   object[]  optional    
article_characteristic_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d03cceb8-0e59-3c26-8133-808072ac8a4c

value   string  optional    

This field is required when rows.*.product.product_characteristics is present. Must not be greater than 255 characters. Example: w

image   file  optional    

Must be a file. Must not be greater than 51200 kilobytes. Example: /tmp/phpvxMTAk

media_files   file[]  optional    

optional Photos/videos uploaded to R2 for the lot itself.

is_cover   string  optional    

Example: o

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: o

Must be one of:
  • o
  • n
media_paths   object[]  optional    

optional Existing media paths to attach to the lot.

path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: l

kind   string  optional    

Example: photo

Must be one of:
  • photo
  • video
is_cover   string  optional    

Example: o

Must be one of:
  • o
  • n
productLotRows   object[]  optional    
product   object  optional    
image   file  optional    

Must be a file. Must not be greater than 51200 kilobytes. Example: /tmp/phpJ4J2Xy

GET api/v1/product-lots

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-lots" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-lots"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/product-lots

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/product-lots

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/product-lots" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "created_by_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "product_condition_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "control_status_id=977e5426-8d13-3824-86aa-b092f8ae52c5"\
    --form "wording=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "price=60"\
    --form "price_in_local_currency=42"\
    --form "currency=ljnikh"\
    --form "language=waykcm"\
    --form "is_published=o"\
    --form "is_negotiable=n"\
    --form "is_bookable=n"\
    --form "require_validation=n"\
    --form "don=n"\
    --form "debarras=o"\
    --form "is_in_event=o"\
    --form "don_is_over=n"\
    --form "is_hidden_don=o"\
    --form "accepts_hand_delivery=o"\
    --form "height=50"\
    --form "length=72"\
    --form "width=61"\
    --form "weight=67"\
    --form "country_ids[]=7212c28d-f9ab-3dd7-af8a-06584a0d4cb7"\
    --form "rows[][product_id]=architecto"\
    --form "rows[][quantity]=16"\
    --form "media_paths[][path]=r"\
    --form "media_paths[][kind]=video"\
    --form "media_paths[][is_cover]=o"\
    --form "auction[][minPrice]=57"\
    --form "auction[][hour]=itcpscqldzsnrwtu"\
    --form "auction[][isPublic]=n"\
    --form "lauction[][minPrice]=61"\
    --form "lauction[][hour]=wvlxjklqppwqbewt"\
    --form "lauction[][isPublic]=n"\
    --form "media_files[]=@/tmp/phpTIirpl" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-lots"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('created_by_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('product_condition_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('control_status_id', '977e5426-8d13-3824-86aa-b092f8ae52c5');
body.append('wording', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('price', '60');
body.append('price_in_local_currency', '42');
body.append('currency', 'ljnikh');
body.append('language', 'waykcm');
body.append('is_published', 'o');
body.append('is_negotiable', 'n');
body.append('is_bookable', 'n');
body.append('require_validation', 'n');
body.append('don', 'n');
body.append('debarras', 'o');
body.append('is_in_event', 'o');
body.append('don_is_over', 'n');
body.append('is_hidden_don', 'o');
body.append('accepts_hand_delivery', 'o');
body.append('height', '50');
body.append('length', '72');
body.append('width', '61');
body.append('weight', '67');
body.append('country_ids[]', '7212c28d-f9ab-3dd7-af8a-06584a0d4cb7');
body.append('rows[][product_id]', 'architecto');
body.append('rows[][quantity]', '16');
body.append('media_paths[][path]', 'r');
body.append('media_paths[][kind]', 'video');
body.append('media_paths[][is_cover]', 'o');
body.append('auction[][minPrice]', '57');
body.append('auction[][hour]', 'itcpscqldzsnrwtu');
body.append('auction[][isPublic]', 'n');
body.append('lauction[][minPrice]', '61');
body.append('lauction[][hour]', 'wvlxjklqppwqbewt');
body.append('lauction[][isPublic]', 'n');
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/product-lots

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

created_by_id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_condition_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

control_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

wording   string     

Lot title. Example: architecto

description   string  optional    

Example: Eius et animi quos velit et.

price   number  optional    

Must be at least 0. Example: 60

price_in_local_currency   number  optional    

Must be at least 0. Example: 42

currency   string  optional    

Must not be greater than 10 characters. Example: ljnikh

language   string  optional    

Must not be greater than 10 characters. Example: waykcm

is_published   string  optional    

Example: o

Must be one of:
  • o
  • n
is_negotiable   string  optional    

Example: n

Must be one of:
  • o
  • n
is_bookable   string  optional    

Example: n

Must be one of:
  • o
  • n
require_validation   string  optional    

Example: n

Must be one of:
  • o
  • n
don   string  optional    

Example: n

Must be one of:
  • o
  • n
debarras   string  optional    

Example: o

Must be one of:
  • o
  • n
auction   object[]  optional    
minPrice   number  optional    

Must be at least 0. Example: 57

hour   string  optional    

This field is required when auction is present. Must not be greater than 20 characters. Example: itcpscqldzsnrwtu

isPublic   string  optional    

Example: n

Must be one of:
  • o
  • n
is_in_event   string  optional    

Example: o

Must be one of:
  • o
  • n
don_is_over   string  optional    

Example: n

Must be one of:
  • o
  • n
is_hidden_don   string  optional    

Example: o

Must be one of:
  • o
  • n
accepts_hand_delivery   string  optional    

Example: o

Must be one of:
  • o
  • n
height   number  optional    

Must be at least 0. Example: 50

length   number  optional    

Must be at least 0. Example: 72

width   number  optional    

Must be at least 0. Example: 61

weight   number  optional    

Must be at least 0. Example: 67

country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

rows   object[]     

Product rows composing this lot.

product_id   uuid     

Existing product identifier. Example: architecto

quantity   integer     

Quantity in lot. Example: 16

media_files   file[]  optional    

optional Photos/videos uploaded to R2.

is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: n

Must be one of:
  • o
  • n
media_paths   object[]  optional    

optional Existing media paths to attach.

path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: r

kind   string  optional    

Example: video

Must be one of:
  • photo
  • video
is_cover   string  optional    

Example: o

Must be one of:
  • o
  • n
lauction   object[]  optional    
minPrice   number  optional    

Must be at least 0. Example: 61

hour   string  optional    

This field is required when lauction is present. Must not be greater than 20 characters. Example: wvlxjklqppwqbewt

isPublic   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/product-lots/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-lots/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-lots/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/product-lots/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product lot. Example: architecto

PUT api/v1/product-lots/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/product-lots/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "created_by_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "product_condition_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "control_status_id=977e5426-8d13-3824-86aa-b092f8ae52c5"\
    --form "wording=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "price=60"\
    --form "price_in_local_currency=42"\
    --form "currency=ljnikh"\
    --form "language=waykcm"\
    --form "is_published=n"\
    --form "is_negotiable=o"\
    --form "is_bookable=n"\
    --form "require_validation=o"\
    --form "don=n"\
    --form "debarras=n"\
    --form "is_in_event=n"\
    --form "don_is_over=o"\
    --form "is_hidden_don=n"\
    --form "accepts_hand_delivery=n"\
    --form "height=50"\
    --form "length=72"\
    --form "width=61"\
    --form "weight=67"\
    --form "country_ids[]=7212c28d-f9ab-3dd7-af8a-06584a0d4cb7"\
    --form "rows[][product_id]=architecto"\
    --form "rows[][quantity]=16"\
    --form "media_paths[][path]=r"\
    --form "media_paths[][kind]=photo"\
    --form "media_paths[][is_cover]=n"\
    --form "auction[][minPrice]=57"\
    --form "auction[][hour]=itcpscqldzsnrwtu"\
    --form "auction[][isPublic]=n"\
    --form "lauction[][minPrice]=61"\
    --form "lauction[][hour]=wvlxjklqppwqbewt"\
    --form "lauction[][isPublic]=o"\
    --form "media_files[]=@/tmp/phpMjppRj" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-lots/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('created_by_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('product_condition_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('control_status_id', '977e5426-8d13-3824-86aa-b092f8ae52c5');
body.append('wording', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('price', '60');
body.append('price_in_local_currency', '42');
body.append('currency', 'ljnikh');
body.append('language', 'waykcm');
body.append('is_published', 'n');
body.append('is_negotiable', 'o');
body.append('is_bookable', 'n');
body.append('require_validation', 'o');
body.append('don', 'n');
body.append('debarras', 'n');
body.append('is_in_event', 'n');
body.append('don_is_over', 'o');
body.append('is_hidden_don', 'n');
body.append('accepts_hand_delivery', 'n');
body.append('height', '50');
body.append('length', '72');
body.append('width', '61');
body.append('weight', '67');
body.append('country_ids[]', '7212c28d-f9ab-3dd7-af8a-06584a0d4cb7');
body.append('rows[][product_id]', 'architecto');
body.append('rows[][quantity]', '16');
body.append('media_paths[][path]', 'r');
body.append('media_paths[][kind]', 'photo');
body.append('media_paths[][is_cover]', 'n');
body.append('auction[][minPrice]', '57');
body.append('auction[][hour]', 'itcpscqldzsnrwtu');
body.append('auction[][isPublic]', 'n');
body.append('lauction[][minPrice]', '61');
body.append('lauction[][hour]', 'wvlxjklqppwqbewt');
body.append('lauction[][isPublic]', 'o');
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/product-lots/{id}

PATCH api/v1/product-lots/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product lot. Example: architecto

Body Parameters

created_by_id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_condition_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

control_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

wording   string     

Lot title. Example: architecto

description   string  optional    

Example: Eius et animi quos velit et.

price   number  optional    

Must be at least 0. Example: 60

price_in_local_currency   number  optional    

Must be at least 0. Example: 42

currency   string  optional    

Must not be greater than 10 characters. Example: ljnikh

language   string  optional    

Must not be greater than 10 characters. Example: waykcm

is_published   string  optional    

Example: n

Must be one of:
  • o
  • n
is_negotiable   string  optional    

Example: o

Must be one of:
  • o
  • n
is_bookable   string  optional    

Example: n

Must be one of:
  • o
  • n
require_validation   string  optional    

Example: o

Must be one of:
  • o
  • n
don   string  optional    

Example: n

Must be one of:
  • o
  • n
debarras   string  optional    

Example: n

Must be one of:
  • o
  • n
auction   object[]  optional    
minPrice   number  optional    

Must be at least 0. Example: 57

hour   string  optional    

This field is required when auction is present. Must not be greater than 20 characters. Example: itcpscqldzsnrwtu

isPublic   string  optional    

Example: n

Must be one of:
  • o
  • n
is_in_event   string  optional    

Example: n

Must be one of:
  • o
  • n
don_is_over   string  optional    

Example: o

Must be one of:
  • o
  • n
is_hidden_don   string  optional    

Example: n

Must be one of:
  • o
  • n
accepts_hand_delivery   string  optional    

Example: n

Must be one of:
  • o
  • n
height   number  optional    

Must be at least 0. Example: 50

length   number  optional    

Must be at least 0. Example: 72

width   number  optional    

Must be at least 0. Example: 61

weight   number  optional    

Must be at least 0. Example: 67

country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

rows   object[]     

Product rows composing this lot.

product_id   uuid     

Existing product identifier. Example: architecto

quantity   integer     

Quantity in lot. Example: 16

media_files   file[]  optional    

optional Photos/videos uploaded to R2.

is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: n

Must be one of:
  • o
  • n
media_paths   object[]  optional    

optional Existing media paths to attach.

path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: r

kind   string  optional    

Example: photo

Must be one of:
  • photo
  • video
is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
lauction   object[]  optional    
minPrice   number  optional    

Must be at least 0. Example: 61

hour   string  optional    

This field is required when lauction is present. Must not be greater than 20 characters. Example: wvlxjklqppwqbewt

isPublic   string  optional    

Example: o

Must be one of:
  • o
  • n

DELETE api/v1/product-lots/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/product-lots/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-lots/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/product-lots/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product lot. Example: architecto

GET api/v1/product-characteristics

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-characteristics" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-characteristics"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/product-characteristics

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/product-characteristics

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/product-characteristics" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"article_characteristic_id\": \"architecto\",
    \"value\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-characteristics"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "article_characteristic_id": "architecto",
    "value": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/product-characteristics

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   uuid     

Existing product identifier. Example: architecto

article_characteristic_id   uuid  optional    

nullable Article characteristic reference. Example: architecto

value   string     

Product characteristic value. Example: architecto

GET api/v1/product-characteristics/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-characteristics/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-characteristics/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/product-characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product characteristic. Example: architecto

PUT api/v1/product-characteristics/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/product-characteristics/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"article_characteristic_id\": \"architecto\",
    \"value\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-characteristics/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "article_characteristic_id": "architecto",
    "value": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/product-characteristics/{id}

PATCH api/v1/product-characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product characteristic. Example: architecto

Body Parameters

product_id   uuid     

Existing product identifier. Example: architecto

article_characteristic_id   uuid  optional    

nullable Article characteristic reference. Example: architecto

value   string     

Product characteristic value. Example: architecto

DELETE api/v1/product-characteristics/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/product-characteristics/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-characteristics/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/product-characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product characteristic. Example: architecto

GET api/v1/product-variants

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/product-variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/product-variants

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/product-variants" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "product_id=architecto"\
    --form "article_variant_id=architecto"\
    --form "value=architecto"\
    --form "quantity=16"\
    --form "price=4326.41688"\
    --form "price_in_local_currency=27"\
    --form "identifier=n"\
    --form "media_paths[][path]=g"\
    --form "media_paths[][kind]=architecto"\
    --form "media_paths[][is_cover]=architecto"\
    --form "media_files[]=@/tmp/phps3Dyoc" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-variants"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('product_id', 'architecto');
body.append('article_variant_id', 'architecto');
body.append('value', 'architecto');
body.append('quantity', '16');
body.append('price', '4326.41688');
body.append('price_in_local_currency', '27');
body.append('identifier', 'n');
body.append('media_paths[][path]', 'g');
body.append('media_paths[][kind]', 'architecto');
body.append('media_paths[][is_cover]', 'architecto');
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/product-variants

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

product_id   uuid     

Existing product identifier. Example: architecto

article_variant_id   uuid     

Article variant reference. Example: architecto

value   string     

Variant value. Example: architecto

quantity   integer  optional    

nullable Variant stock. Example: 16

price   number  optional    

nullable Variant price override. Example: 4326.41688

price_in_local_currency   number  optional    

Must be at least 0. Example: 27

identifier   string  optional    

Must not be greater than 255 characters. Example: n

media_files   file[]  optional    

optional Variant images uploaded to R2. Accepts either a flat file array or {isCovered|is_cover, file} objects.

is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: o

Must be one of:
  • o
  • n
media_paths   object[]  optional    
path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: g

kind   string  optional    

Example: architecto

is_cover   string  optional    

Example: architecto

GET api/v1/product-variants/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-variants/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-variants/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/product-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product variant. Example: architecto

PUT api/v1/product-variants/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/product-variants/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "product_id=architecto"\
    --form "article_variant_id=architecto"\
    --form "value=architecto"\
    --form "quantity=16"\
    --form "price=4326.41688"\
    --form "price_in_local_currency=27"\
    --form "identifier=n"\
    --form "media_paths[][path]=g"\
    --form "media_paths[][kind]=architecto"\
    --form "media_paths[][is_cover]=architecto"\
    --form "media_files[]=@/tmp/phpwCuqiT" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-variants/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('product_id', 'architecto');
body.append('article_variant_id', 'architecto');
body.append('value', 'architecto');
body.append('quantity', '16');
body.append('price', '4326.41688');
body.append('price_in_local_currency', '27');
body.append('identifier', 'n');
body.append('media_paths[][path]', 'g');
body.append('media_paths[][kind]', 'architecto');
body.append('media_paths[][is_cover]', 'architecto');
body.append('media_files[]', document.querySelector('input[name="media_files[]"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/product-variants/{id}

PATCH api/v1/product-variants/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product variant. Example: architecto

Body Parameters

product_id   uuid     

Existing product identifier. Example: architecto

article_variant_id   uuid     

Article variant reference. Example: architecto

value   string     

Variant value. Example: architecto

quantity   integer  optional    

nullable Variant stock. Example: 16

price   number  optional    

nullable Variant price override. Example: 4326.41688

price_in_local_currency   number  optional    

Must be at least 0. Example: 27

identifier   string  optional    

Must not be greater than 255 characters. Example: n

media_files   file[]  optional    

optional Variant images uploaded to R2. Accepts either a flat file array or {isCovered|is_cover, file} objects.

is_cover   string  optional    

Example: n

Must be one of:
  • o
  • n
isCovered   string  optional    

Example: o

Must be one of:
  • o
  • n
media_paths   object[]  optional    
path   string  optional    

This field is required when media_paths is present. Must not be greater than 255 characters. Example: g

kind   string  optional    

Example: architecto

is_cover   string  optional    

Example: architecto

DELETE api/v1/product-variants/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/product-variants/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-variants/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/product-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product variant. Example: architecto

GET api/v1/product-stocks

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-stocks" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-stocks"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/product-stocks

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/product-stocks

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/product-stocks" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"stock_movement_id\": \"architecto\",
    \"quantity\": 4326.41688,
    \"movement_date\": \"architecto\",
    \"theoretical_stock\": 4326.41688,
    \"available_stock\": 4326.41688
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-stocks"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "stock_movement_id": "architecto",
    "quantity": 4326.41688,
    "movement_date": "architecto",
    "theoretical_stock": 4326.41688,
    "available_stock": 4326.41688
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/product-stocks

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   uuid     

Existing product identifier. Example: architecto

stock_movement_id   uuid  optional    

nullable Existing stock movement identifier. Example: architecto

quantity   number  optional    

nullable Movement quantity. Example: 4326.41688

movement_date   date  optional    

nullable Movement date. Example: architecto

theoretical_stock   number  optional    

Example: 4326.41688

available_stock   number  optional    

Example: 4326.41688

GET api/v1/product-stocks/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/product-stocks/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-stocks/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/product-stocks/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product stock. Example: architecto

PUT api/v1/product-stocks/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/product-stocks/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"stock_movement_id\": \"architecto\",
    \"quantity\": 4326.41688,
    \"movement_date\": \"architecto\",
    \"theoretical_stock\": 4326.41688,
    \"available_stock\": 4326.41688
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-stocks/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "stock_movement_id": "architecto",
    "quantity": 4326.41688,
    "movement_date": "architecto",
    "theoretical_stock": 4326.41688,
    "available_stock": 4326.41688
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/product-stocks/{id}

PATCH api/v1/product-stocks/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product stock. Example: architecto

Body Parameters

product_id   uuid     

Existing product identifier. Example: architecto

stock_movement_id   uuid  optional    

nullable Existing stock movement identifier. Example: architecto

quantity   number  optional    

nullable Movement quantity. Example: 4326.41688

movement_date   date  optional    

nullable Movement date. Example: architecto

theoretical_stock   number  optional    

Example: 4326.41688

available_stock   number  optional    

Example: 4326.41688

DELETE api/v1/product-stocks/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/product-stocks/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-stocks/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/product-stocks/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product stock. Example: architecto

Commandes

GET api/v1/users/account/commands

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/commands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/commands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/commands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/users/account/command-sellers

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/command-sellers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/command-sellers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/command-sellers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/users/account/sales

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/sales" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/sales"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/sales

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/commands

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/commands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/commands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/commands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/commands

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/commands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"buyer_id\": \"architecto\",
    \"reference_id\": \"b\",
    \"payment_mode\": \"n\",
    \"payment_status\": \"g\",
    \"currency\": \"zmiyvd\",
    \"is_don\": \"lj\",
    \"referenced_command_seller_id\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"sellers\": [
        {
            \"rows\": [
                {
                    \"cart_row_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
                    \"product_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
                    \"product_lot_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
                    \"discount_id\": \"5707ca55-f609-3528-be8b-1baeaee1567e\",
                    \"quantity\": 4,
                    \"price\": 52,
                    \"price_in_local_currency\": 8,
                    \"product_weight\": 75
                }
            ]
        }
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/commands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "buyer_id": "architecto",
    "reference_id": "b",
    "payment_mode": "n",
    "payment_status": "g",
    "currency": "zmiyvd",
    "is_don": "lj",
    "referenced_command_seller_id": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "sellers": [
        {
            "rows": [
                {
                    "cart_row_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
                    "product_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
                    "product_lot_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
                    "discount_id": "5707ca55-f609-3528-be8b-1baeaee1567e",
                    "quantity": 4,
                    "price": 52,
                    "price_in_local_currency": 8,
                    "product_weight": 75
                }
            ]
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/commands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

buyer_id   uuid     

Buyer UUID until user migration is complete. Example: architecto

reference_id   string  optional    

Must not be greater than 255 characters. Example: b

payment_mode   string  optional    

Must not be greater than 255 characters. Example: n

Must be one of:
  • PAYPAL
  • STRIPE
payment_status   string  optional    

Must not be greater than 255 characters. Example: g

currency   string  optional    

Must not be greater than 10 characters. Example: zmiyvd

is_don   string  optional    

Must not be greater than 2 characters. Example: lj

referenced_command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

sellers   string[]     

Seller subcommands.

seller_id   string     

Must be a valid UUID. Example: 51c7cf5e-fac2-3ac6-8ef8-61e6050503af

command_seller_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d207102d-bce0-31f9-8c36-aa9cf4cfe75a

delivery_mode   string  optional    

Must not be greater than 255 characters. Example: y

conformity_delivery_mode   string  optional    

Must not be greater than 255 characters. Example: k

delivery   string  optional    

Must not be greater than 255 characters. Example: c

has_conformity_control   string  optional    

Must be 1 character. Example: m

receiver_address   string  optional    

Example: architecto

payment_mode   string  optional    

Must not be greater than 255 characters. Example: n

Must be one of:
  • PAYPAL
  • STRIPE
rows   object[]     

Products or lots in this seller subcommand. Must have at least 1 items.

cart_row_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

product_id   string  optional    

This field is required when none of sellers..rows..product_lot_id and sellers..rows..cart_row_id are present. Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

product_lot_id   string  optional    

This field is required when none of sellers..rows..product_id and sellers..rows..cart_row_id are present. Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

discount_id   string  optional    

Must be a valid UUID. Example: 5707ca55-f609-3528-be8b-1baeaee1567e

quantity   integer  optional    

Must be at least 1. Example: 4

price   number  optional    

Must be at least 0. Example: 52

price_in_local_currency   number  optional    

Must be at least 0. Example: 8

product_weight   number  optional    

Must be at least 0. Example: 75

*   object  optional    
rows   string[]     

Products or lots in this seller subcommand.

GET api/v1/commands/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/commands/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/commands/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/commands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command. Example: architecto

DELETE api/v1/commands/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/commands/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/commands/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/commands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command. Example: architecto

GET api/v1/command-sellers

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/command-sellers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/command-sellers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/command-sellers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/command-sellers/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/command-sellers/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/command-sellers/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/command-sellers/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command seller. Example: architecto

PUT api/v1/command-sellers/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/command-sellers/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"command_seller_status_id\": \"architecto\",
    \"is_paid\": \"b\",
    \"preparation_commande\": \"n\",
    \"has_delivered\": \"g\",
    \"has_confirmed\": \"z\",
    \"is_buyer_agree\": \"architecto\",
    \"buyer_agree_at\": \"2026-07-17T18:03:39\",
    \"conformity_position\": 77,
    \"key_conversation\": \"i\",
    \"payout_batch_id\": \"y\",
    \"payout_method\": \"v\",
    \"is_customer_refunded\": \"d\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/command-sellers/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "command_seller_status_id": "architecto",
    "is_paid": "b",
    "preparation_commande": "n",
    "has_delivered": "g",
    "has_confirmed": "z",
    "is_buyer_agree": "architecto",
    "buyer_agree_at": "2026-07-17T18:03:39",
    "conformity_position": 77,
    "key_conversation": "i",
    "payout_batch_id": "y",
    "payout_method": "v",
    "is_customer_refunded": "d"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/command-sellers/{id}

PATCH api/v1/command-sellers/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command seller. Example: architecto

Body Parameters

command_seller_status_id   uuid  optional    

nullable Seller command status UUID. Example: architecto

is_paid   string  optional    

Must be 1 character. Example: b

preparation_commande   string  optional    

Must be 1 character. Example: n

has_delivered   string  optional    

Must be 1 character. Example: g

has_confirmed   string  optional    

Must be 1 character. Example: z

is_buyer_agree   string  optional    

nullable Buyer agreement flag. Example: architecto

buyer_agree_at   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:39

conformity_position   integer  optional    

Must be at least 0. Example: 77

key_conversation   string  optional    

Must not be greater than 255 characters. Example: i

payout_batch_id   string  optional    

Must not be greater than 255 characters. Example: y

payout_method   string  optional    

Must not be greater than 255 characters. Example: v

is_customer_refunded   string  optional    

Must be 1 character. Example: d

DELETE api/v1/command-sellers/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/command-sellers/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/command-sellers/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/command-sellers/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command seller. Example: architecto

GET api/v1/notification-command-sellers

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-command-sellers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-command-sellers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-command-sellers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-command-sellers/{notificationCommandSeller_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-command-sellers/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-command-sellers/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-command-sellers/{notificationCommandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationCommandSeller_id   string     

The ID of the notificationCommandSeller. Example: architecto

PUT api/v1/notification-command-sellers/{notificationCommandSeller_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-command-sellers/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-command-sellers/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "o"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-command-sellers/{notificationCommandSeller_id}

PATCH api/v1/notification-command-sellers/{notificationCommandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationCommandSeller_id   string     

The ID of the notificationCommandSeller. Example: architecto

Body Parameters

is_seen   string     

Example: o

Must be one of:
  • o
  • n

GET api/v1/notification-control-conformites

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-control-conformites" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-control-conformites"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-control-conformites

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-control-conformites/{notificationControlConformite_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-control-conformites/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-control-conformites/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-control-conformites/{notificationControlConformite_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationControlConformite_id   string     

The ID of the notificationControlConformite. Example: architecto

PUT api/v1/notification-control-conformites/{notificationControlConformite_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-control-conformites/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-control-conformites/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-control-conformites/{notificationControlConformite_id}

PATCH api/v1/notification-control-conformites/{notificationControlConformite_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationControlConformite_id   string     

The ID of the notificationControlConformite. Example: architecto

Body Parameters

is_seen   string     

Example: n

Must be one of:
  • o
  • n

Contenus

Traductions API

Traduction immΓ©diate de textes envoyΓ©s par le front.

POST api/v1/translate/text-to-text

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/translate/text-to-text" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"text\": [
        \"Bonjour\",
        \"Merci\"
    ],
    \"target_language\": \"ngzmiy\",
    \"source_language\": \"vdljni\",
    \"targetLanguage\": \"en\",
    \"sourceLanguage\": \"fr\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translate/text-to-text"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "text": [
        "Bonjour",
        "Merci"
    ],
    "target_language": "ngzmiy",
    "source_language": "vdljni",
    "targetLanguage": "en",
    "sourceLanguage": "fr"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/translate/text-to-text

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

text   string[]     

Textes Γ  traduire.

target_language   string  optional    

Must not be greater than 10 characters. Example: ngzmiy

source_language   string  optional    

Must not be greater than 10 characters. Example: vdljni

targetLanguage   string  optional    

optional Langue cible. Example: en

sourceLanguage   string  optional    

optional Langue source. Example: fr

Foire aux questions

Gestion des questions frΓ©quentes affichΓ©es dans l’application et sur les Γ©crans d’aide.

GET api/v1/faqs

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/faqs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/faqs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/faqs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/faqs

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/faqs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"question\": \"b\",
    \"question_fr\": \"n\",
    \"question_en\": \"g\",
    \"answer\": \"architecto\",
    \"answer_fr\": \"architecto\",
    \"answer_en\": \"architecto\",
    \"position\": 39
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/faqs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "question": "b",
    "question_fr": "n",
    "question_en": "g",
    "answer": "architecto",
    "answer_fr": "architecto",
    "answer_en": "architecto",
    "position": 39
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/faqs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

question   string  optional    

This field is required when question_fr is not present. Must not be greater than 255 characters. Example: b

question_fr   string  optional    

This field is required when question is not present. Must not be greater than 255 characters. Example: n

question_en   string  optional    

Must not be greater than 255 characters. Example: g

answer   string  optional    

Example: architecto

answer_fr   string  optional    

Example: architecto

answer_en   string  optional    

Example: architecto

position   integer  optional    

Must be at least 0. Example: 39

GET api/v1/faqs/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/faqs/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/faqs/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/faqs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the faq. Example: architecto

PUT api/v1/faqs/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/faqs/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"question\": \"b\",
    \"question_fr\": \"n\",
    \"question_en\": \"g\",
    \"answer\": \"architecto\",
    \"answer_fr\": \"architecto\",
    \"answer_en\": \"architecto\",
    \"position\": 39
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/faqs/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "question": "b",
    "question_fr": "n",
    "question_en": "g",
    "answer": "architecto",
    "answer_fr": "architecto",
    "answer_en": "architecto",
    "position": 39
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/faqs/{id}

PATCH api/v1/faqs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the faq. Example: architecto

Body Parameters

question   string  optional    

This field is required when question_fr is not present. Must not be greater than 255 characters. Example: b

question_fr   string  optional    

This field is required when question is not present. Must not be greater than 255 characters. Example: n

question_en   string  optional    

Must not be greater than 255 characters. Example: g

answer   string  optional    

Example: architecto

answer_fr   string  optional    

Example: architecto

answer_en   string  optional    

Example: architecto

position   integer  optional    

Must be at least 0. Example: 39

DELETE api/v1/faqs/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/faqs/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/faqs/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/faqs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the faq. Example: architecto

BanniΓ¨res d’accueil

Gestion des visuels et messages affichΓ©s sur la page d’accueil.

GET api/v1/home-banners

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/home-banners" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/home-banners"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/home-banners

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/home-banners

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/home-banners" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "wording=b"\
    --form "description=Eius et animi quos velit et."\
    --form "picture_path=architecto"\
    --form "is_active=architecto"\
    --form "position=60"\
    --form "language=dljnik"\
    --form "picture=@/tmp/phpiQbQtr" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/home-banners"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('wording', 'b');
body.append('description', 'Eius et animi quos velit et.');
body.append('picture_path', 'architecto');
body.append('is_active', 'architecto');
body.append('position', '60');
body.append('language', 'dljnik');
body.append('picture', document.querySelector('input[name="picture"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/home-banners

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

wording   string  optional    

Must not be greater than 255 characters. Example: b

description   string  optional    

Example: Eius et animi quos velit et.

picture   file  optional    

optional Uploaded banner image stored on R2. Example: /tmp/phpiQbQtr

picture_path   string  optional    

optional Existing R2 path or external URL. Example: architecto

is_active   string  optional    

optional Active flag. Legacy isActive is accepted. Example: architecto

position   integer  optional    

Must be at least 0. Example: 60

language   string     

Must not be greater than 10 characters. Example: dljnik

GET api/v1/home-banners/{homeBanner_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/home-banners/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/home-banners/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/home-banners/{homeBanner_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

homeBanner_id   string     

The ID of the homeBanner. Example: architecto

PUT api/v1/home-banners/{homeBanner_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/home-banners/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "wording=b"\
    --form "description=Eius et animi quos velit et."\
    --form "picture_path=architecto"\
    --form "is_active=architecto"\
    --form "position=60"\
    --form "language=dljnik"\
    --form "picture=@/tmp/phpvLX5oo" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/home-banners/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('wording', 'b');
body.append('description', 'Eius et animi quos velit et.');
body.append('picture_path', 'architecto');
body.append('is_active', 'architecto');
body.append('position', '60');
body.append('language', 'dljnik');
body.append('picture', document.querySelector('input[name="picture"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/home-banners/{homeBanner_id}

PATCH api/v1/home-banners/{homeBanner_id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

homeBanner_id   string     

The ID of the homeBanner. Example: architecto

Body Parameters

wording   string  optional    

Must not be greater than 255 characters. Example: b

description   string  optional    

Example: Eius et animi quos velit et.

picture   file  optional    

optional Uploaded banner image stored on R2. Example: /tmp/phpvLX5oo

picture_path   string  optional    

optional Existing R2 path or external URL. Example: architecto

is_active   string  optional    

optional Active flag. Legacy isActive is accepted. Example: architecto

position   integer  optional    

Must be at least 0. Example: 60

language   string     

Must not be greater than 10 characters. Example: dljnik

DELETE api/v1/home-banners/{homeBanner_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/home-banners/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/home-banners/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/home-banners/{homeBanner_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

homeBanner_id   string     

The ID of the homeBanner. Example: architecto

Traductions

Gestion des contenus multilingues et des clΓ©s de traduction mΓ©tier.

POST api/v1/translations/update-all

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/translations/update-all" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translations/update-all"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/translations/update-all

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/translations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/translations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/translations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/translations

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/translations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"original_text\": \"architecto\",
    \"original_key\": \"ngzmiyvdljnikhwaykcmyuwpwlvqwrsitcpscqldzsnrwtujwvlxjklqppwqbewt\",
    \"original_language\": \"n\",
    \"target_language\": \"n\",
    \"translated_text\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "original_text": "architecto",
    "original_key": "ngzmiyvdljnikhwaykcmyuwpwlvqwrsitcpscqldzsnrwtujwvlxjklqppwqbewt",
    "original_language": "n",
    "target_language": "n",
    "translated_text": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/translations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

original_text   string     

Example: architecto

original_key   string     

Must be 64 characters. Example: ngzmiyvdljnikhwaykcmyuwpwlvqwrsitcpscqldzsnrwtujwvlxjklqppwqbewt

original_language   string     

Must not be greater than 5 characters. Example: n

target_language   string     

Must not be greater than 5 characters. Example: n

translated_text   string     

Example: architecto

GET api/v1/translations/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/translations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/translations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the translation. Example: architecto

PUT api/v1/translations/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/translations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"original_text\": \"architecto\",
    \"original_key\": \"ngzmiyvdljnikhwaykcmyuwpwlvqwrsitcpscqldzsnrwtujwvlxjklqppwqbewt\",
    \"original_language\": \"n\",
    \"target_language\": \"n\",
    \"translated_text\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "original_text": "architecto",
    "original_key": "ngzmiyvdljnikhwaykcmyuwpwlvqwrsitcpscqldzsnrwtujwvlxjklqppwqbewt",
    "original_language": "n",
    "target_language": "n",
    "translated_text": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/translations/{id}

PATCH api/v1/translations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the translation. Example: architecto

Body Parameters

original_text   string     

Example: architecto

original_key   string     

Must be 64 characters. Example: ngzmiyvdljnikhwaykcmyuwpwlvqwrsitcpscqldzsnrwtujwvlxjklqppwqbewt

original_language   string     

Must not be greater than 5 characters. Example: n

target_language   string     

Must not be greater than 5 characters. Example: n

translated_text   string     

Example: architecto

DELETE api/v1/translations/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/translations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/translations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/translations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the translation. Example: architecto

Devises et taux

POST api/v1/exchanges-rate-new

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/exchanges-rate-new" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchanges-rate-new"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/exchanges-rate-new

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/currencies

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/currencies" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/currencies"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "CAD": "Dollar Canadien (CAD)",
        "EUR": "Euro (EUR)",
        "XOF": "Franc CFA (XOF)",
        "USD": "Dollar Américain (USD)"
    }
}
 

Request      

GET api/v1/currencies

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/exchange-rates/convert

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/exchange-rates/convert" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 27,
    \"base\": \"CAD\",
    \"target\": \"USD\",
    \"round\": false
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchange-rates/convert"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 27,
    "base": "CAD",
    "target": "USD",
    "round": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/exchange-rates/convert

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

amount   number     

Must be at least 0. Example: 27

base   string  optional    

Example: CAD

Must be one of:
  • CAD
  • EUR
  • USD
  • XOF
target   string  optional    

Example: USD

Must be one of:
  • CAD
  • EUR
  • USD
  • XOF
round   boolean  optional    

Example: false

GET api/v1/exchange-rates

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/exchange-rates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchange-rates"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f49c0-e9d4-7172-abd2-6316451a209e",
            "base": "CAD",
            "target": "EUR",
            "exchange_rate": "0.62200000",
            "updated_at": "2026-07-17T02:00:05.000000Z",
            "created_at": "2026-07-10T02:00:07.000000Z"
        },
        {
            "id": "019f49c0-e9e5-720f-a2c8-be52acb54b16",
            "base": "CAD",
            "target": "USD",
            "exchange_rate": "0.71200000",
            "updated_at": "2026-07-16T02:00:03.000000Z",
            "created_at": "2026-07-10T02:00:07.000000Z"
        },
        {
            "id": "019f49c0-e9da-7091-9ea8-503ecc6392af",
            "base": "CAD",
            "target": "XOF",
            "exchange_rate": "408.32000000",
            "updated_at": "2026-07-17T02:00:05.000000Z",
            "created_at": "2026-07-10T02:00:07.000000Z"
        },
        {
            "id": "019f49c0-e287-7111-8876-bf7615ddc08f",
            "base": "EUR",
            "target": "CAD",
            "exchange_rate": "1.61000000",
            "updated_at": "2026-07-14T02:00:02.000000Z",
            "created_at": "2026-07-10T02:00:05.000000Z"
        },
        {
            "id": "019f49c0-e164-7318-a13d-8fb078148831",
            "base": "EUR",
            "target": "USD",
            "exchange_rate": "1.14000000",
            "updated_at": "2026-07-10T02:00:05.000000Z",
            "created_at": "2026-07-10T02:00:05.000000Z"
        },
        {
            "id": "019f49c0-e006-717c-8a0a-4d302071155f",
            "base": "EUR",
            "target": "XOF",
            "exchange_rate": "655.96000000",
            "updated_at": "2026-07-10T02:00:04.000000Z",
            "created_at": "2026-07-10T02:00:04.000000Z"
        },
        {
            "id": "019f49c0-e790-7174-8b77-33bc3ad2c8e3",
            "base": "USD",
            "target": "CAD",
            "exchange_rate": "1.40000000",
            "updated_at": "2026-07-16T02:00:03.000000Z",
            "created_at": "2026-07-10T02:00:06.000000Z"
        },
        {
            "id": "019f49c0-e617-7326-8ff3-9b2dcbc63c96",
            "base": "USD",
            "target": "EUR",
            "exchange_rate": "0.87300000",
            "updated_at": "2026-07-16T02:00:03.000000Z",
            "created_at": "2026-07-10T02:00:06.000000Z"
        },
        {
            "id": "019f49c0-e6b9-714f-bf3e-2624d9fcf868",
            "base": "USD",
            "target": "XOF",
            "exchange_rate": "572.97000000",
            "updated_at": "2026-07-17T02:00:04.000000Z",
            "created_at": "2026-07-10T02:00:06.000000Z"
        },
        {
            "id": "019f49c0-dcde-72d3-addf-ab39248f056b",
            "base": "XOF",
            "target": "CAD",
            "exchange_rate": "0.00245000",
            "updated_at": "2026-07-15T02:00:01.000000Z",
            "created_at": "2026-07-10T02:00:04.000000Z"
        },
        {
            "id": "019f49c0-d410-721e-9bc8-15de4d0bb366",
            "base": "XOF",
            "target": "EUR",
            "exchange_rate": "0.00152000",
            "updated_at": "2026-07-10T02:00:01.000000Z",
            "created_at": "2026-07-10T02:00:01.000000Z"
        },
        {
            "id": "019f49c0-d78b-717b-9aa4-dc906acaf640",
            "base": "XOF",
            "target": "USD",
            "exchange_rate": "0.00175000",
            "updated_at": "2026-07-16T02:00:01.000000Z",
            "created_at": "2026-07-10T02:00:02.000000Z"
        }
    ]
}
 

Request      

GET api/v1/exchange-rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/exchange-rates

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/exchange-rates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"base\": \"USD\",
    \"target\": \"XOF\",
    \"exchange_rate\": 4326.41688
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchange-rates"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "base": "USD",
    "target": "XOF",
    "exchange_rate": 4326.41688
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/exchange-rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

base   string     

Example: USD

Must be one of:
  • CAD
  • EUR
  • USD
  • XOF
target   string     

The value and base must be different. Example: XOF

Must be one of:
  • CAD
  • EUR
  • USD
  • XOF
exchange_rate   number     

Example: 4326.41688

GET api/v1/exchange-rates/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/exchange-rates/019f49c0-d410-721e-9bc8-15de4d0bb366" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchange-rates/019f49c0-d410-721e-9bc8-15de4d0bb366"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f49c0-d410-721e-9bc8-15de4d0bb366",
        "base": "XOF",
        "target": "EUR",
        "exchange_rate": "0.00152000",
        "updated_at": "2026-07-10T02:00:01.000000Z",
        "created_at": "2026-07-10T02:00:01.000000Z"
    }
}
 

Request      

GET api/v1/exchange-rates/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the exchange rate. Example: 019f49c0-d410-721e-9bc8-15de4d0bb366

PUT api/v1/exchange-rates/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/exchange-rates/019f49c0-d410-721e-9bc8-15de4d0bb366" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"base\": \"XOF\",
    \"target\": \"XOF\",
    \"exchange_rate\": 4326.41688
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchange-rates/019f49c0-d410-721e-9bc8-15de4d0bb366"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "base": "XOF",
    "target": "XOF",
    "exchange_rate": 4326.41688
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/exchange-rates/{id}

PATCH api/v1/exchange-rates/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the exchange rate. Example: 019f49c0-d410-721e-9bc8-15de4d0bb366

Body Parameters

base   string     

Example: XOF

Must be one of:
  • CAD
  • EUR
  • USD
  • XOF
target   string     

The value and base must be different. Example: XOF

Must be one of:
  • CAD
  • EUR
  • USD
  • XOF
exchange_rate   number     

Example: 4326.41688

DELETE api/v1/exchange-rates/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/exchange-rates/019f49c0-d410-721e-9bc8-15de4d0bb366" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/exchange-rates/019f49c0-d410-721e-9bc8-15de4d0bb366"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/exchange-rates/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the exchange rate. Example: 019f49c0-d410-721e-9bc8-15de4d0bb366

Dons

POST api/v1/don_field/reset

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/don_field/reset" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don_field/reset"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/don_field/reset

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

POST api/v1/don_field/remember_sent

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/don_field/remember_sent" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don_field/remember_sent"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/don_field/remember_sent

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

POST api/v1/don/signature/{donField_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/don/signature/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don/signature/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/don/signature/{donField_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

donField_id   string     

The ID of the donField. Example: architecto

Body Parameters

sellerSignature   file  optional    

Image de signature du donneur. Must be an image. Must not be greater than 4096 kilobytes.

buyerSignature   file  optional    

Image de signature du receveur. Must be an image. Must not be greater than 4096 kilobytes.

GET api/v1/don-fields

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/don-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/don-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/don-fields

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/don-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"receiver_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"product_lot_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"is_choosed\": \"o\",
    \"participation\": 76,
    \"is_closed\": \"o\",
    \"donor_note\": \"architecto\",
    \"receiver_note\": \"architecto\",
    \"has_delivery\": \"n\",
    \"is_buyer_agree\": \"o\",
    \"paid_by_donor\": \"o\",
    \"seller_signature\": \"n\",
    \"buyer_signature\": \"g\",
    \"contract_path\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "receiver_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "product_lot_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "is_choosed": "o",
    "participation": 76,
    "is_closed": "o",
    "donor_note": "architecto",
    "receiver_note": "architecto",
    "has_delivery": "n",
    "is_buyer_agree": "o",
    "paid_by_donor": "o",
    "seller_signature": "n",
    "buyer_signature": "g",
    "contract_path": "z"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/don-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

receiver_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_id   string  optional    

This field is required when product_lot_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

product_lot_id   string  optional    

This field is required when product_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

is_choosed   string  optional    

Example: o

Must be one of:
  • o
  • n
participation   number  optional    

Must be at least 0. Example: 76

is_closed   string  optional    

Example: o

Must be one of:
  • o
  • n
donor_note   string  optional    

Example: architecto

receiver_note   string  optional    

Example: architecto

has_delivery   string  optional    

Example: n

Must be one of:
  • o
  • n
is_buyer_agree   string  optional    

Example: o

Must be one of:
  • o
  • n
paid_by_donor   string  optional    

Example: o

Must be one of:
  • o
  • n
seller_signature   string  optional    

Must not be greater than 255 characters. Example: n

buyer_signature   string  optional    

Must not be greater than 255 characters. Example: g

contract_path   string  optional    

Must not be greater than 255 characters. Example: z

GET api/v1/don-fields/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/don-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/don-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the don field. Example: architecto

PUT api/v1/don-fields/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/don-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"receiver_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"product_lot_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"is_choosed\": \"n\",
    \"participation\": 76,
    \"is_closed\": \"n\",
    \"donor_note\": \"architecto\",
    \"receiver_note\": \"architecto\",
    \"has_delivery\": \"n\",
    \"is_buyer_agree\": \"o\",
    \"paid_by_donor\": \"o\",
    \"seller_signature\": \"n\",
    \"buyer_signature\": \"g\",
    \"contract_path\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "receiver_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "product_lot_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "is_choosed": "n",
    "participation": 76,
    "is_closed": "n",
    "donor_note": "architecto",
    "receiver_note": "architecto",
    "has_delivery": "n",
    "is_buyer_agree": "o",
    "paid_by_donor": "o",
    "seller_signature": "n",
    "buyer_signature": "g",
    "contract_path": "z"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/don-fields/{id}

PATCH api/v1/don-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the don field. Example: architecto

Body Parameters

receiver_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

is_choosed   string  optional    

Example: n

Must be one of:
  • o
  • n
participation   number  optional    

Must be at least 0. Example: 76

is_closed   string  optional    

Example: n

Must be one of:
  • o
  • n
donor_note   string  optional    

Example: architecto

receiver_note   string  optional    

Example: architecto

has_delivery   string  optional    

Example: n

Must be one of:
  • o
  • n
is_buyer_agree   string  optional    

Example: o

Must be one of:
  • o
  • n
paid_by_donor   string  optional    

Example: o

Must be one of:
  • o
  • n
seller_signature   string  optional    

Must not be greater than 255 characters. Example: n

buyer_signature   string  optional    

Must not be greater than 255 characters. Example: g

contract_path   string  optional    

Must not be greater than 255 characters. Example: z

DELETE api/v1/don-fields/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/don-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/don-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the don field. Example: architecto

GET api/v1/don-payments

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/don-payments" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-payments"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/don-payments

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/don-payments

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/don-payments" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"don_field_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"created_by_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"payment_provider\": \"m\",
    \"transaction_id\": \"i\",
    \"amount\": 76
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-payments"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "don_field_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "created_by_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "payment_provider": "m",
    "transaction_id": "i",
    "amount": 76
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/don-payments

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

don_field_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

created_by_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

payment_provider   string  optional    

Must not be greater than 40 characters. Example: m

transaction_id   string  optional    

Must not be greater than 255 characters. Example: i

amount   number  optional    

Must be at least 0. Example: 76

response_details   object  optional    

GET api/v1/don-payments/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/don-payments/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/don-payments/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/don-payments/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the don payment. Example: architecto

GET api/v1/notification-don-fields

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-don-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-don-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-don-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-don-fields/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-don-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-don-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-don-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification don field. Example: architecto

PUT api/v1/notification-don-fields/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-don-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-don-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "o"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-don-fields/{id}

PATCH api/v1/notification-don-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification don field. Example: architecto

Body Parameters

is_seen   string  optional    

Example: o

Must be one of:
  • o
  • n

Endpoints

POST api/v1/users/update-device-id

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/update-device-id" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"deviceId\": \"architecto\",
    \"wording\": \"b\",
    \"model\": \"n\",
    \"brand\": \"g\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/update-device-id"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "deviceId": "architecto",
    "wording": "b",
    "model": "n",
    "brand": "g"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/users/update-device-id

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

deviceId   string     

Jeton Firebase Cloud Messaging de l'appareil. Example: architecto

wording   string  optional    

Must not be greater than 255 characters. Example: b

model   string  optional    

Must not be greater than 255 characters. Example: n

brand   string  optional    

Must not be greater than 255 characters. Example: g

other_details   object  optional    

Engagement client

GET api/v1/users/account/wish-lists

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/wish-lists" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/wish-lists"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/wish-lists

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/programmed-research/process

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/programmed-research/process" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/programmed-research/process"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/programmed-research/process

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/programmed-researches

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/programmed-researches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/programmed-researches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/programmed-researches

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/programmed-researches

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/programmed-researches" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "article_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "brand_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "model_id=977e5426-8d13-3824-86aa-b092f8ae52c5"\
    --form "product_state_id=d6fa562b-acd5-35ff-babb-d11194d3737b"\
    --form "created_by_id=architecto"\
    --form "query_term=architecto"\
    --form "notes=architecto"\
    --form "min_price=39"\
    --form "max_price=84"\
    --form "currency=zmiyvd"\
    --form "is_processed=o"\
    --form "is_callable=o"\
    --form "programmed_research_deadline=2026-07-17T18:03:40"\
    --form "is_satisfied=n"\
    --form "is_cancel=n"\
    --form "country_ids[]=add3503c-ebff-3875-93af-b8c6a695762b"\
    --form "picture_path=n"\
    --form "file=@/tmp/phpIivV8T" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/programmed-researches"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('article_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('brand_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('model_id', '977e5426-8d13-3824-86aa-b092f8ae52c5');
body.append('product_state_id', 'd6fa562b-acd5-35ff-babb-d11194d3737b');
body.append('created_by_id', 'architecto');
body.append('query_term', 'architecto');
body.append('notes', 'architecto');
body.append('min_price', '39');
body.append('max_price', '84');
body.append('currency', 'zmiyvd');
body.append('is_processed', 'o');
body.append('is_callable', 'o');
body.append('programmed_research_deadline', '2026-07-17T18:03:40');
body.append('is_satisfied', 'n');
body.append('is_cancel', 'n');
body.append('country_ids[]', 'add3503c-ebff-3875-93af-b8c6a695762b');
body.append('picture_path', 'n');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/programmed-researches

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

article_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

product_state_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

created_by_id   uuid     

User UUID. Example: architecto

query_term   string     

Search title. Example: architecto

notes   string  optional    

Example: architecto

min_price   number  optional    

Must be at least 0. Example: 39

max_price   number  optional    

Must be at least 0. Example: 84

currency   string  optional    

Must not be greater than 10 characters. Example: zmiyvd

is_processed   string  optional    

Example: o

Must be one of:
  • o
  • n
is_callable   string  optional    

Example: o

Must be one of:
  • o
  • n
programmed_research_deadline   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:40

is_satisfied   string  optional    

Example: n

Must be one of:
  • o
  • n
is_cancel   string  optional    

Example: n

Must be one of:
  • o
  • n
country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

file   file  optional    

optional Picture uploaded to R2. Example: /tmp/phpIivV8T

picture_path   string  optional    

Must not be greater than 255 characters. Example: n

GET api/v1/programmed-researches/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/programmed-researches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/programmed-researches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/programmed-researches/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the programmed research. Example: architecto

PUT api/v1/programmed-researches/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/programmed-researches/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "article_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "brand_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "model_id=977e5426-8d13-3824-86aa-b092f8ae52c5"\
    --form "product_state_id=d6fa562b-acd5-35ff-babb-d11194d3737b"\
    --form "created_by_id=architecto"\
    --form "query_term=architecto"\
    --form "notes=architecto"\
    --form "min_price=39"\
    --form "max_price=84"\
    --form "currency=zmiyvd"\
    --form "is_processed=n"\
    --form "is_callable=o"\
    --form "programmed_research_deadline=2026-07-17T18:03:40"\
    --form "is_satisfied=n"\
    --form "is_cancel=n"\
    --form "country_ids[]=add3503c-ebff-3875-93af-b8c6a695762b"\
    --form "picture_path=n"\
    --form "file=@/tmp/phpMEtk0Y" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/programmed-researches/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('article_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('brand_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('model_id', '977e5426-8d13-3824-86aa-b092f8ae52c5');
body.append('product_state_id', 'd6fa562b-acd5-35ff-babb-d11194d3737b');
body.append('created_by_id', 'architecto');
body.append('query_term', 'architecto');
body.append('notes', 'architecto');
body.append('min_price', '39');
body.append('max_price', '84');
body.append('currency', 'zmiyvd');
body.append('is_processed', 'n');
body.append('is_callable', 'o');
body.append('programmed_research_deadline', '2026-07-17T18:03:40');
body.append('is_satisfied', 'n');
body.append('is_cancel', 'n');
body.append('country_ids[]', 'add3503c-ebff-3875-93af-b8c6a695762b');
body.append('picture_path', 'n');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/programmed-researches/{id}

PATCH api/v1/programmed-researches/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the programmed research. Example: architecto

Body Parameters

article_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

product_state_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

created_by_id   uuid     

User UUID. Example: architecto

query_term   string     

Search title. Example: architecto

notes   string  optional    

Example: architecto

min_price   number  optional    

Must be at least 0. Example: 39

max_price   number  optional    

Must be at least 0. Example: 84

currency   string  optional    

Must not be greater than 10 characters. Example: zmiyvd

is_processed   string  optional    

Example: n

Must be one of:
  • o
  • n
is_callable   string  optional    

Example: o

Must be one of:
  • o
  • n
programmed_research_deadline   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:40

is_satisfied   string  optional    

Example: n

Must be one of:
  • o
  • n
is_cancel   string  optional    

Example: n

Must be one of:
  • o
  • n
country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

file   file  optional    

optional Picture uploaded to R2. Example: /tmp/phpMEtk0Y

picture_path   string  optional    

Must not be greater than 255 characters. Example: n

DELETE api/v1/programmed-researches/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/programmed-researches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/programmed-researches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/programmed-researches/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the programmed research. Example: architecto

GET api/v1/notification-programmed-researches

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-programmed-researches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-programmed-researches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-programmed-researches

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-programmed-researches/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-programmed-researches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-programmed-researches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-programmed-researches/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification programmed research. Example: architecto

PUT api/v1/notification-programmed-researches/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-programmed-researches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-programmed-researches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-programmed-researches/{id}

PATCH api/v1/notification-programmed-researches/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification programmed research. Example: architecto

Body Parameters

is_seen   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/proposal-products

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/proposal-products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/proposal-products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/proposal-products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/proposal-products

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/proposal-products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"state\": 1,
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"created_by_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"programmed_research_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/proposal-products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "state": 1,
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "created_by_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "programmed_research_id": "d6fa562b-acd5-35ff-babb-d11194d3737b"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/proposal-products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

state   integer  optional    

Example: 1

Must be one of:
  • 1
  • 2
  • 3
product_id   string  optional    

This field is required when product_lot_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

This field is required when product_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

programmed_research_id   string     

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

GET api/v1/proposal-products/{proposalProduct_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/proposal-products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/proposal-products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/proposal-products/{proposalProduct_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

proposalProduct_id   string     

The ID of the proposalProduct. Example: architecto

PUT api/v1/proposal-products/{proposalProduct_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/proposal-products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"state\": 3,
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"created_by_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"programmed_research_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/proposal-products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "state": 3,
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "created_by_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "programmed_research_id": "d6fa562b-acd5-35ff-babb-d11194d3737b"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/proposal-products/{proposalProduct_id}

PATCH api/v1/proposal-products/{proposalProduct_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

proposalProduct_id   string     

The ID of the proposalProduct. Example: architecto

Body Parameters

state   integer  optional    

Example: 3

Must be one of:
  • 1
  • 2
  • 3
product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

programmed_research_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

DELETE api/v1/proposal-products/{proposalProduct_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/proposal-products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/proposal-products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/proposal-products/{proposalProduct_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

proposalProduct_id   string     

The ID of the proposalProduct. Example: architecto

GET api/v1/wish-lists

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/wish-lists" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/wish-lists"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/wish-lists

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/wish-lists

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/wish-lists" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"architecto\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/wish-lists"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "architecto",
    "product_id": "architecto",
    "product_lot_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/wish-lists

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

created_by_id   uuid     

User UUID. Example: architecto

product_id   uuid  optional    

nullable Product UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Product lot UUID. Example: architecto

GET api/v1/wish-lists/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/wish-lists/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/wish-lists/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/wish-lists/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the wish list. Example: architecto

DELETE api/v1/wish-lists/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/wish-lists/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/wish-lists/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/wish-lists/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the wish list. Example: architecto

GET api/v1/notification-wish-lists

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-wish-lists" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-wish-lists"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-wish-lists

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-wish-lists/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-wish-lists/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-wish-lists/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-wish-lists/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification wish list. Example: architecto

PUT api/v1/notification-wish-lists/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-wish-lists/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-wish-lists/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "o"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-wish-lists/{id}

PATCH api/v1/notification-wish-lists/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification wish list. Example: architecto

Body Parameters

is_seen   string  optional    

Example: o

Must be one of:
  • o
  • n

POST api/v1/notification-wish-list-reads

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/notification-wish-list-reads" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-wish-list-reads"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/notification-wish-list-reads

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

Livraison

Emballage colis

Demandes d’informations de colis entre acheteur et vendeur.

POST api/v1/packaging/check

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/packaging/check" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"sellerId\": \"01971a9f-0a73-7000-8000-0c9a4f64b111\",
    \"products\": [
        {
            \"productId\": \"01971a9f-0a73-7000-8000-0c9a4f64b222\",
            \"quantity\": 1,
            \"price\": \"25.00\",
            \"currency\": \"CAD\"
        }
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/check"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "sellerId": "01971a9f-0a73-7000-8000-0c9a4f64b111",
    "products": [
        {
            "productId": "01971a9f-0a73-7000-8000-0c9a4f64b222",
            "quantity": 1,
            "price": "25.00",
            "currency": "CAD"
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/packaging/check

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

sellerId   string     

Identifiant du vendeur concernΓ©. Example: 01971a9f-0a73-7000-8000-0c9a4f64b111

products   string[]     

Produits ou lots Γ  vΓ©rifier pour l’emballage.

productId   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

productLotId   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

quantity   integer  optional    

Must be at least 1. Example: 27

price   number  optional    

Must be at least 0. Example: 8

currency   string  optional    

Must not be greater than 10 characters. Example: yvdljn

POST api/v1/packaging/request

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/packaging/request" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"sellerId\": \"01971a9f-0a73-7000-8000-0c9a4f64b111\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/request"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "sellerId": "01971a9f-0a73-7000-8000-0c9a4f64b111"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/packaging/request

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

sellerId   string     

Identifiant du vendeur Γ  notifier. Example: 01971a9f-0a73-7000-8000-0c9a4f64b111

POST api/v1/packaging/validate

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/packaging/validate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"length\": 40,
    \"width\": 30,
    \"height\": 20,
    \"weight\": 4.5,
    \"lengthUnit\": \"cm\",
    \"weightUnit\": \"kg\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/validate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "length": 40,
    "width": 30,
    "height": 20,
    "weight": 4.5,
    "lengthUnit": "cm",
    "weightUnit": "kg"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/packaging/validate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

length   number     

Longueur du colis. Example: 40

width   number     

Largeur du colis. Example: 30

height   number     

Hauteur du colis. Example: 20

weight   number     

Poids du colis. Example: 4.5

lengthUnit   string  optional    

optional UnitΓ© des dimensions. Example: cm

weightUnit   string  optional    

optional UnitΓ© du poids. Example: kg

GET api/v1/packaging/limits

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/packaging/limits" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/limits"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/packaging/limits

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/packaging/respond

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/packaging/respond" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"requestId\": \"01971a9f-0a73-7000-8000-0c9a4f64b333\",
    \"length\": 40,
    \"width\": 30,
    \"height\": 20,
    \"weight\": 4.5,
    \"lengthUnit\": \"cm\",
    \"widthUnit\": \"bngzmi\",
    \"heightUnit\": \"yvdljn\",
    \"weightUnit\": \"kg\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/respond"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "requestId": "01971a9f-0a73-7000-8000-0c9a4f64b333",
    "length": 40,
    "width": 30,
    "height": 20,
    "weight": 4.5,
    "lengthUnit": "cm",
    "widthUnit": "bngzmi",
    "heightUnit": "yvdljn",
    "weightUnit": "kg"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/packaging/respond

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

requestId   string     

Identifiant de la demande d’emballage. Example: 01971a9f-0a73-7000-8000-0c9a4f64b333

length   number     

Longueur du colis. Example: 40

width   number     

Largeur du colis. Example: 30

height   number     

Hauteur du colis. Example: 20

weight   number     

Poids du colis. Example: 4.5

lengthUnit   string  optional    

optional UnitΓ© des dimensions. Example: cm

widthUnit   string  optional    

Must not be greater than 10 characters. Example: bngzmi

heightUnit   string  optional    

Must not be greater than 10 characters. Example: yvdljn

weightUnit   string  optional    

optional UnitΓ© du poids. Example: kg

GET api/v1/packaging/seller/requests

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/packaging/seller/requests" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/seller/requests"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/packaging/seller/requests

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/packaging/buyer/requests

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/packaging/buyer/requests" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/packaging/buyer/requests"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/packaging/buyer/requests

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Livraison et transporteurs

GET api/v1/package-deliveries

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/package-deliveries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-deliveries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/package-deliveries

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/package-deliveries

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/package-deliveries" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "provider=architecto"\
    --form "shipment_id=b"\
    --form "tracking_pin=n"\
    --form "status=created"\
    --form "created_by_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "command_seller_id=architecto"\
    --form "conformity_command_seller_id=977e5426-8d13-3824-86aa-b092f8ae52c5"\
    --form "label=y"\
    --form "tracking_url=http://www.ernser.org/harum-mollitia-modi-deserunt-aut-ab-provident-perspiciatis-quo.html"\
    --form "label_file=@/tmp/php2exu1B" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-deliveries"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('provider', 'architecto');
body.append('shipment_id', 'b');
body.append('tracking_pin', 'n');
body.append('status', 'created');
body.append('created_by_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('command_seller_id', 'architecto');
body.append('conformity_command_seller_id', '977e5426-8d13-3824-86aa-b092f8ae52c5');
body.append('label', 'y');
body.append('tracking_url', 'http://www.ernser.org/harum-mollitia-modi-deserunt-aut-ab-provident-perspiciatis-quo.html');
body.append('label_file', document.querySelector('input[name="label_file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/package-deliveries

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

provider   string  optional    

optional COLISSIMO, MONDIAL_RELAY, CANADA_POST or OTHER. Example: architecto

shipment_id   string  optional    

Must not be greater than 255 characters. Example: b

tracking_pin   string  optional    

Must not be greater than 255 characters. Example: n

shipment_info   object  optional    
order_data   object  optional    
status   string  optional    

Example: created

Must be one of:
  • pending
  • processing
  • created
  • refunded
  • failed
created_by_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_seller_id   uuid  optional    

optional Seller command linked to this package. Example: architecto

conformity_command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

label   string  optional    

Must not be greater than 255 characters. Example: y

label_file   file  optional    

optional Provider label stored on R2. Example: /tmp/php2exu1B

tracking_url   string  optional    

Must be a valid URL. Must not be greater than 255 characters. Example: http://www.ernser.org/harum-mollitia-modi-deserunt-aut-ab-provident-perspiciatis-quo.html

GET api/v1/package-deliveries/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/package-deliveries/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-deliveries/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/package-deliveries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package delivery. Example: architecto

PUT api/v1/package-deliveries/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/package-deliveries/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "provider=architecto"\
    --form "shipment_id=b"\
    --form "tracking_pin=n"\
    --form "status=failed"\
    --form "created_by_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "command_seller_id=architecto"\
    --form "conformity_command_seller_id=977e5426-8d13-3824-86aa-b092f8ae52c5"\
    --form "label=y"\
    --form "tracking_url=http://www.ernser.org/harum-mollitia-modi-deserunt-aut-ab-provident-perspiciatis-quo.html"\
    --form "label_file=@/tmp/phpt4Bs9X" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-deliveries/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('provider', 'architecto');
body.append('shipment_id', 'b');
body.append('tracking_pin', 'n');
body.append('status', 'failed');
body.append('created_by_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('command_seller_id', 'architecto');
body.append('conformity_command_seller_id', '977e5426-8d13-3824-86aa-b092f8ae52c5');
body.append('label', 'y');
body.append('tracking_url', 'http://www.ernser.org/harum-mollitia-modi-deserunt-aut-ab-provident-perspiciatis-quo.html');
body.append('label_file', document.querySelector('input[name="label_file"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/package-deliveries/{id}

PATCH api/v1/package-deliveries/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package delivery. Example: architecto

Body Parameters

provider   string  optional    

optional COLISSIMO, MONDIAL_RELAY, CANADA_POST or OTHER. Example: architecto

shipment_id   string  optional    

Must not be greater than 255 characters. Example: b

tracking_pin   string  optional    

Must not be greater than 255 characters. Example: n

shipment_info   object  optional    
order_data   object  optional    
status   string  optional    

Example: failed

Must be one of:
  • pending
  • processing
  • created
  • refunded
  • failed
created_by_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_seller_id   uuid  optional    

optional Seller command linked to this package. Example: architecto

conformity_command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

label   string  optional    

Must not be greater than 255 characters. Example: y

label_file   file  optional    

optional Provider label stored on R2. Example: /tmp/phpt4Bs9X

tracking_url   string  optional    

Must be a valid URL. Must not be greater than 255 characters. Example: http://www.ernser.org/harum-mollitia-modi-deserunt-aut-ab-provident-perspiciatis-quo.html

DELETE api/v1/package-deliveries/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/package-deliveries/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-deliveries/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/package-deliveries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package delivery. Example: architecto

GET api/v1/delivery/canada-poste/get-rates

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-rates?weight=4326.41688&country=architecto&mode=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"weight\": 27,
    \"country\": \"ng\",
    \"mode\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-rates"
);

const params = {
    "weight": "4326.41688",
    "country": "architecto",
    "mode": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "weight": 27,
    "country": "ng",
    "mode": "z"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "provider": "CANADA_POST",
        "service_code": "DOM.EP",
        "price": "8.55",
        "currency": "CAD",
        "weight": 27,
        "priceInLocalCurrency": 8.55,
        "localCurrency": "CAD",
        "localCurrencyAlias": "$"
    }
}
 

Request      

GET api/v1/delivery/canada-poste/get-rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

weight   number     

Package weight. Example: 4326.41688

country   string  optional    

optional Destination country ISO code. Example: architecto

mode   string  optional    

optional Mondial Relay delivery mode. Example: architecto

Body Parameters

weight   number     

Must be at least 0. Example: 27

country   string  optional    

Must be 2 characters. Example: ng

mode   string  optional    

Must not be greater than 50 characters. Example: z

GET api/v1/delivery/canada-poste/get-nc-rates

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-nc-rates?originPostalCode=architecto&postalCode=architecto&weight=4326.41688" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"originPostalCode\": \"bngzmiyvdljnikhw\",
    \"postalCode\": \"aykcmyuwpwlvqwrs\",
    \"weight\": 20,
    \"country\": \"tc\",
    \"serviceCode\": \"p\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-nc-rates"
);

const params = {
    "originPostalCode": "architecto",
    "postalCode": "architecto",
    "weight": "4326.41688",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "originPostalCode": "bngzmiyvdljnikhw",
    "postalCode": "aykcmyuwpwlvqwrs",
    "weight": 20,
    "country": "tc",
    "serviceCode": "p"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "provider": "CANADA_POST",
        "status": "failed",
        "raw": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<messages xmlns=\"http://www.canadapost.ca/ws/messages\">\n<message>\n<code>Server</code>\n<description>illegal character '{' at offset 0 of /rs/ship/price</description></message></messages>",
        "http_status": 500
    }
}
 

Request      

GET api/v1/delivery/canada-poste/get-nc-rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

originPostalCode   string     

Origin postal code. Example: architecto

postalCode   string     

Destination postal code. Example: architecto

weight   number     

Package weight in grams. Example: 4326.41688

Body Parameters

originPostalCode   string     

Must not be greater than 20 characters. Example: bngzmiyvdljnikhw

postalCode   string     

Must not be greater than 20 characters. Example: aykcmyuwpwlvqwrs

weight   number     

Must be at least 1. Must not be greater than 30000. Example: 20

country   string  optional    

Must be 2 characters. Example: tc

serviceCode   string  optional    

Must not be greater than 50 characters. Example: p

GET api/v1/delivery/canada-poste/create-ncexpedition

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/create-ncexpedition" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"order_data\": {
        \"weight\": 1
    },
    \"command_seller_id\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"conformity_command_seller_id\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"created_by_id\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"orderData\": [],
    \"commandSeller\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/create-ncexpedition"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "order_data": {
        "weight": 1
    },
    "command_seller_id": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "conformity_command_seller_id": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "created_by_id": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "orderData": [],
    "commandSeller": "architecto"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "order_data": [
            "The order data field is required."
        ],
        "command_seller_id": [
            "The command seller id field must be a valid UUID."
        ],
        "conformity_command_seller_id": [
            "The selected conformity command seller id is invalid."
        ]
    }
}
 

Request      

GET api/v1/delivery/canada-poste/create-ncexpedition

POST api/v1/delivery/canada-poste/create-ncexpedition

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

order_data   object     
weight   number  optional    

Must not be greater than 30000. Example: 1

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

conformity_command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

created_by_id   string  optional    

Must be a valid UUID. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

orderData   object     

Non-contract shipment payload forwarded to Canada Post.

commandSeller   uuid  optional    

optional Linked seller command. Example: architecto

POST api/v1/delivery/canada-poste/process-ncexpedition

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/process-ncexpedition?id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/process-ncexpedition"
);

const params = {
    "id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/delivery/canada-poste/process-ncexpedition

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

id   string     

uuid Package delivery id. Example: architecto

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

GET api/v1/delivery/canada-poste/get-expedition-label

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-expedition-label?id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-expedition-label"
);

const params = {
    "id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "id": [
            "The selected id is invalid."
        ]
    }
}
 

Request      

GET api/v1/delivery/canada-poste/get-expedition-label

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

id   string     

uuid Package delivery id. Example: architecto

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

GET api/v1/delivery/canada-poste/get-shipment-details

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-shipment-details?id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-shipment-details"
);

const params = {
    "id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "id": [
            "The selected id is invalid."
        ]
    }
}
 

Request      

GET api/v1/delivery/canada-poste/get-shipment-details

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

id   string     

uuid Package delivery id. Example: architecto

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

GET api/v1/delivery/canada-poste/get-shipment-receipt

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-shipment-receipt?id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-shipment-receipt"
);

const params = {
    "id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "id": [
            "The selected id is invalid."
        ]
    }
}
 

Request      

GET api/v1/delivery/canada-poste/get-shipment-receipt

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

id   string     

uuid Package delivery id. Example: architecto

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

GET api/v1/delivery/canada-poste/get-tracking-summury

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-tracking-summury?id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/get-tracking-summury"
);

const params = {
    "id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "id": [
            "The selected id is invalid."
        ]
    }
}
 

Request      

GET api/v1/delivery/canada-poste/get-tracking-summury

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

id   string     

uuid Package delivery id. Example: architecto

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

POST api/v1/delivery/canada-poste/request-shipment-refund

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/request-shipment-refund?id=architecto&email=gbailey%40example.net" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"email\": \"ashly64@example.com\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/canada-poste/request-shipment-refund"
);

const params = {
    "id": "architecto",
    "email": "gbailey@example.net",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "email": "ashly64@example.com"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/delivery/canada-poste/request-shipment-refund

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

id   string     

uuid Package delivery id. Example: architecto

email   string     

Refund contact email. Example: gbailey@example.net

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: ashly64@example.com

GET api/v1/delivery/colissimo/get-rates

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/colissimo/get-rates?weight=4326.41688&country=architecto&mode=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"weight\": 27,
    \"country\": \"ng\",
    \"mode\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/colissimo/get-rates"
);

const params = {
    "weight": "4326.41688",
    "country": "architecto",
    "mode": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "weight": 27,
    "country": "ng",
    "mode": "z"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (400):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Oups! Cette destination n'est pas prise en charge pour le moment par Colissimo",
    "code": "HTTP_ERROR",
    "errors": []
}
 

Request      

GET api/v1/delivery/colissimo/get-rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

weight   number     

Package weight. Example: 4326.41688

country   string  optional    

optional Destination country ISO code. Example: architecto

mode   string  optional    

optional Mondial Relay delivery mode. Example: architecto

Body Parameters

weight   number     

Must be at least 0. Example: 27

country   string  optional    

Must be 2 characters. Example: ng

mode   string  optional    

Must not be greater than 50 characters. Example: z

POST api/v1/delivery/colissimo/check-generate-label

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/delivery/colissimo/check-generate-label" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"sender\": [],
    \"receiver\": [],
    \"parcel\": {
        \"weight\": 27
    },
    \"contractNumber\": \"n\",
    \"password\": \"|{+-0pBNvYgx\",
    \"command_seller_id\": \"d207102d-bce0-31f9-8c36-aa9cf4cfe75a\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/colissimo/check-generate-label"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "sender": [],
    "receiver": [],
    "parcel": {
        "weight": 27
    },
    "contractNumber": "n",
    "password": "|{+-0pBNvYgx",
    "command_seller_id": "d207102d-bce0-31f9-8c36-aa9cf4cfe75a"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/delivery/colissimo/check-generate-label

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

sender   object     

Sender address.

receiver   object     

Receiver address.

parcel   object     

Parcel dimensions and product code.

weight   number     

Must be at least 0.01. Example: 27

outputFormat   object  optional    
letter   object  optional    
contractNumber   string  optional    

Must not be greater than 100 characters. Example: n

password   string  optional    

Must not be greater than 255 characters. Example: |{+-0pBNvYgx

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d207102d-bce0-31f9-8c36-aa9cf4cfe75a

POST api/v1/delivery/colissimo/generate-label

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/delivery/colissimo/generate-label" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"sender\": [],
    \"receiver\": [],
    \"parcel\": {
        \"weight\": 27
    },
    \"contractNumber\": \"n\",
    \"password\": \"|{+-0pBNvYgx\",
    \"command_seller_id\": \"d207102d-bce0-31f9-8c36-aa9cf4cfe75a\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/colissimo/generate-label"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "sender": [],
    "receiver": [],
    "parcel": {
        "weight": 27
    },
    "contractNumber": "n",
    "password": "|{+-0pBNvYgx",
    "command_seller_id": "d207102d-bce0-31f9-8c36-aa9cf4cfe75a"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/delivery/colissimo/generate-label

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

sender   object     

Sender address.

receiver   object     

Receiver address.

parcel   object     

Parcel dimensions and product code.

weight   number     

Must be at least 0.01. Example: 27

outputFormat   object  optional    
letter   object  optional    
contractNumber   string  optional    

Must not be greater than 100 characters. Example: n

password   string  optional    

Must not be greater than 255 characters. Example: |{+-0pBNvYgx

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d207102d-bce0-31f9-8c36-aa9cf4cfe75a

GET api/v1/delivery/colissimo/point-retrait

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/colissimo/point-retrait?address=architecto&zipCode=architecto&city=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"address\": \"b\",
    \"zipCode\": \"ngzmiyvdljnikhwa\",
    \"city\": \"y\",
    \"countryCode\": \"kc\",
    \"weight\": 38,
    \"isConformity\": true
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/colissimo/point-retrait"
);

const params = {
    "address": "architecto",
    "zipCode": "architecto",
    "city": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "address": "b",
    "zipCode": "ngzmiyvdljnikhwa",
    "city": "y",
    "countryCode": "kc",
    "weight": 38,
    "isConformity": true
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "provider": "COLISSIMO",
        "raw": "",
        "http_status": 405
    }
}
 

Request      

GET api/v1/delivery/colissimo/point-retrait

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

address   string     

Search address. Example: architecto

zipCode   string     

Postal code. Example: architecto

city   string     

City. Example: architecto

Body Parameters

address   string     

Must not be greater than 255 characters. Example: b

zipCode   string     

Must not be greater than 20 characters. Example: ngzmiyvdljnikhwa

city   string     

Must not be greater than 150 characters. Example: y

countryCode   string  optional    

Must be 2 characters. Example: kc

weight   number  optional    

Must be at least 0. Example: 38

isConformity   boolean  optional    

Example: true

GET api/v1/delivery/mondial-relay/get-rates

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/get-rates?weight=4326.41688&country=architecto&mode=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"weight\": 27,
    \"country\": \"ng\",
    \"mode\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/get-rates"
);

const params = {
    "weight": "4326.41688",
    "country": "architecto",
    "mode": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "weight": 27,
    "country": "ng",
    "mode": "z"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (400):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Oups! Cette destination n'est pas prise en charge pour le moment par Mondial Relay",
    "code": "HTTP_ERROR",
    "errors": []
}
 

Request      

GET api/v1/delivery/mondial-relay/get-rates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

weight   number     

Package weight. Example: 4326.41688

country   string  optional    

optional Destination country ISO code. Example: architecto

mode   string  optional    

optional Mondial Relay delivery mode. Example: architecto

Body Parameters

weight   number     

Must be at least 0. Example: 27

country   string  optional    

Must be 2 characters. Example: ng

mode   string  optional    

Must not be greater than 50 characters. Example: z

GET api/v1/delivery/mondial-relay/get-rates-v2

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/get-rates-v2?weight=4326.41688&country=architecto&mode=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"weight\": 27,
    \"country\": \"ng\",
    \"mode\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/get-rates-v2"
);

const params = {
    "weight": "4326.41688",
    "country": "architecto",
    "mode": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "weight": 27,
    "country": "ng",
    "mode": "z"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (400):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Oups! Cette destination n'est pas prise en charge pour le moment par Mondial Relay",
    "code": "HTTP_ERROR",
    "errors": []
}
 

Request      

GET api/v1/delivery/mondial-relay/get-rates-v2

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

weight   number     

Package weight. Example: 4326.41688

country   string  optional    

optional Destination country ISO code. Example: architecto

mode   string  optional    

optional Mondial Relay delivery mode. Example: architecto

Body Parameters

weight   number     

Must be at least 0. Example: 27

country   string  optional    

Must be 2 characters. Example: ng

mode   string  optional    

Must not be greater than 50 characters. Example: z

GET api/v1/delivery/mondial-relay/search-zip-code

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/search-zip-code?country=architecto&zipCode=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"country\": \"bn\",
    \"zipCode\": \"gzmiyvdljnikhway\",
    \"city\": \"k\",
    \"weight\": 54,
    \"isConformity\": false
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/search-zip-code"
);

const params = {
    "country": "architecto",
    "zipCode": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "country": "bn",
    "zipCode": "gzmiyvdljnikhway",
    "city": "k",
    "weight": 54,
    "isConformity": false
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "provider": "MONDIAL_RELAY",
        "action": "WSI2_RechercheCP",
        "head": {
            "@attributes": {
                "id": "Head1"
            },
            "meta": {
                "@attributes": {
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                }
            },
            "title": "\n\tError\n",
            "script": {
                "@attributes": {
                    "type": "text/javascript",
                    "src": "/ruxitagentjs_ICA7NVfqrux_10341260622154106.js",
                    "data-dtconfig": "rid=RID_-448304516|rpid=-755407460|domain=mondialrelay.com|reportUrl=/rb_bf13585nfv|app=3e929e8638874d3a|cuc=m67xbjzu|owasp=1|mel=100000|expw=1|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1783600897215|tp=500,50,0|rdnt=1|uxrgce=1|srbbv=2|agentUri=/ruxitagentjs_ICA7NVfqrux_10341260622154106.js"
                }
            }
        },
        "body": {
            "form": {
                "@attributes": {
                    "name": "MainForm",
                    "method": "post",
                    "action": "./500.aspx?ErrId=202607172003406083-juWXGW4F",
                    "id": "MainForm"
                },
                "input": [
                    {
                        "@attributes": {
                            "type": "hidden",
                            "name": "__VIEWSTATE",
                            "id": "__VIEWSTATE",
                            "value": "/wEPDwUKMTc2MTg4NDc4NmRkF8dhrTFvAI8p4CS/o3jbOV8HUW/DWkqABqZiZWqZwA4="
                        }
                    },
                    {
                        "@attributes": {
                            "type": "hidden",
                            "name": "__VIEWSTATEGENERATOR",
                            "id": "__VIEWSTATEGENERATOR",
                            "value": "7ABC8D36"
                        }
                    }
                ],
                "div": "\n        Error 500\n    "
            }
        }
    }
}
 

Request      

GET api/v1/delivery/mondial-relay/search-zip-code

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

country   string     

Destination country ISO code. Example: architecto

zipCode   string     

Postal code. Example: architecto

Body Parameters

country   string     

Must be 2 characters. Example: bn

zipCode   string     

Must not be greater than 20 characters. Example: gzmiyvdljnikhway

city   string  optional    

Must not be greater than 150 characters. Example: k

weight   number  optional    

Must be at least 0. Example: 54

isConformity   boolean  optional    

Example: false

GET api/v1/delivery/mondial-relay/search-point-relais

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/search-point-relais?country=architecto&zipCode=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"country\": \"bn\",
    \"zipCode\": \"gzmiyvdljnikhway\",
    \"city\": \"k\",
    \"weight\": 54,
    \"isConformity\": false
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/search-point-relais"
);

const params = {
    "country": "architecto",
    "zipCode": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "country": "bn",
    "zipCode": "gzmiyvdljnikhway",
    "city": "k",
    "weight": 54,
    "isConformity": false
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "provider": "MONDIAL_RELAY",
        "action": "WSI4_PointRelais_Recherche",
        "head": {
            "@attributes": {
                "id": "Head1"
            },
            "meta": {
                "@attributes": {
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                }
            },
            "title": "\n\tError\n",
            "script": {
                "@attributes": {
                    "type": "text/javascript",
                    "src": "/ruxitagentjs_ICA7NVfqrux_10341260622154106.js",
                    "data-dtconfig": "rid=RID_1273314236|rpid=1626970117|domain=mondialrelay.com|reportUrl=/rb_bf13585nfv|app=3e929e8638874d3a|cuc=m67xbjzu|owasp=1|mel=100000|expw=1|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1783600897215|tp=500,50,0|rdnt=1|uxrgce=1|srbbv=2|agentUri=/ruxitagentjs_ICA7NVfqrux_10341260622154106.js"
                }
            }
        },
        "body": {
            "form": {
                "@attributes": {
                    "name": "MainForm",
                    "method": "post",
                    "action": "./500.aspx?ErrId=202607172003406874-Un3CUg1N",
                    "id": "MainForm"
                },
                "input": [
                    {
                        "@attributes": {
                            "type": "hidden",
                            "name": "__VIEWSTATE",
                            "id": "__VIEWSTATE",
                            "value": "/wEPDwUKMTc2MTg4NDc4NmRkF8dhrTFvAI8p4CS/o3jbOV8HUW/DWkqABqZiZWqZwA4="
                        }
                    },
                    {
                        "@attributes": {
                            "type": "hidden",
                            "name": "__VIEWSTATEGENERATOR",
                            "id": "__VIEWSTATEGENERATOR",
                            "value": "7ABC8D36"
                        }
                    }
                ],
                "div": "\n        Error 500\n    "
            }
        }
    }
}
 

Request      

GET api/v1/delivery/mondial-relay/search-point-relais

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

country   string     

Destination country ISO code. Example: architecto

zipCode   string     

Postal code. Example: architecto

Body Parameters

country   string     

Must be 2 characters. Example: bn

zipCode   string     

Must not be greater than 20 characters. Example: gzmiyvdljnikhway

city   string  optional    

Must not be greater than 150 characters. Example: k

weight   number  optional    

Must be at least 0. Example: 54

isConformity   boolean  optional    

Example: false

GET api/v1/delivery/mondial-relay/tracing-expedition

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/tracing-expedition?expeditionNumber=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"expeditionNumber\": \"b\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/tracing-expedition"
);

const params = {
    "expeditionNumber": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "expeditionNumber": "b"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "provider": "MONDIAL_RELAY",
        "action": "WSI2_TracingColisDetaille",
        "head": {
            "@attributes": {
                "id": "Head1"
            },
            "meta": {
                "@attributes": {
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                }
            },
            "title": "\n\tError\n",
            "script": {
                "@attributes": {
                    "type": "text/javascript",
                    "src": "/ruxitagentjs_ICA7NVfqrux_10341260622154106.js",
                    "data-dtconfig": "rid=RID_-2011452698|rpid=-815612075|domain=mondialrelay.com|reportUrl=/rb_bf13585nfv|app=3e929e8638874d3a|cuc=m67xbjzu|owasp=1|mel=100000|expw=1|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1783600897215|tp=500,50,0|rdnt=1|uxrgce=1|srbbv=2|agentUri=/ruxitagentjs_ICA7NVfqrux_10341260622154106.js"
                }
            }
        },
        "body": {
            "form": {
                "@attributes": {
                    "name": "MainForm",
                    "method": "post",
                    "action": "./500.aspx?ErrId=202607172003408369-ZUyQKiHX",
                    "id": "MainForm"
                },
                "input": [
                    {
                        "@attributes": {
                            "type": "hidden",
                            "name": "__VIEWSTATE",
                            "id": "__VIEWSTATE",
                            "value": "/wEPDwUKMTc2MTg4NDc4NmRkLuu73pECTDWqHU6/mEIcZleWGgQo2l9/QTjMt0OgM3E="
                        }
                    },
                    {
                        "@attributes": {
                            "type": "hidden",
                            "name": "__VIEWSTATEGENERATOR",
                            "id": "__VIEWSTATEGENERATOR",
                            "value": "7ABC8D36"
                        }
                    }
                ],
                "div": "\n        Error 500\n    "
            }
        }
    }
}
 

Request      

GET api/v1/delivery/mondial-relay/tracing-expedition

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

expeditionNumber   string     

Mondial Relay expedition number. Example: architecto

Body Parameters

expeditionNumber   string     

Must not be greater than 100 characters. Example: b

POST api/v1/delivery/mondial-relay/v2/shipment

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/v2/shipment" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reference\": \"architecto\",
    \"weight\": 4326.41688,
    \"brand_id\": \"b\",
    \"command_seller_id\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/v2/shipment"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "reference": "architecto",
    "weight": 4326.41688,
    "brand_id": "b",
    "command_seller_id": "a4855dc5-0acb-33c3-b921-f4291f719ca0"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/delivery/mondial-relay/v2/shipment

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

reference   string  optional    

optional Merchant order reference. Example: architecto

weight   number     

Package weight in grams. Example: 4326.41688

brand_id   string  optional    

Must not be greater than 100 characters. Example: b

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

payload   object  optional    

POST api/v1/delivery/mondial-relay/webhook

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/webhook" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"shipment\": {
        \"no\": \"architecto\",
        \"status\": \"architecto\"
    }
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/delivery/mondial-relay/webhook"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "shipment": {
        "no": "architecto",
        "status": "architecto"
    }
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/delivery/mondial-relay/webhook

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

shipment   object     

Mondial Relay shipment payload.

no   string     

Expedition number. Example: architecto

status   string     

Provider shipment status. Example: architecto

GET api/v1/package-tracking-field-values

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/package-tracking-field-values" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/package-tracking-field-values

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/package-tracking-field-values

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"package_tracking_field_id\": \"architecto\",
    \"command_seller_id\": \"architecto\",
    \"status\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "package_tracking_field_id": "architecto",
    "command_seller_id": "architecto",
    "status": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/package-tracking-field-values

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

package_tracking_field_id   uuid     

Tracking step UUID. Example: architecto

command_seller_id   uuid     

Seller command UUID. Example: architecto

status   string     

o or n. Example: architecto

GET api/v1/package-tracking-field-values/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/package-tracking-field-values/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/package-tracking-field-values/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package tracking field value. Example: architecto

PUT api/v1/package-tracking-field-values/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"package_tracking_field_id\": \"architecto\",
    \"command_seller_id\": \"architecto\",
    \"status\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "package_tracking_field_id": "architecto",
    "command_seller_id": "architecto",
    "status": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/package-tracking-field-values/{id}

PATCH api/v1/package-tracking-field-values/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package tracking field value. Example: architecto

Body Parameters

package_tracking_field_id   uuid     

Tracking step UUID. Example: architecto

command_seller_id   uuid     

Seller command UUID. Example: architecto

status   string     

o or n. Example: architecto

DELETE api/v1/package-tracking-field-values/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/package-tracking-field-values/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/package-tracking-field-values/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package tracking field value. Example: architecto

GET api/v1/reference/mean-deliveries

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019200d9-7d22-7d94-8a0e-2040dc1ed639",
            "wording": "Mondial Relay",
            "cover_picture": "meanDelivery/66e9b08168391-mondial_relay.png",
            "cover_picture_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/meanDelivery/66e9b08168391-mondial_relay.png",
            "position": 1,
            "is_active": "n",
            "countries": [
                {
                    "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Italie",
                    "indicative": "39",
                    "is_active": "o",
                    "iso_code": "it",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "France",
                    "indicative": "33",
                    "is_active": "o",
                    "iso_code": "fr",
                    "mask": 9,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Belgique",
                    "indicative": "32",
                    "is_active": "o",
                    "iso_code": "be",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Luxembourg",
                    "indicative": "352",
                    "is_active": "o",
                    "iso_code": "lu",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "destination_countries": [
                {
                    "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Italie",
                    "indicative": "39",
                    "is_active": "o",
                    "iso_code": "it",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "France",
                    "indicative": "33",
                    "is_active": "o",
                    "iso_code": "fr",
                    "mask": 9,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Belgique",
                    "indicative": "32",
                    "is_active": "o",
                    "iso_code": "be",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Luxembourg",
                    "indicative": "352",
                    "is_active": "o",
                    "iso_code": "lu",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "created_at": "2024-09-17T16:38:24.000000Z",
            "updated_at": "2024-09-17T16:38:24.000000Z"
        },
        {
            "id": "019200da-7f0b-75d2-a890-8cc39465d4fc",
            "wording": "Colissimo",
            "cover_picture": "meanDelivery/66e9b0c383bd3-colissimo.png",
            "cover_picture_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/meanDelivery/66e9b0c383bd3-colissimo.png",
            "position": 2,
            "is_active": "o",
            "countries": [
                {
                    "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Italie",
                    "indicative": "39",
                    "is_active": "o",
                    "iso_code": "it",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "France",
                    "indicative": "33",
                    "is_active": "o",
                    "iso_code": "fr",
                    "mask": 9,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Belgique",
                    "indicative": "32",
                    "is_active": "o",
                    "iso_code": "be",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Luxembourg",
                    "indicative": "352",
                    "is_active": "o",
                    "iso_code": "lu",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "destination_countries": [
                {
                    "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Italie",
                    "indicative": "39",
                    "is_active": "o",
                    "iso_code": "it",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "France",
                    "indicative": "33",
                    "is_active": "o",
                    "iso_code": "fr",
                    "mask": 9,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Belgique",
                    "indicative": "32",
                    "is_active": "o",
                    "iso_code": "be",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Luxembourg",
                    "indicative": "352",
                    "is_active": "o",
                    "iso_code": "lu",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "created_at": "2024-09-17T16:39:31.000000Z",
            "updated_at": "2024-09-17T16:39:31.000000Z"
        },
        {
            "id": "019200db-0a3a-7d93-9af8-ea0107f451b3",
            "wording": "Poste Canada",
            "cover_picture": "meanDelivery/66e9b0e706312-poste_canada.jpg",
            "cover_picture_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/meanDelivery/66e9b0e706312-poste_canada.jpg",
            "position": 3,
            "is_active": "o",
            "countries": [
                {
                    "id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "region_id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "wording": "Canada",
                    "indicative": "1",
                    "is_active": "n",
                    "iso_code": "ca",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "destination_countries": [
                {
                    "id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "region_id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "wording": "Canada",
                    "indicative": "1",
                    "is_active": "n",
                    "iso_code": "ca",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "created_at": "2024-09-17T16:40:06.000000Z",
            "updated_at": "2024-09-17T16:40:06.000000Z"
        },
        {
            "id": "019200db-a100-74c0-a7cc-acb2742eb661",
            "wording": "Colivréo",
            "cover_picture": "meanDelivery/66e9b10d9909f-colivreo.png",
            "cover_picture_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/meanDelivery/66e9b10d9909f-colivreo.png",
            "position": 4,
            "is_active": "n",
            "countries": [
                {
                    "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Italie",
                    "indicative": "39",
                    "is_active": "o",
                    "iso_code": "it",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "France",
                    "indicative": "33",
                    "is_active": "o",
                    "iso_code": "fr",
                    "mask": 9,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Belgique",
                    "indicative": "32",
                    "is_active": "o",
                    "iso_code": "be",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Luxembourg",
                    "indicative": "352",
                    "is_active": "o",
                    "iso_code": "lu",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "region_id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "wording": "Canada",
                    "indicative": "1",
                    "is_active": "n",
                    "iso_code": "ca",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7a26-b4e0-8a0021af7442",
                    "region_id": "018d1693-0886-75d6-92f7-61493085b589",
                    "wording": "Togo",
                    "indicative": "228",
                    "is_active": "n",
                    "iso_code": "tg",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "destination_countries": [
                {
                    "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Italie",
                    "indicative": "39",
                    "is_active": "o",
                    "iso_code": "it",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "France",
                    "indicative": "33",
                    "is_active": "o",
                    "iso_code": "fr",
                    "mask": 9,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Belgique",
                    "indicative": "32",
                    "is_active": "o",
                    "iso_code": "be",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                    "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "wording": "Luxembourg",
                    "indicative": "352",
                    "is_active": "o",
                    "iso_code": "lu",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018d1693-0886-7abf-935d-4773c99f8203",
                    "region_id": "018d1693-0886-79d7-907f-577e8ba01c83",
                    "wording": "Canada",
                    "indicative": "1",
                    "is_active": "n",
                    "iso_code": "ca",
                    "mask": 10,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                },
                {
                    "id": "018f8706-9cbb-7a26-b4e0-8a0021af7442",
                    "region_id": "018d1693-0886-75d6-92f7-61493085b589",
                    "wording": "Togo",
                    "indicative": "228",
                    "is_active": "n",
                    "iso_code": "tg",
                    "mask": 8,
                    "language": "fr",
                    "currency": "EUR",
                    "created_at": "2026-07-17T18:03:18.000000Z",
                    "updated_at": "2026-07-17T18:03:18.000000Z"
                }
            ],
            "created_at": "2024-09-17T16:40:45.000000Z",
            "updated_at": "2024-09-17T16:40:45.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/mean-deliveries

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/mean-deliveries

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "wording=architecto"\
    --form "cover_picture=b"\
    --form "position=39"\
    --form "is_active=n"\
    --form "countries[]=architecto"\
    --form "destination_countries[]=architecto"\
    --form "file=@/tmp/phpIlzOFM" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('wording', 'architecto');
body.append('cover_picture', 'b');
body.append('position', '39');
body.append('is_active', 'n');
body.append('countries[]', 'architecto');
body.append('destination_countries[]', 'architecto');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/reference/mean-deliveries

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

wording   string     

Delivery method name. Example: architecto

file   file  optional    

optional Cover picture stored on R2. Example: /tmp/phpIlzOFM

cover_picture   string  optional    

Must not be greater than 255 characters. Example: b

position   integer  optional    

Must be at least 0. Example: 39

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n
countries   string[]  optional    

optional Source country UUIDs.

destination_countries   string[]  optional    

optional Destination country UUIDs.

GET api/v1/reference/mean-deliveries/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries/019200da-7f0b-75d2-a890-8cc39465d4fc" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries/019200da-7f0b-75d2-a890-8cc39465d4fc"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019200da-7f0b-75d2-a890-8cc39465d4fc",
        "wording": "Colissimo",
        "cover_picture": "meanDelivery/66e9b0c383bd3-colissimo.png",
        "cover_picture_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/meanDelivery/66e9b0c383bd3-colissimo.png",
        "position": 2,
        "is_active": "o",
        "countries": [
            {
                "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Italie",
                "indicative": "39",
                "is_active": "o",
                "iso_code": "it",
                "mask": 10,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "France",
                "indicative": "33",
                "is_active": "o",
                "iso_code": "fr",
                "mask": 9,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Belgique",
                "indicative": "32",
                "is_active": "o",
                "iso_code": "be",
                "mask": 8,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Luxembourg",
                "indicative": "352",
                "is_active": "o",
                "iso_code": "lu",
                "mask": 8,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            }
        ],
        "destination_countries": [
            {
                "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Italie",
                "indicative": "39",
                "is_active": "o",
                "iso_code": "it",
                "mask": 10,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "France",
                "indicative": "33",
                "is_active": "o",
                "iso_code": "fr",
                "mask": 9,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Belgique",
                "indicative": "32",
                "is_active": "o",
                "iso_code": "be",
                "mask": 8,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Luxembourg",
                "indicative": "352",
                "is_active": "o",
                "iso_code": "lu",
                "mask": 8,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            }
        ],
        "created_at": "2024-09-17T16:39:31.000000Z",
        "updated_at": "2024-09-17T16:39:31.000000Z"
    }
}
 

Request      

GET api/v1/reference/mean-deliveries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean delivery. Example: 019200da-7f0b-75d2-a890-8cc39465d4fc

PUT api/v1/reference/mean-deliveries/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries/019200da-7f0b-75d2-a890-8cc39465d4fc" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "wording=architecto"\
    --form "cover_picture=b"\
    --form "position=39"\
    --form "is_active=o"\
    --form "countries[]=architecto"\
    --form "destination_countries[]=architecto"\
    --form "file=@/tmp/phpKWAbrf" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries/019200da-7f0b-75d2-a890-8cc39465d4fc"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('wording', 'architecto');
body.append('cover_picture', 'b');
body.append('position', '39');
body.append('is_active', 'o');
body.append('countries[]', 'architecto');
body.append('destination_countries[]', 'architecto');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/reference/mean-deliveries/{id}

PATCH api/v1/reference/mean-deliveries/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean delivery. Example: 019200da-7f0b-75d2-a890-8cc39465d4fc

Body Parameters

wording   string     

Delivery method name. Example: architecto

file   file  optional    

optional Cover picture stored on R2. Example: /tmp/phpKWAbrf

cover_picture   string  optional    

Must not be greater than 255 characters. Example: b

position   integer  optional    

Must be at least 0. Example: 39

is_active   string  optional    

Example: o

Must be one of:
  • o
  • n
countries   string[]  optional    

optional Source country UUIDs.

destination_countries   string[]  optional    

optional Destination country UUIDs.

DELETE api/v1/reference/mean-deliveries/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries/019200da-7f0b-75d2-a890-8cc39465d4fc" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-deliveries/019200da-7f0b-75d2-a890-8cc39465d4fc"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/mean-deliveries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean delivery. Example: 019200da-7f0b-75d2-a890-8cc39465d4fc

GET api/v1/reference/package-trackings

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/package-trackings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018da6d6-214a-73ec-99da-052e3c35eb64",
            "wording": "Colis sans contrôle de conformité",
            "is_active": "o",
            "fields": [
                {
                    "id": "018da6d6-214a-7f1a-8fd0-cb9bd93dc80e",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "Préparation de la commande",
                    "is_active": "o",
                    "position": 1,
                    "status": 1,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-7da8-8030-5f93da09ea4c",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "Colis remis au transporteur ",
                    "is_active": "o",
                    "position": 2,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-7f7d-8117-a9d5c7d1106f",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "Suivi du colis pendant son trajet",
                    "is_active": "o",
                    "position": 3,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-7e34-a0c0-73a600ac7778",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "Livraison",
                    "is_active": "o",
                    "position": 4,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-78bb-98f2-d3dff78d7864",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "L’acheteur a confirmé la livraison",
                    "is_active": "o",
                    "position": 5,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-75bb-bdfd-ab13c035786e",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "Le vendeur est payé",
                    "is_active": "o",
                    "position": 6,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-76c6-90fa-3e10c8e53c8a",
                    "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                    "wording": "La transaction est archivé",
                    "is_active": "o",
                    "position": 7,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                }
            ],
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018da6d6-214a-7e33-afd8-77057d803a7f",
            "wording": "Colis avec contrôle de conformité",
            "is_active": "o",
            "fields": [
                {
                    "id": "018da6d6-214a-7616-9118-bf368a4b4d64",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Préparation de la commande",
                    "is_active": "o",
                    "position": 1,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Suivi du colis pendant son trajet",
                    "is_active": "o",
                    "position": 3,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Colis livré chez OCCAVERSE",
                    "is_active": "o",
                    "position": 4,
                    "status": 3,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214a-7824-906a-21c2092b644a",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Zonage arrivé : le colis arrivé en entrepôt",
                    "is_active": "o",
                    "position": 5,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214b-75f9-a53d-570351edf9d3",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Zonage arrivé : avant contrôle de conformité",
                    "is_active": "o",
                    "position": 6,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214b-764f-8039-54d4d7dbb2c4",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Contrôle de conformité en cours",
                    "is_active": "o",
                    "position": 7,
                    "status": 4,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6d6-214b-7beb-aa7d-79c8f6d280b7",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Prise en charge du colis par le transporteur",
                    "is_active": "o",
                    "position": 8,
                    "status": 6,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7358-ba05-554e64985f03",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Suivi du colis pendant son trajet",
                    "is_active": "o",
                    "position": 9,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7191-ab41-edc6c01edcfe",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Colis expédié",
                    "is_active": "o",
                    "position": 10,
                    "status": 7,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7391-8579-191ef26262f2",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "L’acheteur a confirmé la livraison",
                    "is_active": "o",
                    "position": 11,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-75d6-b76c-7bbba6206c7d",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "Le vendeur est payé",
                    "is_active": "o",
                    "position": 12,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-74fb-ac32-4545adac3ddb",
                    "package_tracking_id": "018da6d6-214a-7e33-afd8-77057d803a7f",
                    "wording": "La transaction est archivé",
                    "is_active": "o",
                    "position": 13,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                }
            ],
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
            "wording": "Colis avec contrôle de conformité - COLIVREO",
            "is_active": "o",
            "fields": [
                {
                    "id": "018da6f9-902c-7bf2-aa50-750699b23b05",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "L’acheteur a confirmé la livraison",
                    "is_active": "o",
                    "position": 1,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7f94-999b-d7288e4d5106",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Le vendeur est payé",
                    "is_active": "o",
                    "position": 2,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7ef6-96ef-10286a0569f0",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "La transaction est archivé",
                    "is_active": "o",
                    "position": 3,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7d4c-8b0a-9169a60512f7",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Préparation de la commande",
                    "is_active": "o",
                    "position": 4,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-70a4-ad36-6a1b4e0123ec",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Colis remis au transporteur ",
                    "is_active": "o",
                    "position": 5,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-78fe-8d85-29300efa0673",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Suivi du colis pendant son trajet",
                    "is_active": "o",
                    "position": 6,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7d9e-8827-f701dfd24469",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Colis livré chez OCCAVERSE",
                    "is_active": "o",
                    "position": 7,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-734d-83b1-051902ef2041",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Zonage arrivé : le colis arrivé en entrepôt",
                    "is_active": "o",
                    "position": 8,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-7dac-8a8b-1f07599db8c0",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Zonage arrivé : avant contrôle de conformité",
                    "is_active": "o",
                    "position": 9,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da6f9-902c-74a3-9c92-459376ded91b",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Contrôle de conformité en cours",
                    "is_active": "o",
                    "position": 10,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7b05-bb47-9cc5e45c551d",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Prise en charge du colis par le transporteur",
                    "is_active": "o",
                    "position": 11,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7371-a987-551d15856290",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Suivi du colis pendant son trajet",
                    "is_active": "o",
                    "position": 12,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7948-b930-643d01b432d8",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Récupération",
                    "is_active": "o",
                    "position": 13,
                    "status": 5,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7208-8a79-2430a8190edf",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Le colis est arrivé au pays du destinataire",
                    "is_active": "o",
                    "position": 14,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7a71-a3ac-be81a3bb9740",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Le colis est en cours de dédouanement",
                    "is_active": "o",
                    "position": 15,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7b9b-920d-ae3f90d03769",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Le colis est disponible à la livraison",
                    "is_active": "o",
                    "position": 16,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7b73-bd78-6e9cec3ea6f8",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Livraison et contrôle immédiat",
                    "is_active": "o",
                    "position": 17,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-742b-be22-8b4867139a55",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "L’acheteur a confirmé la livraison",
                    "is_active": "o",
                    "position": 18,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-770e-9abc-a43f75b8a1dd",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "Le vendeur est payé",
                    "is_active": "o",
                    "position": 19,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018da70c-cd94-7bf6-a3e3-d32a8da0e098",
                    "package_tracking_id": "018da6d6-214a-7e80-8e40-5ae7545c9762",
                    "wording": "La transaction est archivé",
                    "is_active": "o",
                    "position": 20,
                    "status": 0,
                    "is_last": null,
                    "created_at": "2026-07-17T18:03:38.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                }
            ],
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/package-trackings

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/package-trackings

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"is_active\": \"o\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "is_active": "o",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/package-trackings

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Tracking workflow name. Example: architecto

is_active   string  optional    

Example: o

Must be one of:
  • o
  • n
fields   string[]  optional    

optional Ordered tracking steps.

id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

wording   string  optional    

This field is required when fields is present. Must not be greater than 255 characters. Example: g

is_active   string  optional    

Example: o

Must be one of:
  • o
  • n
position   integer  optional    

Must be at least 0. Example: 12

status   integer  optional    

Must be at least 0. Example: 77

is_last   string  optional    

Example: o

Must be one of:
  • o
  • n

GET api/v1/reference/package-trackings/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/package-trackings/018da6d6-214a-73ec-99da-052e3c35eb64" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings/018da6d6-214a-73ec-99da-052e3c35eb64"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018da6d6-214a-73ec-99da-052e3c35eb64",
        "wording": "Colis sans contrôle de conformité",
        "is_active": "o",
        "fields": [
            {
                "id": "018da6d6-214a-7f1a-8fd0-cb9bd93dc80e",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "Préparation de la commande",
                "is_active": "o",
                "position": 1,
                "status": 1,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            {
                "id": "018da6d6-214a-7da8-8030-5f93da09ea4c",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "Colis remis au transporteur ",
                "is_active": "o",
                "position": 2,
                "status": 0,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            {
                "id": "018da6d6-214a-7f7d-8117-a9d5c7d1106f",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "Suivi du colis pendant son trajet",
                "is_active": "o",
                "position": 3,
                "status": 0,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            {
                "id": "018da6d6-214a-7e34-a0c0-73a600ac7778",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "Livraison",
                "is_active": "o",
                "position": 4,
                "status": 0,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            {
                "id": "018da6d6-214a-78bb-98f2-d3dff78d7864",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "L’acheteur a confirmé la livraison",
                "is_active": "o",
                "position": 5,
                "status": 0,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            {
                "id": "018da6d6-214a-75bb-bdfd-ab13c035786e",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "Le vendeur est payé",
                "is_active": "o",
                "position": 6,
                "status": 0,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            {
                "id": "018da6d6-214a-76c6-90fa-3e10c8e53c8a",
                "package_tracking_id": "018da6d6-214a-73ec-99da-052e3c35eb64",
                "wording": "La transaction est archivé",
                "is_active": "o",
                "position": 7,
                "status": 0,
                "is_last": null,
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            }
        ],
        "created_at": "2026-07-17T18:03:38.000000Z",
        "updated_at": "2026-07-17T18:03:38.000000Z"
    }
}
 

Request      

GET api/v1/reference/package-trackings/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package tracking. Example: 018da6d6-214a-73ec-99da-052e3c35eb64

PUT api/v1/reference/package-trackings/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings/018da6d6-214a-73ec-99da-052e3c35eb64" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"is_active\": \"n\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings/018da6d6-214a-73ec-99da-052e3c35eb64"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "is_active": "n",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/package-trackings/{id}

PATCH api/v1/reference/package-trackings/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package tracking. Example: 018da6d6-214a-73ec-99da-052e3c35eb64

Body Parameters

wording   string     

Tracking workflow name. Example: architecto

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n
fields   string[]  optional    

optional Ordered tracking steps.

id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

wording   string  optional    

This field is required when fields is present. Must not be greater than 255 characters. Example: g

is_active   string  optional    

Example: o

Must be one of:
  • o
  • n
position   integer  optional    

Must be at least 0. Example: 12

status   integer  optional    

Must be at least 0. Example: 77

is_last   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/reference/package-trackings/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings/018da6d6-214a-73ec-99da-052e3c35eb64" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/package-trackings/018da6d6-214a-73ec-99da-052e3c35eb64"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/package-trackings/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package tracking. Example: 018da6d6-214a-73ec-99da-052e3c35eb64

Messagerie

POST api/v1/conversations/read

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/conversations/read" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"key_conversation\": \"architecto\",
    \"user_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations/read"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "key_conversation": "architecto",
    "user_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/conversations/read

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

key_conversation   string     

Conversation key. Legacy keyconversation is accepted. Example: architecto

user_id   uuid     

Receiver UUID whose messages must be marked as read. Example: architecto

POST api/v1/conversations/l/read

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/conversations/l/read" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"key_conversation\": \"architecto\",
    \"user_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations/l/read"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "key_conversation": "architecto",
    "user_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/conversations/l/read

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

key_conversation   string     

Conversation key. Legacy keyconversation is accepted. Example: architecto

user_id   uuid     

Receiver UUID whose messages must be marked as read. Example: architecto

POST api/v1/conversations/l/new

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/conversations/l/new" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"current_user_id\": \"architecto\",
    \"user_id\": \"architecto\",
    \"seller_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"negociation_id\": \"architecto\",
    \"command_products_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"command_seller_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"wording\": \"architecto\",
    \"content\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations/l/new"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "current_user_id": "architecto",
    "user_id": "architecto",
    "seller_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "negociation_id": "architecto",
    "command_products_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "command_seller_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "wording": "architecto",
    "content": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/conversations/l/new

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

current_user_id   uuid     

Current participant UUID until auth migration is complete. Example: architecto

user_id   uuid     

Other participant UUID. Legacy user is accepted. Example: architecto

seller_id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_id   uuid  optional    

nullable Product context UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Product lot context UUID. Legacy productLot is accepted. Example: architecto

negociation_id   uuid  optional    

nullable Negotiation context UUID. Legacy negociationid is accepted. Example: architecto

command_products_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_seller_id   string  optional    

Must be a valid UUID. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

wording   string  optional    

Example: architecto

content   string  optional    

Example: architecto

GET api/v1/conversations/l/last-conversation

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/conversations/l/last-conversation" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations/l/last-conversation"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/conversations/l/last-conversation

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/conversations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/conversations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/conversations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/conversations

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/conversations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"current_user_id\": \"architecto\",
    \"user_id\": \"architecto\",
    \"seller_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"negociation_id\": \"architecto\",
    \"command_products_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"command_seller_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"wording\": \"architecto\",
    \"content\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "current_user_id": "architecto",
    "user_id": "architecto",
    "seller_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "negociation_id": "architecto",
    "command_products_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "command_seller_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "wording": "architecto",
    "content": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/conversations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

current_user_id   uuid     

Current participant UUID until auth migration is complete. Example: architecto

user_id   uuid     

Other participant UUID. Legacy user is accepted. Example: architecto

seller_id   string  optional    

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_id   uuid  optional    

nullable Product context UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Product lot context UUID. Legacy productLot is accepted. Example: architecto

negociation_id   uuid  optional    

nullable Negotiation context UUID. Legacy negociationid is accepted. Example: architecto

command_products_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_seller_id   string  optional    

Must be a valid UUID. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

wording   string  optional    

Example: architecto

content   string  optional    

Example: architecto

GET api/v1/conversations/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/conversations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/conversations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/conversations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the conversation. Example: architecto

GET api/v1/chat-messages

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/chat-messages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/chat-messages"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/chat-messages

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/chat-messages

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/chat-messages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"conversation_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"sender_id\": \"architecto\",
    \"receiver_id\": \"architecto\",
    \"product_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"product_lot_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"negociation_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"command_products_id\": \"5707ca55-f609-3528-be8b-1baeaee1567e\",
    \"command_seller_id\": \"947170af-7488-3f30-a16d-723355a9502f\",
    \"discount_id\": \"cd1eb1ea-4697-3b9a-9dd0-988044a83af6\",
    \"key_conversation\": \"architecto\",
    \"content\": \"architecto\",
    \"is_system_message\": \"n\",
    \"seen\": \"o\",
    \"reply\": \"h\",
    \"header\": \"architecto\",
    \"side\": \"n\",
    \"reply_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"seller_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"is_closed\": \"o\",
    \"discount_proposal_amount\": 76,
    \"discount_step\": 60,
    \"command_action_step\": 42,
    \"rows\": [
        {
            \"product_id\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
            \"product_lot_id\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
            \"discount_id\": \"51c7cf5e-fac2-3ac6-8ef8-61e6050503af\",
            \"quantity\": 43,
            \"price\": 39,
            \"price_in_local_currency\": 50,
            \"amount\": 62
        }
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/chat-messages"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "conversation_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "sender_id": "architecto",
    "receiver_id": "architecto",
    "product_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "product_lot_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "negociation_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "command_products_id": "5707ca55-f609-3528-be8b-1baeaee1567e",
    "command_seller_id": "947170af-7488-3f30-a16d-723355a9502f",
    "discount_id": "cd1eb1ea-4697-3b9a-9dd0-988044a83af6",
    "key_conversation": "architecto",
    "content": "architecto",
    "is_system_message": "n",
    "seen": "o",
    "reply": "h",
    "header": "architecto",
    "side": "n",
    "reply_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "seller_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "is_closed": "o",
    "discount_proposal_amount": 76,
    "discount_step": 60,
    "command_action_step": 42,
    "rows": [
        {
            "product_id": "add3503c-ebff-3875-93af-b8c6a695762b",
            "product_lot_id": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
            "discount_id": "51c7cf5e-fac2-3ac6-8ef8-61e6050503af",
            "quantity": 43,
            "price": 39,
            "price_in_local_currency": 50,
            "amount": 62
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/chat-messages

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

conversation_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

sender_id   uuid     

Sender UUID. Example: architecto

receiver_id   uuid     

Receiver UUID. Example: architecto

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

negociation_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

command_products_id   string  optional    

Must be a valid UUID. Example: 5707ca55-f609-3528-be8b-1baeaee1567e

command_seller_id   string  optional    

Must be a valid UUID. Example: 947170af-7488-3f30-a16d-723355a9502f

discount_id   string  optional    

Must be a valid UUID. Example: cd1eb1ea-4697-3b9a-9dd0-988044a83af6

key_conversation   string     

Conversation key. Legacy keyconversation is accepted. Example: architecto

content   string     

Message body. Example: architecto

is_system_message   string  optional    

Example: n

Must be one of:
  • o
  • n
seen   string  optional    

Example: o

Must be one of:
  • o
  • n
reply   string  optional    

Must not be greater than 255 characters. Example: h

header   string  optional    

Example: architecto

side   string  optional    

Must not be greater than 255 characters. Example: n

reply_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

seller_id   string  optional    

Must be a valid UUID. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

is_closed   string  optional    

Example: o

Must be one of:
  • o
  • n
discount_proposal_amount   number  optional    

Must be at least 0. Example: 76

discount_step   integer  optional    

Must be at least 0. Example: 60

command_action_step   integer  optional    

Must be at least 0. Example: 42

rows   object[]  optional    
product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: add3503c-ebff-3875-93af-b8c6a695762b

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

discount_id   string  optional    

Must be a valid UUID. Example: 51c7cf5e-fac2-3ac6-8ef8-61e6050503af

quantity   integer  optional    

Must be at least 1. Example: 43

price   number  optional    

Must be at least 0. Example: 39

price_in_local_currency   number  optional    

Must be at least 0. Example: 50

amount   number  optional    

Must be at least 0. Example: 62

GET api/v1/chat-messages/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/chat-messages/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/chat-messages/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/chat-messages/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the chat message. Example: architecto

MΓ©dias

POST api/v1/media

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/media" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "mediable_type=architecto"\
    --form "mediable_id=architecto"\
    --form "path=architecto"\
    --form "kind=architecto"\
    --form "is_cover=architecto"\
    --form "is_safe=n"\
    --form "position=27"\
    --form "file=@/tmp/php9a3Fgy" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/media"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('mediable_type', 'architecto');
body.append('mediable_id', 'architecto');
body.append('path', 'architecto');
body.append('kind', 'architecto');
body.append('is_cover', 'architecto');
body.append('is_safe', 'n');
body.append('position', '27');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/media

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

mediable_type   string     

product, product_lot or product_variant. Example: architecto

mediable_id   uuid     

Target resource identifier. Example: architecto

file   file  optional    

optional Photo/video uploaded to R2. Example: /tmp/php9a3Fgy

path   string  optional    

optional Existing R2 path or external URL. Example: architecto

kind   string     

Media kind: photo or video. Example: architecto

is_cover   string  optional    

optional Cover flag: o or n. Example: architecto

is_safe   string  optional    

Example: n

Must be one of:
  • o
  • n
position   integer  optional    

Must be at least 0. Example: 27

metadata   object  optional    

PATCH api/v1/media/{media_id}

Example request:
curl --request PATCH \
    "https://api-staging.occaverse.com/api/v1/media/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_cover\": \"architecto\",
    \"is_safe\": \"architecto\",
    \"position\": 16,
    \"metadata\": []
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/media/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_cover": "architecto",
    "is_safe": "architecto",
    "position": 16,
    "metadata": []
};

fetch(url, {
    method: "PATCH",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PATCH api/v1/media/{media_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

media_id   string     

The ID of the media. Example: architecto

Body Parameters

is_cover   string  optional    

optional Cover flag: o or n. Example: architecto

is_safe   string  optional    

optional Safety flag: o or n. Example: architecto

position   integer  optional    

optional Display order. Example: 16

metadata   object  optional    

optional Extra metadata.

DELETE api/v1/media/{media_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/media/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/media/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/media/{media_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

media_id   string     

The ID of the media. Example: architecto

Notifications

GET api/v1/notification-all

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-all" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-all"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/notification-all

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notifications

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notifications" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notifications"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notifications

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notifications/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notifications/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notifications/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notifications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification. Example: architecto

DELETE api/v1/notifications/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/notifications/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notifications/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/notifications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification. Example: architecto

PATCH api/v1/notifications/{notification_id}/seen

Example request:
curl --request PATCH \
    "https://api-staging.occaverse.com/api/v1/notifications/architecto/seen" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notifications/architecto/seen"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "PATCH",
    headers,
}).then(response => response.json());

Request      

PATCH api/v1/notifications/{notification_id}/seen

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notification_id   string     

The ID of the notification. Example: architecto

NΓ©gociation commerciale

GET api/v1/users/account/negociations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/negociations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/negociations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/negociations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/negociations/add-product-to-cart-rows

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/negociations/add-product-to-cart-rows" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"negociation_field_id\": \"architecto\",
    \"cart_header_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociations/add-product-to-cart-rows"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "negociation_field_id": "architecto",
    "cart_header_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/negociations/add-product-to-cart-rows

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

negociation_field_id   uuid     

Accepted negotiation field UUID. Example: architecto

cart_header_id   uuid  optional    

nullable Target buyer cart. If absent, the buyer cart is resolved by buyer_id. Example: architecto

GET api/v1/negociations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/negociations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/negociations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/negociations

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/negociations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"seller_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"is_closed\": \"o\",
    \"step\": 16,
    \"key_conversation\": \"architecto\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "seller_id": "architecto",
    "buyer_id": "architecto",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "is_closed": "o",
    "step": 16,
    "key_conversation": "architecto",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/negociations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

seller_id   uuid     

Seller UUID until user migration is complete. Example: architecto

buyer_id   uuid     

Buyer UUID until user migration is complete. Example: architecto

product_id   uuid  optional    

nullable Negotiated product UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Negotiated product lot UUID. Example: architecto

is_closed   string  optional    

Example: o

Must be one of:
  • o
  • n
step   integer  optional    

Must be at least 1. Example: 16

key_conversation   string  optional    

Example: architecto

fields   string[]  optional    

nullable Initial negotiation proposal rows.

is_accepted   string  optional    

Example: o

Must be one of:
  • o
  • n
buyer_proposal   number  optional    

Must be at least 0. Example: 39

seller_proposal   number  optional    

Must be at least 0. Example: 84

buyer_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 12

seller_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 77

quantity   number  optional    

Must be at least 0.01. Example: 8

proposer   string  optional    

Must not be greater than 255 characters. Example: y

sender   string  optional    

Must not be greater than 255 characters. Example: v

receiver   string  optional    

Must not be greater than 255 characters. Example: d

step   integer  optional    

Must be at least 1. Example: 40

seen   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/negociations/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/negociations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/negociations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the negociation. Example: architecto

PUT api/v1/negociations/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/negociations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"seller_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"is_closed\": \"n\",
    \"step\": 16,
    \"key_conversation\": \"architecto\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "seller_id": "architecto",
    "buyer_id": "architecto",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "is_closed": "n",
    "step": 16,
    "key_conversation": "architecto",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/negociations/{id}

PATCH api/v1/negociations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the negociation. Example: architecto

Body Parameters

seller_id   uuid     

Seller UUID until user migration is complete. Example: architecto

buyer_id   uuid     

Buyer UUID until user migration is complete. Example: architecto

product_id   uuid  optional    

nullable Negotiated product UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Negotiated product lot UUID. Example: architecto

is_closed   string  optional    

Example: n

Must be one of:
  • o
  • n
step   integer  optional    

Must be at least 1. Example: 16

key_conversation   string  optional    

Example: architecto

fields   string[]  optional    

nullable Initial negotiation proposal rows.

is_accepted   string  optional    

Example: n

Must be one of:
  • o
  • n
buyer_proposal   number  optional    

Must be at least 0. Example: 39

seller_proposal   number  optional    

Must be at least 0. Example: 84

buyer_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 12

seller_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 77

quantity   number  optional    

Must be at least 0.01. Example: 8

proposer   string  optional    

Must not be greater than 255 characters. Example: y

sender   string  optional    

Must not be greater than 255 characters. Example: v

receiver   string  optional    

Must not be greater than 255 characters. Example: d

step   integer  optional    

Must be at least 1. Example: 40

seen   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/negociations/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/negociations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/negociations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the negociation. Example: architecto

GET api/v1/negociation-fields

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/negociation-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociation-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/negociation-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/negociation-fields

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/negociation-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"negociation_id\": \"architecto\",
    \"is_accepted\": \"n\",
    \"buyer_proposal\": 4326.41688,
    \"seller_proposal\": 4326.41688,
    \"buyer_proposal_in_local_currency\": 27,
    \"seller_proposal_in_local_currency\": 39,
    \"quantity\": 4326.41688,
    \"proposer\": \"g\",
    \"sender\": \"z\",
    \"receiver\": \"m\",
    \"step\": 35,
    \"seen\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociation-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "negociation_id": "architecto",
    "is_accepted": "n",
    "buyer_proposal": 4326.41688,
    "seller_proposal": 4326.41688,
    "buyer_proposal_in_local_currency": 27,
    "seller_proposal_in_local_currency": 39,
    "quantity": 4326.41688,
    "proposer": "g",
    "sender": "z",
    "receiver": "m",
    "step": 35,
    "seen": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/negociation-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

negociation_id   uuid     

Negotiation UUID. Example: architecto

is_accepted   string  optional    

Example: n

Must be one of:
  • o
  • n
buyer_proposal   number  optional    

nullable Buyer's proposed price. Example: 4326.41688

seller_proposal   number  optional    

nullable Seller's counter proposal. Example: 4326.41688

buyer_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 27

seller_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 39

quantity   number  optional    

nullable Proposed quantity. Example: 4326.41688

proposer   string  optional    

Must not be greater than 255 characters. Example: g

sender   string  optional    

Must not be greater than 255 characters. Example: z

receiver   string  optional    

Must not be greater than 255 characters. Example: m

step   integer  optional    

Must be at least 1. Example: 35

seen   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/negociation-fields/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/negociation-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociation-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/negociation-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the negociation field. Example: architecto

PUT api/v1/negociation-fields/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/negociation-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"negociation_id\": \"architecto\",
    \"is_accepted\": \"o\",
    \"buyer_proposal\": 4326.41688,
    \"seller_proposal\": 4326.41688,
    \"buyer_proposal_in_local_currency\": 27,
    \"seller_proposal_in_local_currency\": 39,
    \"quantity\": 4326.41688,
    \"proposer\": \"g\",
    \"sender\": \"z\",
    \"receiver\": \"m\",
    \"step\": 35,
    \"seen\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociation-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "negociation_id": "architecto",
    "is_accepted": "o",
    "buyer_proposal": 4326.41688,
    "seller_proposal": 4326.41688,
    "buyer_proposal_in_local_currency": 27,
    "seller_proposal_in_local_currency": 39,
    "quantity": 4326.41688,
    "proposer": "g",
    "sender": "z",
    "receiver": "m",
    "step": 35,
    "seen": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/negociation-fields/{id}

PATCH api/v1/negociation-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the negociation field. Example: architecto

Body Parameters

negociation_id   uuid     

Negotiation UUID. Example: architecto

is_accepted   string  optional    

Example: o

Must be one of:
  • o
  • n
buyer_proposal   number  optional    

nullable Buyer's proposed price. Example: 4326.41688

seller_proposal   number  optional    

nullable Seller's counter proposal. Example: 4326.41688

buyer_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 27

seller_proposal_in_local_currency   number  optional    

Must be at least 0. Example: 39

quantity   number  optional    

nullable Proposed quantity. Example: 4326.41688

proposer   string  optional    

Must not be greater than 255 characters. Example: g

sender   string  optional    

Must not be greater than 255 characters. Example: z

receiver   string  optional    

Must not be greater than 255 characters. Example: m

step   integer  optional    

Must be at least 1. Example: 35

seen   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/negociation-fields/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/negociation-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/negociation-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/negociation-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the negociation field. Example: architecto

NΓ©gociations

GET api/v1/notification-negociations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-negociations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-negociations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-negociations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-negociations/{notificationNegociation_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-negociations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-negociations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-negociations/{notificationNegociation_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationNegociation_id   string     

The ID of the notificationNegociation. Example: architecto

PUT api/v1/notification-negociations/{notificationNegociation_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-negociations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-negociations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "o"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-negociations/{notificationNegociation_id}

PATCH api/v1/notification-negociations/{notificationNegociation_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationNegociation_id   string     

The ID of the notificationNegociation. Example: architecto

Body Parameters

is_seen   string     

Example: o

Must be one of:
  • o
  • n

Paiements et règlements

PUT api/v1/mean-payment-chooses/{meanPaymentChoose_id}/set-default

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto/set-default" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto/set-default"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/v1/mean-payment-chooses/{meanPaymentChoose_id}/set-default

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

meanPaymentChoose_id   string     

The ID of the meanPaymentChoose. Example: architecto

GET api/v1/mean-payment-chooses

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/mean-payment-chooses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/mean-payment-chooses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/mean-payment-chooses

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"mean_payment_id\": \"architecto\",
    \"created_by_id\": \"architecto\",
    \"name\": \"b\",
    \"is_default\": \"o\",
    \"is_verified\": \"n\",
    \"verified_at\": \"2026-07-17T18:03:39\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "mean_payment_id": "architecto",
    "created_by_id": "architecto",
    "name": "b",
    "is_default": "o",
    "is_verified": "n",
    "verified_at": "2026-07-17T18:03:39",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/mean-payment-chooses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

mean_payment_id   uuid     

Payment method UUID. Example: architecto

created_by_id   uuid     

Owner UUID until user migration is complete. Example: architecto

name   string  optional    

Must not be greater than 255 characters. Example: b

is_default   string  optional    

Example: o

Must be one of:
  • o
  • n
is_verified   string  optional    

Example: n

Must be one of:
  • o
  • n
verified_at   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:39

fields   string[]  optional    

nullable Values for payment method fields.

mean_payment_field_id   string  optional    

This field is required when fields is present. Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

value   string  optional    

This field is required when fields is present. Example: architecto

GET api/v1/mean-payment-chooses/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/mean-payment-chooses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean payment choose. Example: architecto

PUT api/v1/mean-payment-chooses/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"mean_payment_id\": \"architecto\",
    \"created_by_id\": \"architecto\",
    \"name\": \"b\",
    \"is_default\": \"o\",
    \"is_verified\": \"n\",
    \"verified_at\": \"2026-07-17T18:03:39\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "mean_payment_id": "architecto",
    "created_by_id": "architecto",
    "name": "b",
    "is_default": "o",
    "is_verified": "n",
    "verified_at": "2026-07-17T18:03:39",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/mean-payment-chooses/{id}

PATCH api/v1/mean-payment-chooses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean payment choose. Example: architecto

Body Parameters

mean_payment_id   uuid     

Payment method UUID. Example: architecto

created_by_id   uuid     

Owner UUID until user migration is complete. Example: architecto

name   string  optional    

Must not be greater than 255 characters. Example: b

is_default   string  optional    

Example: o

Must be one of:
  • o
  • n
is_verified   string  optional    

Example: n

Must be one of:
  • o
  • n
verified_at   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:39

fields   string[]  optional    

nullable Values for payment method fields.

mean_payment_field_id   string  optional    

This field is required when fields is present. Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

value   string  optional    

This field is required when fields is present. Example: architecto

DELETE api/v1/mean-payment-chooses/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/mean-payment-chooses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/mean-payment-chooses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean payment choose. Example: architecto

GET api/v1/payment-logs

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment-logs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-logs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/payment-logs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/payment-logs

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment-logs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"payment_provider\": \"architecto\",
    \"transaction_id\": \"architecto\",
    \"status\": \"b\",
    \"amount\": 39,
    \"initialized_by_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"command_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"command_seller_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"type\": \"d\",
    \"is_pay_in\": true,
    \"is_seller\": false
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-logs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "payment_provider": "architecto",
    "transaction_id": "architecto",
    "status": "b",
    "amount": 39,
    "initialized_by_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "command_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "command_seller_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "type": "d",
    "is_pay_in": true,
    "is_seller": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment-logs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

payment_provider   string     

PAYPAL or STRIPE. Example: architecto

transaction_id   string     

Provider transaction identifier. Example: architecto

status   string     

Must not be greater than 30 characters. Example: b

amount   number     

Must be at least 0. Example: 39

response_details   object  optional    
initialized_by_id   string  optional    

Must be a valid UUID. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

type   string  optional    

Must not be greater than 255 characters. Example: d

is_pay_in   boolean  optional    

Example: true

is_seller   boolean  optional    

Example: false

GET api/v1/payment-logs/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment-logs/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-logs/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/payment-logs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the payment log. Example: architecto

POST api/v1/payment/paypal/checkout-similate

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/checkout-similate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 4326.41688,
    \"service_and_delivery_fee\": 4326.41688,
    \"seller_country\": \"architecto\",
    \"serviceAndDeliveryFee\": 4326.41688,
    \"sellerCountry\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/checkout-similate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 4326.41688,
    "service_and_delivery_fee": 4326.41688,
    "seller_country": "architecto",
    "serviceAndDeliveryFee": 4326.41688,
    "sellerCountry": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/checkout-similate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

amount   number     

Product amount. Example: 4326.41688

service_and_delivery_fee   number  optional    

optional Service and delivery fees. Example: 4326.41688

seller_country   string  optional    

optional Seller country ISO code. Defaults to FR. Example: architecto

serviceAndDeliveryFee   number  optional    

optional Legacy camelCase alias. Example: 4326.41688

sellerCountry   string  optional    

optional Legacy camelCase alias. Example: architecto

POST api/v1/payment/paypal/checkout-simulate

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/checkout-simulate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 4326.41688,
    \"service_and_delivery_fee\": 4326.41688,
    \"seller_country\": \"architecto\",
    \"serviceAndDeliveryFee\": 4326.41688,
    \"sellerCountry\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/checkout-simulate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 4326.41688,
    "service_and_delivery_fee": 4326.41688,
    "seller_country": "architecto",
    "serviceAndDeliveryFee": 4326.41688,
    "sellerCountry": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/checkout-simulate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

amount   number     

Product amount. Example: 4326.41688

service_and_delivery_fee   number  optional    

optional Service and delivery fees. Example: 4326.41688

seller_country   string  optional    

optional Seller country ISO code. Defaults to FR. Example: architecto

serviceAndDeliveryFee   number  optional    

optional Legacy camelCase alias. Example: 4326.41688

sellerCountry   string  optional    

optional Legacy camelCase alias. Example: architecto

POST api/v1/payment/paypal/payment-success

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/payment-success" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"architecto\",
    \"order_id\": \"architecto\",
    \"session_id\": \"architecto\",
    \"payment_intent_id\": \"architecto\",
    \"reference\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/payment-success"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "token": "architecto",
    "order_id": "architecto",
    "session_id": "architecto",
    "payment_intent_id": "architecto",
    "reference": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/payment-success

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string  optional    

optional PayPal order token. Example: architecto

order_id   string  optional    

optional PayPal order id. Example: architecto

session_id   string  optional    

optional Stripe checkout session id. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

reference   string  optional    

optional Generic provider reference fallback. Example: architecto

POST api/v1/payment/paypal/payment-fail

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/payment-fail" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"architecto\",
    \"order_id\": \"architecto\",
    \"session_id\": \"architecto\",
    \"payment_intent_id\": \"architecto\",
    \"reference\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/payment-fail"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "token": "architecto",
    "order_id": "architecto",
    "session_id": "architecto",
    "payment_intent_id": "architecto",
    "reference": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/payment-fail

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string  optional    

optional PayPal order token. Example: architecto

order_id   string  optional    

optional PayPal order id. Example: architecto

session_id   string  optional    

optional Stripe checkout session id. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

reference   string  optional    

optional Generic provider reference fallback. Example: architecto

POST api/v1/payment/paypal/checkout/{command_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/checkout/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider_payload\": [],
    \"id\": \"architecto\",
    \"session_id\": \"architecto\",
    \"payment_intent_id\": \"architecto\",
    \"order_id\": \"architecto\",
    \"capture_id\": \"architecto\",
    \"approve_url\": \"http:\\/\\/www.bailey.biz\\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html\",
    \"url\": \"http:\\/\\/www.bailey.biz\\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/checkout/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "provider_payload": [],
    "id": "architecto",
    "session_id": "architecto",
    "payment_intent_id": "architecto",
    "order_id": "architecto",
    "capture_id": "architecto",
    "approve_url": "http:\/\/www.bailey.biz\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html",
    "url": "http:\/\/www.bailey.biz\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/checkout/{command_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

command_id   string     

The ID of the command. Example: architecto

Body Parameters

provider_payload   object  optional    

optional Raw provider checkout/session payload.

id   string  optional    

optional Provider order/session id. Example: architecto

session_id   string  optional    

optional Stripe checkout session id. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

order_id   string  optional    

optional PayPal order id. Example: architecto

capture_id   string  optional    

optional Provider capture id when already known. Example: architecto

approve_url   string  optional    

optional PayPal approval URL. Example: http://www.bailey.biz/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html

url   string  optional    

optional Stripe checkout URL or PayPal approval URL. Example: http://www.bailey.biz/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html

GET api/v1/payment/paypal/orders/{orderId}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment/paypal/orders/architecto?order_id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"order_id\": \"b\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/orders/architecto"
);

const params = {
    "order_id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "order_id": "b"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Configuration PayPal manquante",
    "code": "HTTP_ERROR",
    "errors": []
}
 

Request      

GET api/v1/payment/paypal/orders/{orderId}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

orderId   string     

Example: architecto

Query Parameters

order_id   string     

Provider order id. Route parameter {orderId} is also accepted. Example: architecto

Body Parameters

order_id   string     

Must not be greater than 255 characters. Example: b

POST api/v1/payment/paypal/orders/{orderId}/capture

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/orders/architecto/capture?order_id=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"order_id\": \"b\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/orders/architecto/capture"
);

const params = {
    "order_id": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "order_id": "b"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/orders/{orderId}/capture

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

orderId   string     

Example: architecto

Query Parameters

order_id   string     

Provider order id. Route parameter {orderId} is also accepted. Example: architecto

Body Parameters

order_id   string     

Must not be greater than 255 characters. Example: b

POST api/v1/payment/paypal/payout-seller/{commandSeller_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/payout-seller/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"capture_id\": \"architecto\",
    \"id\": \"architecto\",
    \"payment_intent_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/payout-seller/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "capture_id": "architecto",
    "id": "architecto",
    "payment_intent_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/payout-seller/{commandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

commandSeller_id   string     

The ID of the commandSeller. Example: architecto

Body Parameters

capture_id   string  optional    

optional Provider capture or payout id. Example: architecto

id   string  optional    

optional Provider payout id fallback. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

GET api/v1/payment/paypal/get-payout-seller/{commandSeller_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment/paypal/get-payout-seller/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/get-payout-seller/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/payment/paypal/get-payout-seller/{commandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

commandSeller_id   string     

The ID of the commandSeller. Example: architecto

POST api/v1/payment/paypal/refund-client/{commandSeller_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/refund-client/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 4326.41688,
    \"refund_id\": \"architecto\",
    \"id\": \"architecto\",
    \"payment_intent_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/refund-client/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 4326.41688,
    "refund_id": "architecto",
    "id": "architecto",
    "payment_intent_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/refund-client/{commandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

commandSeller_id   string     

The ID of the commandSeller. Example: architecto

Body Parameters

amount   number  optional    

optional Refund amount. Defaults to command seller refundable amount. Example: 4326.41688

refund_id   string  optional    

optional Provider refund id. Example: architecto

id   string  optional    

optional Provider refund id fallback. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

POST api/v1/payment/paypal/retry-transaction/{paymentLog_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/retry-transaction/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 4326.41688
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/retry-transaction/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 4326.41688
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/retry-transaction/{paymentLog_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

paymentLog_id   string     

The ID of the paymentLog. Example: architecto

Body Parameters

amount   number  optional    

optional Override amount for refund retry. Example: 4326.41688

POST api/v1/payment/paypal/refund-completed

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/refund-completed" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"architecto\",
    \"event_type\": \"architecto\",
    \"data\": [],
    \"resource\": [],
    \"account\": []
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/refund-completed"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "type": "architecto",
    "event_type": "architecto",
    "data": [],
    "resource": [],
    "account": []
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/refund-completed

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

type   string  optional    

optional Stripe event type. Example: architecto

event_type   string  optional    

optional PayPal event type. Example: architecto

data   object  optional    

optional Stripe event data.

resource   object  optional    

optional PayPal event resource.

account   object  optional    

optional Stripe account payload shortcut.

POST api/v1/payment/paypal/webhook

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/paypal/webhook" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"architecto\",
    \"event_type\": \"architecto\",
    \"data\": [],
    \"resource\": [],
    \"account\": []
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/paypal/webhook"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "type": "architecto",
    "event_type": "architecto",
    "data": [],
    "resource": [],
    "account": []
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/paypal/webhook

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

type   string  optional    

optional Stripe event type. Example: architecto

event_type   string  optional    

optional PayPal event type. Example: architecto

data   object  optional    

optional Stripe event data.

resource   object  optional    

optional PayPal event resource.

account   object  optional    

optional Stripe account payload shortcut.

POST api/v1/payment/stripe/checkout-simulate

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/checkout-simulate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 4326.41688,
    \"service_and_delivery_fee\": 4326.41688,
    \"seller_country\": \"architecto\",
    \"serviceAndDeliveryFee\": 4326.41688,
    \"sellerCountry\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/checkout-simulate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 4326.41688,
    "service_and_delivery_fee": 4326.41688,
    "seller_country": "architecto",
    "serviceAndDeliveryFee": 4326.41688,
    "sellerCountry": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/checkout-simulate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

amount   number     

Product amount. Example: 4326.41688

service_and_delivery_fee   number  optional    

optional Service and delivery fees. Example: 4326.41688

seller_country   string  optional    

optional Seller country ISO code. Defaults to FR. Example: architecto

serviceAndDeliveryFee   number  optional    

optional Legacy camelCase alias. Example: 4326.41688

sellerCountry   string  optional    

optional Legacy camelCase alias. Example: architecto

POST api/v1/payment/stripe/payment-success

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/payment-success" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"architecto\",
    \"order_id\": \"architecto\",
    \"session_id\": \"architecto\",
    \"payment_intent_id\": \"architecto\",
    \"reference\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/payment-success"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "token": "architecto",
    "order_id": "architecto",
    "session_id": "architecto",
    "payment_intent_id": "architecto",
    "reference": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/payment-success

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string  optional    

optional PayPal order token. Example: architecto

order_id   string  optional    

optional PayPal order id. Example: architecto

session_id   string  optional    

optional Stripe checkout session id. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

reference   string  optional    

optional Generic provider reference fallback. Example: architecto

POST api/v1/payment/stripe/payment-fail

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/payment-fail" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"architecto\",
    \"order_id\": \"architecto\",
    \"session_id\": \"architecto\",
    \"payment_intent_id\": \"architecto\",
    \"reference\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/payment-fail"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "token": "architecto",
    "order_id": "architecto",
    "session_id": "architecto",
    "payment_intent_id": "architecto",
    "reference": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/payment-fail

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string  optional    

optional PayPal order token. Example: architecto

order_id   string  optional    

optional PayPal order id. Example: architecto

session_id   string  optional    

optional Stripe checkout session id. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

reference   string  optional    

optional Generic provider reference fallback. Example: architecto

POST api/v1/payment/stripe/checkout/{command_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/checkout/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider_payload\": [],
    \"id\": \"architecto\",
    \"session_id\": \"architecto\",
    \"payment_intent_id\": \"architecto\",
    \"order_id\": \"architecto\",
    \"capture_id\": \"architecto\",
    \"approve_url\": \"http:\\/\\/www.bailey.biz\\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html\",
    \"url\": \"http:\\/\\/www.bailey.biz\\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/checkout/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "provider_payload": [],
    "id": "architecto",
    "session_id": "architecto",
    "payment_intent_id": "architecto",
    "order_id": "architecto",
    "capture_id": "architecto",
    "approve_url": "http:\/\/www.bailey.biz\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html",
    "url": "http:\/\/www.bailey.biz\/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/checkout/{command_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

command_id   string     

The ID of the command. Example: architecto

Body Parameters

provider_payload   object  optional    

optional Raw provider checkout/session payload.

id   string  optional    

optional Provider order/session id. Example: architecto

session_id   string  optional    

optional Stripe checkout session id. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

order_id   string  optional    

optional PayPal order id. Example: architecto

capture_id   string  optional    

optional Provider capture id when already known. Example: architecto

approve_url   string  optional    

optional PayPal approval URL. Example: http://www.bailey.biz/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html

url   string  optional    

optional Stripe checkout URL or PayPal approval URL. Example: http://www.bailey.biz/quos-velit-et-fugiat-sunt-nihil-accusantium-harum.html

POST api/v1/payment/stripe/payout/{commandSeller_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/payout/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"capture_id\": \"architecto\",
    \"id\": \"architecto\",
    \"payment_intent_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/payout/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "capture_id": "architecto",
    "id": "architecto",
    "payment_intent_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/payout/{commandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

commandSeller_id   string     

The ID of the commandSeller. Example: architecto

Body Parameters

capture_id   string  optional    

optional Provider capture or payout id. Example: architecto

id   string  optional    

optional Provider payout id fallback. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

POST api/v1/payment/stripe/refund/{commandSeller_id}

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/refund/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"amount\": 4326.41688,
    \"refund_id\": \"architecto\",
    \"id\": \"architecto\",
    \"payment_intent_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/refund/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "amount": 4326.41688,
    "refund_id": "architecto",
    "id": "architecto",
    "payment_intent_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/refund/{commandSeller_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

commandSeller_id   string     

The ID of the commandSeller. Example: architecto

Body Parameters

amount   number  optional    

optional Refund amount. Defaults to command seller refundable amount. Example: 4326.41688

refund_id   string  optional    

optional Provider refund id. Example: architecto

id   string  optional    

optional Provider refund id fallback. Example: architecto

payment_intent_id   string  optional    

optional Stripe payment intent id. Example: architecto

POST api/v1/payment/stripe/webhook

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/webhook" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"architecto\",
    \"event_type\": \"architecto\",
    \"data\": [],
    \"resource\": [],
    \"account\": []
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/webhook"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "type": "architecto",
    "event_type": "architecto",
    "data": [],
    "resource": [],
    "account": []
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/webhook

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

type   string  optional    

optional Stripe event type. Example: architecto

event_type   string  optional    

optional PayPal event type. Example: architecto

data   object  optional    

optional Stripe event data.

resource   object  optional    

optional PayPal event resource.

account   object  optional    

optional Stripe account payload shortcut.

POST api/v1/payment/stripe/webhook/account-updated

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/stripe/webhook/account-updated" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"architecto\",
    \"event_type\": \"architecto\",
    \"data\": [],
    \"resource\": [],
    \"account\": []
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/webhook/account-updated"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "type": "architecto",
    "event_type": "architecto",
    "data": [],
    "resource": [],
    "account": []
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/stripe/webhook/account-updated

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

type   string  optional    

optional Stripe event type. Example: architecto

event_type   string  optional    

optional PayPal event type. Example: architecto

data   object  optional    

optional Stripe event data.

resource   object  optional    

optional PayPal event resource.

account   object  optional    

optional Stripe account payload shortcut.

GET api/v1/payment/stripe/onboarding-status/{meanPaymentChoose_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment/stripe/onboarding-status/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/stripe/onboarding-status/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/payment/stripe/onboarding-status/{meanPaymentChoose_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

meanPaymentChoose_id   string     

The ID of the meanPaymentChoose. Example: architecto

POST api/v1/payment/{provider}/callback

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment/architecto/callback" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider_transaction_id\": \"architecto\",
    \"transaction_id\": \"architecto\",
    \"id\": \"architecto\",
    \"provider_capture_id\": \"architecto\",
    \"capture_id\": \"architecto\",
    \"provider_refund_id\": \"architecto\",
    \"refund_id\": \"architecto\",
    \"status\": \"architecto\",
    \"amount\": 4326.41688,
    \"currency\": \"architecto\",
    \"command_id\": \"architecto\",
    \"command_seller_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment/architecto/callback"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "provider_transaction_id": "architecto",
    "transaction_id": "architecto",
    "id": "architecto",
    "provider_capture_id": "architecto",
    "capture_id": "architecto",
    "provider_refund_id": "architecto",
    "refund_id": "architecto",
    "status": "architecto",
    "amount": 4326.41688,
    "currency": "architecto",
    "command_id": "architecto",
    "command_seller_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment/{provider}/callback

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

provider   string     

Example: architecto

Body Parameters

provider_transaction_id   string  optional    

optional Normalized provider transaction id. Example: architecto

transaction_id   string  optional    

optional Legacy provider transaction id. Example: architecto

id   string  optional    

optional Raw provider id fallback. Example: architecto

provider_capture_id   string  optional    

optional Provider capture id. Example: architecto

capture_id   string  optional    

optional Legacy provider capture id. Example: architecto

provider_refund_id   string  optional    

optional Provider refund id. Example: architecto

refund_id   string  optional    

optional Legacy provider refund id. Example: architecto

status   string  optional    

optional Provider status. Example: architecto

amount   number  optional    

optional Transaction amount. Example: 4326.41688

currency   string  optional    

optional Currency code. Example: architecto

command_id   uuid  optional    

optional Linked command id. Example: architecto

command_seller_id   uuid  optional    

optional Linked seller command id. Example: architecto

GET api/v1/payment-transactions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment-transactions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-transactions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/payment-transactions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/payment-transactions

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/payment-transactions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider\": \"architecto\",
    \"provider_transaction_id\": \"b\",
    \"provider_capture_id\": \"n\",
    \"provider_refund_id\": \"g\",
    \"status\": \"architecto\",
    \"amount\": 12,
    \"currency\": \"miyvdl\",
    \"command_id\": \"947170af-7488-3f30-a16d-723355a9502f\",
    \"command_seller_id\": \"cd1eb1ea-4697-3b9a-9dd0-988044a83af6\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-transactions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "provider": "architecto",
    "provider_transaction_id": "b",
    "provider_capture_id": "n",
    "provider_refund_id": "g",
    "status": "architecto",
    "amount": 12,
    "currency": "miyvdl",
    "command_id": "947170af-7488-3f30-a16d-723355a9502f",
    "command_seller_id": "cd1eb1ea-4697-3b9a-9dd0-988044a83af6"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/payment-transactions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

provider   string     

PAYPAL or STRIPE. Example: architecto

provider_transaction_id   string  optional    

Must not be greater than 255 characters. Example: b

provider_capture_id   string  optional    

Must not be greater than 255 characters. Example: n

provider_refund_id   string  optional    

Must not be greater than 255 characters. Example: g

status   string  optional    

nullable Provider transaction status. Example: architecto

amount   number  optional    

Must be at least 0. Example: 12

currency   string  optional    

Must not be greater than 10 characters. Example: miyvdl

command_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 947170af-7488-3f30-a16d-723355a9502f

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: cd1eb1ea-4697-3b9a-9dd0-988044a83af6

provider_payload   object  optional    

GET api/v1/payment-transactions/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/payment-transactions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-transactions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/payment-transactions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the payment transaction. Example: architecto

PUT api/v1/payment-transactions/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/payment-transactions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider\": \"architecto\",
    \"provider_transaction_id\": \"b\",
    \"provider_capture_id\": \"n\",
    \"provider_refund_id\": \"g\",
    \"status\": \"architecto\",
    \"amount\": 12,
    \"currency\": \"miyvdl\",
    \"command_id\": \"947170af-7488-3f30-a16d-723355a9502f\",
    \"command_seller_id\": \"cd1eb1ea-4697-3b9a-9dd0-988044a83af6\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/payment-transactions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "provider": "architecto",
    "provider_transaction_id": "b",
    "provider_capture_id": "n",
    "provider_refund_id": "g",
    "status": "architecto",
    "amount": 12,
    "currency": "miyvdl",
    "command_id": "947170af-7488-3f30-a16d-723355a9502f",
    "command_seller_id": "cd1eb1ea-4697-3b9a-9dd0-988044a83af6"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/payment-transactions/{id}

PATCH api/v1/payment-transactions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the payment transaction. Example: architecto

Body Parameters

provider   string     

PAYPAL or STRIPE. Example: architecto

provider_transaction_id   string  optional    

Must not be greater than 255 characters. Example: b

provider_capture_id   string  optional    

Must not be greater than 255 characters. Example: n

provider_refund_id   string  optional    

Must not be greater than 255 characters. Example: g

status   string  optional    

nullable Provider transaction status. Example: architecto

amount   number  optional    

Must be at least 0. Example: 12

currency   string  optional    

Must not be greater than 10 characters. Example: miyvdl

command_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 947170af-7488-3f30-a16d-723355a9502f

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: cd1eb1ea-4697-3b9a-9dd0-988044a83af6

provider_payload   object  optional    

GET api/v1/reference/mean-payments

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/mean-payments" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018fb9bc-6bf2-7d8b-bba5-f07f7ac8233d",
            "wording": "PayPal",
            "is_active": "o",
            "type": "PAYPAL",
            "has_verification": "o",
            "fields": [
                {
                    "id": "018fb9bc-6bf2-7d8b-bba5-f07f7b6315ac",
                    "mean_payment_id": "018fb9bc-6bf2-7d8b-bba5-f07f7ac8233d",
                    "wording": "Adresse mail",
                    "is_active": "o",
                    "position": 1,
                    "type": "string",
                    "created_at": "2024-05-27T11:08:04.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                },
                {
                    "id": "018fb9bc-6bf2-7d8b-bba5-f07f7be8c266",
                    "mean_payment_id": "018fb9bc-6bf2-7d8b-bba5-f07f7ac8233d",
                    "wording": "Merchant ID",
                    "is_active": "n",
                    "position": 2,
                    "type": "string",
                    "created_at": "2024-05-27T11:08:04.000000Z",
                    "updated_at": "2026-07-17T18:03:38.000000Z"
                }
            ],
            "created_at": "2024-05-27T11:08:04.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019f426a-a821-72e5-afad-e4753ad943ea",
            "wording": "Stripe",
            "is_active": "o",
            "type": "STRIPE",
            "has_verification": "o",
            "fields": [
                {
                    "id": "019f426a-a823-71e9-8513-c5055c4de954",
                    "mean_payment_id": "019f426a-a821-72e5-afad-e4753ad943ea",
                    "wording": "Stripe Account ID",
                    "is_active": "o",
                    "position": 1,
                    "type": "string",
                    "created_at": "2026-07-08T15:48:33.000000Z",
                    "updated_at": "2026-07-08T15:48:33.000000Z"
                }
            ],
            "created_at": "2026-07-08T15:48:33.000000Z",
            "updated_at": "2026-07-08T15:48:33.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/mean-payments

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/mean-payments

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"is_active\": \"n\",
    \"type\": \"architecto\",
    \"has_verification\": \"o\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "is_active": "n",
    "type": "architecto",
    "has_verification": "o",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/mean-payments

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Payment method wording. Example: architecto

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n
type   string  optional    

nullable Allowed providers: PAYPAL, STRIPE. Example: architecto

has_verification   string  optional    

Example: o

Must be one of:
  • o
  • n
fields   string[]  optional    

nullable Required configuration fields for this method.

wording   string  optional    

This field is required when fields is present. Must not be greater than 255 characters. Example: b

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n
position   integer  optional    

Must be at least 0. Example: 39

type   string  optional    

Must not be greater than 255 characters. Example: g

GET api/v1/reference/mean-payments/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/mean-payments/019f426a-a821-72e5-afad-e4753ad943ea" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments/019f426a-a821-72e5-afad-e4753ad943ea"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-a821-72e5-afad-e4753ad943ea",
        "wording": "Stripe",
        "is_active": "o",
        "type": "STRIPE",
        "has_verification": "o",
        "fields": [
            {
                "id": "019f426a-a823-71e9-8513-c5055c4de954",
                "mean_payment_id": "019f426a-a821-72e5-afad-e4753ad943ea",
                "wording": "Stripe Account ID",
                "is_active": "o",
                "position": 1,
                "type": "string",
                "created_at": "2026-07-08T15:48:33.000000Z",
                "updated_at": "2026-07-08T15:48:33.000000Z"
            }
        ],
        "created_at": "2026-07-08T15:48:33.000000Z",
        "updated_at": "2026-07-08T15:48:33.000000Z"
    }
}
 

Request      

GET api/v1/reference/mean-payments/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean payment. Example: 019f426a-a821-72e5-afad-e4753ad943ea

PUT api/v1/reference/mean-payments/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments/019f426a-a821-72e5-afad-e4753ad943ea" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"is_active\": \"o\",
    \"type\": \"architecto\",
    \"has_verification\": \"o\",
    \"fields\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments/019f426a-a821-72e5-afad-e4753ad943ea"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "is_active": "o",
    "type": "architecto",
    "has_verification": "o",
    "fields": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/mean-payments/{id}

PATCH api/v1/reference/mean-payments/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean payment. Example: 019f426a-a821-72e5-afad-e4753ad943ea

Body Parameters

wording   string     

Payment method wording. Example: architecto

is_active   string  optional    

Example: o

Must be one of:
  • o
  • n
type   string  optional    

nullable Allowed providers: PAYPAL, STRIPE. Example: architecto

has_verification   string  optional    

Example: o

Must be one of:
  • o
  • n
fields   string[]  optional    

nullable Required configuration fields for this method.

wording   string  optional    

This field is required when fields is present. Must not be greater than 255 characters. Example: b

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n
position   integer  optional    

Must be at least 0. Example: 39

type   string  optional    

Must not be greater than 255 characters. Example: g

DELETE api/v1/reference/mean-payments/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments/019f426a-a821-72e5-afad-e4753ad943ea" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/mean-payments/019f426a-a821-72e5-afad-e4753ad943ea"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/mean-payments/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the mean payment. Example: 019f426a-a821-72e5-afad-e4753ad943ea

GET api/v1/reference/fees-on-commands

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018faa74-d553-7bce-bcdd-6b30ac491fb9",
            "fee_wording": "GREENKIDZ Fees",
            "percentage_rate": "3.0000",
            "position": 1,
            "created_at": "2024-05-24T11:55:08.000000Z",
            "updated_at": "2024-05-24T11:55:08.000000Z"
        },
        {
            "id": "018faa75-3dce-7893-854a-72140cf9f874",
            "fee_wording": "Conformity Fees",
            "percentage_rate": "4.0000",
            "position": 2,
            "created_at": "2024-05-24T11:55:08.000000Z",
            "updated_at": "2024-05-24T11:55:08.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/fees-on-commands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/fees-on-commands

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fee_wording\": \"architecto\",
    \"percentage_rate\": 4326.41688,
    \"position\": 27
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fee_wording": "architecto",
    "percentage_rate": 4326.41688,
    "position": 27
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/fees-on-commands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

fee_wording   string     

Fee wording. Example: architecto

percentage_rate   number     

Percentage rate. Example: 4326.41688

position   integer  optional    

Must be at least 0. Example: 27

GET api/v1/reference/fees-on-commands/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands/018faa74-d553-7bce-bcdd-6b30ac491fb9" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands/018faa74-d553-7bce-bcdd-6b30ac491fb9"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018faa74-d553-7bce-bcdd-6b30ac491fb9",
        "fee_wording": "GREENKIDZ Fees",
        "percentage_rate": "3.0000",
        "position": 1,
        "created_at": "2024-05-24T11:55:08.000000Z",
        "updated_at": "2024-05-24T11:55:08.000000Z"
    }
}
 

Request      

GET api/v1/reference/fees-on-commands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the fees on command. Example: 018faa74-d553-7bce-bcdd-6b30ac491fb9

PUT api/v1/reference/fees-on-commands/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands/018faa74-d553-7bce-bcdd-6b30ac491fb9" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fee_wording\": \"architecto\",
    \"percentage_rate\": 4326.41688,
    \"position\": 27
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands/018faa74-d553-7bce-bcdd-6b30ac491fb9"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fee_wording": "architecto",
    "percentage_rate": 4326.41688,
    "position": 27
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/fees-on-commands/{id}

PATCH api/v1/reference/fees-on-commands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the fees on command. Example: 018faa74-d553-7bce-bcdd-6b30ac491fb9

Body Parameters

fee_wording   string     

Fee wording. Example: architecto

percentage_rate   number     

Percentage rate. Example: 4326.41688

position   integer  optional    

Must be at least 0. Example: 27

DELETE api/v1/reference/fees-on-commands/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands/018faa74-d553-7bce-bcdd-6b30ac491fb9" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/fees-on-commands/018faa74-d553-7bce-bcdd-6b30ac491fb9"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/fees-on-commands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the fees on command. Example: 018faa74-d553-7bce-bcdd-6b30ac491fb9

Panier

GET api/v1/notification-cart-on-holds

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-cart-on-holds" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-cart-on-holds"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-cart-on-holds

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-cart-on-holds/{notificationCartOnHold_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-cart-on-holds/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-cart-on-holds/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-cart-on-holds/{notificationCartOnHold_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationCartOnHold_id   string     

The ID of the notificationCartOnHold. Example: architecto

PUT api/v1/notification-cart-on-holds/{notificationCartOnHold_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-cart-on-holds/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-cart-on-holds/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-cart-on-holds/{notificationCartOnHold_id}

PATCH api/v1/notification-cart-on-holds/{notificationCartOnHold_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationCartOnHold_id   string     

The ID of the notificationCartOnHold. Example: architecto

Body Parameters

is_seen   string     

Example: n

Must be one of:
  • o
  • n

Panier et validation vendeur

Get the cart for the currently authenticated user.

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart/mine" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart/mine"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/cart/mine

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

DELETE api/v1/cart-headers/{cartHeader_id}/reset

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2/reset" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2/reset"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/cart-headers/{cartHeader_id}/reset

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

cartHeader_id   string     

The ID of the cartHeader. Example: 019f70d3-af79-7039-896b-d64441ad6da2

GET api/v1/cart-headers

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart-headers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-headers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f70d3-af79-7039-896b-d64441ad6da2",
            "created_by_id": "019f70d3-af63-73db-a7e6-8dfbb3572064",
            "rows": [],
            "totals": {
                "quantity": 0,
                "amount": 0
            },
            "created_at": "2026-07-17T16:05:49.000000Z",
            "updated_at": "2026-07-17T16:05:49.000000Z"
        }
    ]
}
 

Request      

GET api/v1/cart-headers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/cart-headers

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/cart-headers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-headers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/cart-headers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

created_by_id   uuid  optional    

nullable Buyer UUID until user migration is complete. Example: architecto

GET api/v1/cart-headers/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f70d3-af79-7039-896b-d64441ad6da2",
        "created_by_id": "019f70d3-af63-73db-a7e6-8dfbb3572064",
        "rows": [],
        "totals": {
            "quantity": 0,
            "amount": 0
        },
        "created_at": "2026-07-17T16:05:49.000000Z",
        "updated_at": "2026-07-17T16:05:49.000000Z"
    }
}
 

Request      

GET api/v1/cart-headers/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart header. Example: 019f70d3-af79-7039-896b-d64441ad6da2

PUT api/v1/cart-headers/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/cart-headers/{id}

PATCH api/v1/cart-headers/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart header. Example: 019f70d3-af79-7039-896b-d64441ad6da2

Body Parameters

created_by_id   uuid  optional    

nullable Buyer UUID until user migration is complete. Example: architecto

DELETE api/v1/cart-headers/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-headers/019f70d3-af79-7039-896b-d64441ad6da2"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/cart-headers/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart header. Example: 019f70d3-af79-7039-896b-d64441ad6da2

GET api/v1/cart-rows

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart-rows" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-rows"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/cart-rows

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/cart-rows

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/cart-rows" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"cart_header_id\": \"architecto\",
    \"source_product_in_cart_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"quantity\": 67,
    \"price\": 12,
    \"price_in_local_currency\": 77,
    \"identifier\": \"i\",
    \"product_variants\": [
        []
    ],
    \"is_conformity_control\": \"n\",
    \"reservation_id\": \"y\",
    \"negociation_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"is_seller_valid\": \"o\",
    \"is_ordered\": \"o\",
    \"is_deleted\": \"n\",
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-rows"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "cart_header_id": "architecto",
    "source_product_in_cart_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "quantity": 67,
    "price": 12,
    "price_in_local_currency": 77,
    "identifier": "i",
    "product_variants": [
        []
    ],
    "is_conformity_control": "n",
    "reservation_id": "y",
    "negociation_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "is_seller_valid": "o",
    "is_ordered": "o",
    "is_deleted": "n",
    "is_active": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/cart-rows

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

cart_header_id   uuid     

Existing cart header identifier. Example: architecto

source_product_in_cart_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_id   uuid  optional    

nullable Product identifier. Required when product_lot_id is absent. Example: architecto

product_lot_id   uuid  optional    

nullable Product lot identifier. Required when product_id is absent. Example: architecto

quantity   integer     

Must be at least 1. Example: 67

price   number     

Must be at least 0. Example: 12

price_in_local_currency   number  optional    

Must be at least 0. Example: 77

identifier   string  optional    

Must not be greater than 255 characters. Example: i

product_variants   object[]  optional    

nullable Selected product variants.

is_conformity_control   string  optional    

Example: n

Must be one of:
  • o
  • n
reservation_id   string  optional    

Must not be greater than 255 characters. Example: y

negociation_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

is_seller_valid   string  optional    

Example: o

Must be one of:
  • o
  • n
is_ordered   string  optional    

Example: o

Must be one of:
  • o
  • n
is_deleted   string  optional    

Example: n

Must be one of:
  • o
  • n
is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/cart-rows/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart-rows/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-rows/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/cart-rows/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart row. Example: architecto

PUT api/v1/cart-rows/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/cart-rows/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"cart_header_id\": \"architecto\",
    \"source_product_in_cart_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"quantity\": 67,
    \"price\": 12,
    \"price_in_local_currency\": 77,
    \"identifier\": \"i\",
    \"product_variants\": [
        []
    ],
    \"is_conformity_control\": \"o\",
    \"reservation_id\": \"y\",
    \"negociation_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"is_seller_valid\": \"o\",
    \"is_ordered\": \"o\",
    \"is_deleted\": \"n\",
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-rows/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "cart_header_id": "architecto",
    "source_product_in_cart_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "quantity": 67,
    "price": 12,
    "price_in_local_currency": 77,
    "identifier": "i",
    "product_variants": [
        []
    ],
    "is_conformity_control": "o",
    "reservation_id": "y",
    "negociation_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "is_seller_valid": "o",
    "is_ordered": "o",
    "is_deleted": "n",
    "is_active": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/cart-rows/{id}

PATCH api/v1/cart-rows/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart row. Example: architecto

Body Parameters

cart_header_id   uuid     

Existing cart header identifier. Example: architecto

source_product_in_cart_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_id   uuid  optional    

nullable Product identifier. Required when product_lot_id is absent. Example: architecto

product_lot_id   uuid  optional    

nullable Product lot identifier. Required when product_id is absent. Example: architecto

quantity   integer     

Must be at least 1. Example: 67

price   number     

Must be at least 0. Example: 12

price_in_local_currency   number  optional    

Must be at least 0. Example: 77

identifier   string  optional    

Must not be greater than 255 characters. Example: i

product_variants   object[]  optional    

nullable Selected product variants.

is_conformity_control   string  optional    

Example: o

Must be one of:
  • o
  • n
reservation_id   string  optional    

Must not be greater than 255 characters. Example: y

negociation_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

is_seller_valid   string  optional    

Example: o

Must be one of:
  • o
  • n
is_ordered   string  optional    

Example: o

Must be one of:
  • o
  • n
is_deleted   string  optional    

Example: n

Must be one of:
  • o
  • n
is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/cart-rows/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/cart-rows/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-rows/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/cart-rows/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart row. Example: architecto

GET api/v1/cart-on-holds

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart-on-holds" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-on-holds"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/cart-on-holds

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/cart-on-holds

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/cart-on-holds" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"seller_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"cart_row_id\": \"architecto\",
    \"state\": \"m\",
    \"is_closed\": \"o\",
    \"is_deleted\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-on-holds"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "seller_id": "architecto",
    "buyer_id": "architecto",
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "cart_row_id": "architecto",
    "state": "m",
    "is_closed": "o",
    "is_deleted": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/cart-on-holds

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

seller_id   uuid  optional    

nullable Seller UUID until user migration is complete. Example: architecto

buyer_id   uuid  optional    

nullable Buyer UUID until user migration is complete. Example: architecto

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

cart_row_id   uuid  optional    

nullable Cart row identifier. Example: architecto

state   string     

Must not be greater than 1 character. Example: m

is_closed   string  optional    

Example: o

Must be one of:
  • o
  • n
is_deleted   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/cart-on-holds/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/cart-on-holds/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-on-holds/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/cart-on-holds/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart on hold. Example: architecto

PUT api/v1/cart-on-holds/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/cart-on-holds/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"seller_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"cart_row_id\": \"architecto\",
    \"state\": \"m\",
    \"is_closed\": \"o\",
    \"is_deleted\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-on-holds/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "seller_id": "architecto",
    "buyer_id": "architecto",
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "cart_row_id": "architecto",
    "state": "m",
    "is_closed": "o",
    "is_deleted": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/cart-on-holds/{id}

PATCH api/v1/cart-on-holds/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart on hold. Example: architecto

Body Parameters

seller_id   uuid  optional    

nullable Seller UUID until user migration is complete. Example: architecto

buyer_id   uuid  optional    

nullable Buyer UUID until user migration is complete. Example: architecto

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

cart_row_id   uuid  optional    

nullable Cart row identifier. Example: architecto

state   string     

Must not be greater than 1 character. Example: m

is_closed   string  optional    

Example: o

Must be one of:
  • o
  • n
is_deleted   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/cart-on-holds/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/cart-on-holds/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/cart-on-holds/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/cart-on-holds/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the cart on hold. Example: architecto

Produits

Suggestions par IA

GΓ©nΓ©ration assistΓ©e des informations produit Γ  partir des images.

POST api/v1/ai/generate-product-info

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/ai/generate-product-info" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_name\": \"b\",
    \"is_test\": false,
    \"provider\": \"google\",
    \"model\": \"gemini-3-flash-preview\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/ai/generate-product-info"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_name": "b",
    "is_test": false,
    "provider": "google",
    "model": "gemini-3-flash-preview"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/ai/generate-product-info

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

article_name   string     

Must not be greater than 255 characters. Example: b

is_test   boolean  optional    

Example: false

provider   string  optional    

Fournisseur IA Γ  utiliser. Example: google

Must be one of:
  • google
  • openai
model   string  optional    

ModΓ¨le IA Γ  utiliser pour cette requΓͺte. Must not be greater than 100 characters. Example: gemini-3-flash-preview

images   string[]  optional    

Promotions

GET api/v1/promotions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/promotions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/promotions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/promotions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/promotions

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/promotions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"reference_price\": 4326.41688,
    \"promotion_deadline\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/promotions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "reference_price": 4326.41688,
    "promotion_deadline": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/promotions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   string     

Product UUID. Example: architecto

created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

reference_price   number     

Reference price before promotion. Example: 4326.41688

promotion_deadline   datetime  optional    

nullable Promotion deadline. Example: architecto

GET api/v1/promotions/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/promotions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/promotions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/promotions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the promotion. Example: architecto

DELETE api/v1/promotions/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/promotions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/promotions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/promotions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the promotion. Example: architecto

GET api/v1/flash-sales

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/flash-sales" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/flash-sales"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/flash-sales

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/flash-sales

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/flash-sales" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"reference_price\": 4326.41688,
    \"flash_sale_deadline\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/flash-sales"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "reference_price": 4326.41688,
    "flash_sale_deadline": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/flash-sales

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   string     

Product UUID. Example: architecto

created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

reference_price   number     

Reference price before flash sale. Example: 4326.41688

flash_sale_deadline   datetime     

Flash sale deadline. Example: architecto

GET api/v1/flash-sales/{flashSale_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/flash-sales/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/flash-sales/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/flash-sales/{flashSale_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

flashSale_id   string     

The ID of the flashSale. Example: architecto

DELETE api/v1/flash-sales/{flashSale_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/flash-sales/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/flash-sales/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/flash-sales/{flashSale_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

flashSale_id   string     

The ID of the flashSale. Example: architecto

GET api/v1/auctions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/auctions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auctions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/auctions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auctions

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/auctions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"min_price\": 4326.41688,
    \"auction_deadline\": \"architecto\",
    \"is_public\": \"n\",
    \"is_closed\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auctions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "min_price": 4326.41688,
    "auction_deadline": "architecto",
    "is_public": "n",
    "is_closed": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/auctions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   string  optional    

nullable Product UUID. Example: architecto

product_lot_id   string  optional    

nullable Product lot UUID. Example: architecto

created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

min_price   number  optional    

nullable Minimum auction price. Example: 4326.41688

auction_deadline   datetime     

Auction deadline. Example: architecto

is_public   string  optional    

Example: n

Must be one of:
  • o
  • n
is_closed   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/auctions/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/auctions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auctions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/auctions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the auction. Example: architecto

DELETE api/v1/auctions/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/auctions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auctions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/auctions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the auction. Example: architecto

GET api/v1/auction-users

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/auction-users" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auction-users"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/auction-users

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auction-users

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/auction-users" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"price\": 27,
    \"is_validate\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auction-users"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "price": 27,
    "is_validate": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/auction-users

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

price   number     

Must be at least 0. Example: 27

is_validate   string  optional    

Must be 1 character. Example: n

Must be one of:
  • o
  • n

GET api/v1/auction-users/{auctionUser_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/auction-users/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auction-users/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/auction-users/{auctionUser_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

auctionUser_id   string     

The ID of the auctionUser. Example: architecto

PUT api/v1/auction-users/{auctionUser_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/auction-users/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"price\": 27,
    \"is_validate\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auction-users/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "price": 27,
    "is_validate": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/auction-users/{auctionUser_id}

PATCH api/v1/auction-users/{auctionUser_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

auctionUser_id   string     

The ID of the auctionUser. Example: architecto

Body Parameters

price   number     

Must be at least 0. Example: 27

is_validate   string  optional    

Must be 1 character. Example: n

Must be one of:
  • o
  • n

DELETE api/v1/auction-users/{auctionUser_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/auction-users/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/auction-users/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/auction-users/{auctionUser_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

auctionUser_id   string     

The ID of the auctionUser. Example: architecto

GET api/v1/setting-auctions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/setting-auctions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-auctions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/setting-auctions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/setting-auctions

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/setting-auctions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"max_hour\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-auctions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "max_hour": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/setting-auctions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

max_hour   integer     

Must be at least 1. Example: 16

GET api/v1/setting-auctions/{settingAuction_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/setting-auctions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-auctions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/setting-auctions/{settingAuction_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

settingAuction_id   string     

The ID of the settingAuction. Example: architecto

PUT api/v1/setting-auctions/{settingAuction_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/setting-auctions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"max_hour\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-auctions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "max_hour": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/setting-auctions/{settingAuction_id}

PATCH api/v1/setting-auctions/{settingAuction_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

settingAuction_id   string     

The ID of the settingAuction. Example: architecto

Body Parameters

max_hour   integer     

Must be at least 1. Example: 16

DELETE api/v1/setting-auctions/{settingAuction_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/setting-auctions/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-auctions/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/setting-auctions/{settingAuction_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

settingAuction_id   string     

The ID of the settingAuction. Example: architecto

GET api/v1/setting-flash-sales

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/setting-flash-sales" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/setting-flash-sales

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/setting-flash-sales

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"max_hour\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "max_hour": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/setting-flash-sales

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

max_hour   integer     

Must be at least 1. Example: 16

GET api/v1/setting-flash-sales/{settingFlashSale_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/setting-flash-sales/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/setting-flash-sales/{settingFlashSale_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

settingFlashSale_id   string     

The ID of the settingFlashSale. Example: architecto

PUT api/v1/setting-flash-sales/{settingFlashSale_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"max_hour\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "max_hour": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/setting-flash-sales/{settingFlashSale_id}

PATCH api/v1/setting-flash-sales/{settingFlashSale_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

settingFlashSale_id   string     

The ID of the settingFlashSale. Example: architecto

Body Parameters

max_hour   integer     

Must be at least 1. Example: 16

DELETE api/v1/setting-flash-sales/{settingFlashSale_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/setting-flash-sales/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/setting-flash-sales/{settingFlashSale_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

settingFlashSale_id   string     

The ID of the settingFlashSale. Example: architecto

Recherche avancΓ©e

GET api/v1/advanced-searches

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/advanced-searches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advanced-searches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/advanced-searches

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/advanced-searches

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/advanced-searches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"model_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"brand_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"section\": 76,
    \"is_notified\": \"n\",
    \"created_by_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"found\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advanced-searches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "model_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "brand_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "section": 76,
    "is_notified": "n",
    "created_by_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "found": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/advanced-searches

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

article_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

section   integer  optional    

Must be at least 0. Example: 76

is_notified   string  optional    

Example: n

Must be one of:
  • o
  • n
created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

found   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/advanced-searches/{advancedSearch_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/advanced-searches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advanced-searches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/advanced-searches/{advancedSearch_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

advancedSearch_id   string     

The ID of the advancedSearch. Example: architecto

PUT api/v1/advanced-searches/{advancedSearch_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/advanced-searches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"model_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"brand_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"section\": 76,
    \"is_notified\": \"o\",
    \"created_by_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"found\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advanced-searches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "model_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "brand_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "section": 76,
    "is_notified": "o",
    "created_by_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "found": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/advanced-searches/{advancedSearch_id}

PATCH api/v1/advanced-searches/{advancedSearch_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

advancedSearch_id   string     

The ID of the advancedSearch. Example: architecto

Body Parameters

article_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

section   integer  optional    

Must be at least 0. Example: 76

is_notified   string  optional    

Example: o

Must be one of:
  • o
  • n
created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

found   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/advanced-searches/{advancedSearch_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/advanced-searches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advanced-searches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/advanced-searches/{advancedSearch_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

advancedSearch_id   string     

The ID of the advancedSearch. Example: architecto

GET api/v1/advancedsearches

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/advancedsearches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advancedsearches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/advancedsearches

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/advancedsearches

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/advancedsearches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"model_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"brand_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"section\": 76,
    \"is_notified\": \"n\",
    \"created_by_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"found\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advancedsearches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "model_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "brand_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "section": 76,
    "is_notified": "n",
    "created_by_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "found": "o"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/advancedsearches

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

article_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

section   integer  optional    

Must be at least 0. Example: 76

is_notified   string  optional    

Example: n

Must be one of:
  • o
  • n
created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

found   string  optional    

Example: o

Must be one of:
  • o
  • n

GET api/v1/advancedsearches/{advancedSearch_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/advancedsearches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advancedsearches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/advancedsearches/{advancedSearch_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

advancedSearch_id   string     

The ID of the advancedSearch. Example: architecto

PUT api/v1/advancedsearches/{advancedSearch_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/advancedsearches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"model_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"brand_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"section\": 76,
    \"is_notified\": \"n\",
    \"created_by_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"found\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advancedsearches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "model_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "brand_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "section": 76,
    "is_notified": "n",
    "created_by_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "found": "o"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/advancedsearches/{advancedSearch_id}

PATCH api/v1/advancedsearches/{advancedSearch_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

advancedSearch_id   string     

The ID of the advancedSearch. Example: architecto

Body Parameters

article_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

model_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

brand_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

section   integer  optional    

Must be at least 0. Example: 76

is_notified   string  optional    

Example: n

Must be one of:
  • o
  • n
created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

found   string  optional    

Example: o

Must be one of:
  • o
  • n

DELETE api/v1/advancedsearches/{advancedSearch_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/advancedsearches/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/advancedsearches/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/advancedsearches/{advancedSearch_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

advancedSearch_id   string     

The ID of the advancedSearch. Example: architecto

Recherche produits

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/search?q=architecto&tag=architecto&category=architecto&subCategory=architecto&subcategory=architecto&article=architecto&user=architecto&page=16&itemsPerPage=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"q\": \"b\",
    \"tag\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"category\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"subCategory\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"subcategory\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"article\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"user\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"level\": \"khwaykcmyuwpwlvq\",
    \"wording\": \"w\",
    \"page\": 30,
    \"itemsPerPage\": 10
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/search"
);

const params = {
    "q": "architecto",
    "tag": "architecto",
    "category": "architecto",
    "subCategory": "architecto",
    "subcategory": "architecto",
    "article": "architecto",
    "user": "architecto",
    "page": "16",
    "itemsPerPage": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "q": "b",
    "tag": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "category": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "subCategory": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "subcategory": "21c4122b-d554-3723-966c-6d723ea5293f",
    "article": "add3503c-ebff-3875-93af-b8c6a695762b",
    "user": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "level": "khwaykcmyuwpwlvq",
    "wording": "w",
    "page": 30,
    "itemsPerPage": 10
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "tag": [
            "The selected tag is invalid."
        ],
        "category": [
            "The selected category is invalid."
        ],
        "subCategory": [
            "The selected sub category is invalid."
        ],
        "subcategory": [
            "The selected subcategory is invalid."
        ],
        "article": [
            "The selected article is invalid."
        ]
    }
}
 

GET api/v1/search-product

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/search-product?q=architecto&tag=architecto&category=architecto&subCategory=architecto&subcategory=architecto&article=architecto&user=architecto&page=16&itemsPerPage=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"q\": \"b\",
    \"tag\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"category\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"subCategory\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"subcategory\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"article\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"user\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"level\": \"khwaykcmyuwpwlvq\",
    \"wording\": \"w\",
    \"page\": 30,
    \"itemsPerPage\": 10
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/search-product"
);

const params = {
    "q": "architecto",
    "tag": "architecto",
    "category": "architecto",
    "subCategory": "architecto",
    "subcategory": "architecto",
    "article": "architecto",
    "user": "architecto",
    "page": "16",
    "itemsPerPage": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "q": "b",
    "tag": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "category": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "subCategory": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "subcategory": "21c4122b-d554-3723-966c-6d723ea5293f",
    "article": "add3503c-ebff-3875-93af-b8c6a695762b",
    "user": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "level": "khwaykcmyuwpwlvq",
    "wording": "w",
    "page": 30,
    "itemsPerPage": 10
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "tag": [
            "The selected tag is invalid."
        ],
        "category": [
            "The selected category is invalid."
        ],
        "subCategory": [
            "The selected sub category is invalid."
        ],
        "subcategory": [
            "The selected subcategory is invalid."
        ],
        "article": [
            "The selected article is invalid."
        ]
    }
}
 

Request      

GET api/v1/search-product

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

q   string  optional    

nullable Search query. Example: architecto

tag   string  optional    

uuid nullable Product tag identifier. Example: architecto

category   string  optional    

uuid nullable Category identifier. Example: architecto

subCategory   string  optional    

uuid nullable Symfony-compatible sub-category identifier. Example: architecto

subcategory   string  optional    

uuid nullable Sub-category identifier. Example: architecto

article   string  optional    

uuid nullable Article identifier. Example: architecto

user   string  optional    

uuid nullable Seller identifier. Example: architecto

page   integer  optional    

nullable Page number. Example: 16

itemsPerPage   integer  optional    

nullable Page size. Example: 16

Body Parameters

q   string  optional    

Must not be greater than 255 characters. Example: b

tag   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

category   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

subCategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

subcategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

article   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: add3503c-ebff-3875-93af-b8c6a695762b

user   string  optional    

Must be a valid UUID. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

level   string  optional    

Must not be greater than 20 characters. Example: khwaykcmyuwpwlvq

wording   string  optional    

Must not be greater than 255 characters. Example: w

page   integer  optional    

Must be at least 1. Example: 30

itemsPerPage   integer  optional    

Must be at least 1. Must not be greater than 100. Example: 10

GET api/v1/search-all

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/search-all?q=architecto&tag=architecto&category=architecto&subCategory=architecto&subcategory=architecto&article=architecto&user=architecto&page=16&itemsPerPage=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"q\": \"b\",
    \"tag\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"category\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"subCategory\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"subcategory\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"article\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"user\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"level\": \"khwaykcmyuwpwlvq\",
    \"wording\": \"w\",
    \"page\": 30,
    \"itemsPerPage\": 10
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/search-all"
);

const params = {
    "q": "architecto",
    "tag": "architecto",
    "category": "architecto",
    "subCategory": "architecto",
    "subcategory": "architecto",
    "article": "architecto",
    "user": "architecto",
    "page": "16",
    "itemsPerPage": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "q": "b",
    "tag": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "category": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "subCategory": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "subcategory": "21c4122b-d554-3723-966c-6d723ea5293f",
    "article": "add3503c-ebff-3875-93af-b8c6a695762b",
    "user": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "level": "khwaykcmyuwpwlvq",
    "wording": "w",
    "page": 30,
    "itemsPerPage": 10
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "tag": [
            "The selected tag is invalid."
        ],
        "category": [
            "The selected category is invalid."
        ],
        "subCategory": [
            "The selected sub category is invalid."
        ],
        "subcategory": [
            "The selected subcategory is invalid."
        ],
        "article": [
            "The selected article is invalid."
        ]
    }
}
 

Request      

GET api/v1/search-all

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

q   string  optional    

nullable Search query. Example: architecto

tag   string  optional    

uuid nullable Product tag identifier. Example: architecto

category   string  optional    

uuid nullable Category identifier. Example: architecto

subCategory   string  optional    

uuid nullable Symfony-compatible sub-category identifier. Example: architecto

subcategory   string  optional    

uuid nullable Sub-category identifier. Example: architecto

article   string  optional    

uuid nullable Article identifier. Example: architecto

user   string  optional    

uuid nullable Seller identifier. Example: architecto

page   integer  optional    

nullable Page number. Example: 16

itemsPerPage   integer  optional    

nullable Page size. Example: 16

Body Parameters

q   string  optional    

Must not be greater than 255 characters. Example: b

tag   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

category   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

subCategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

subcategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

article   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: add3503c-ebff-3875-93af-b8c6a695762b

user   string  optional    

Must be a valid UUID. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

level   string  optional    

Must not be greater than 20 characters. Example: khwaykcmyuwpwlvq

wording   string  optional    

Must not be greater than 255 characters. Example: w

page   integer  optional    

Must be at least 1. Example: 30

itemsPerPage   integer  optional    

Must be at least 1. Must not be greater than 100. Example: 10

GET api/v1/search-suggest-filters

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/search-suggest-filters?q=architecto&tag=architecto&category=architecto&subCategory=architecto&subcategory=architecto&article=architecto&user=architecto&page=16&itemsPerPage=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"q\": \"b\",
    \"tag\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"category\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"subCategory\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"subcategory\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"article\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"user\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"level\": \"khwaykcmyuwpwlvq\",
    \"wording\": \"w\",
    \"page\": 30,
    \"itemsPerPage\": 10
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/search-suggest-filters"
);

const params = {
    "q": "architecto",
    "tag": "architecto",
    "category": "architecto",
    "subCategory": "architecto",
    "subcategory": "architecto",
    "article": "architecto",
    "user": "architecto",
    "page": "16",
    "itemsPerPage": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "q": "b",
    "tag": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "category": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "subCategory": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "subcategory": "21c4122b-d554-3723-966c-6d723ea5293f",
    "article": "add3503c-ebff-3875-93af-b8c6a695762b",
    "user": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "level": "khwaykcmyuwpwlvq",
    "wording": "w",
    "page": 30,
    "itemsPerPage": 10
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "tag": [
            "The selected tag is invalid."
        ],
        "category": [
            "The selected category is invalid."
        ],
        "subCategory": [
            "The selected sub category is invalid."
        ],
        "subcategory": [
            "The selected subcategory is invalid."
        ],
        "article": [
            "The selected article is invalid."
        ]
    }
}
 

Request      

GET api/v1/search-suggest-filters

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

q   string  optional    

nullable Search query. Example: architecto

tag   string  optional    

uuid nullable Product tag identifier. Example: architecto

category   string  optional    

uuid nullable Category identifier. Example: architecto

subCategory   string  optional    

uuid nullable Symfony-compatible sub-category identifier. Example: architecto

subcategory   string  optional    

uuid nullable Sub-category identifier. Example: architecto

article   string  optional    

uuid nullable Article identifier. Example: architecto

user   string  optional    

uuid nullable Seller identifier. Example: architecto

page   integer  optional    

nullable Page number. Example: 16

itemsPerPage   integer  optional    

nullable Page size. Example: 16

Body Parameters

q   string  optional    

Must not be greater than 255 characters. Example: b

tag   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

category   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

subCategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

subcategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

article   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: add3503c-ebff-3875-93af-b8c6a695762b

user   string  optional    

Must be a valid UUID. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

level   string  optional    

Must not be greater than 20 characters. Example: khwaykcmyuwpwlvq

wording   string  optional    

Must not be greater than 255 characters. Example: w

page   integer  optional    

Must be at least 1. Example: 30

itemsPerPage   integer  optional    

Must be at least 1. Must not be greater than 100. Example: 10

GET api/v1/search-a

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/search-a?q=architecto&tag=architecto&category=architecto&subCategory=architecto&subcategory=architecto&article=architecto&user=architecto&page=16&itemsPerPage=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"q\": \"b\",
    \"tag\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"category\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"subCategory\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"subcategory\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"article\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"user\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"level\": \"khwaykcmyuwpwlvq\",
    \"wording\": \"w\",
    \"page\": 30,
    \"itemsPerPage\": 10
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/search-a"
);

const params = {
    "q": "architecto",
    "tag": "architecto",
    "category": "architecto",
    "subCategory": "architecto",
    "subcategory": "architecto",
    "article": "architecto",
    "user": "architecto",
    "page": "16",
    "itemsPerPage": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "q": "b",
    "tag": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "category": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "subCategory": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "subcategory": "21c4122b-d554-3723-966c-6d723ea5293f",
    "article": "add3503c-ebff-3875-93af-b8c6a695762b",
    "user": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "level": "khwaykcmyuwpwlvq",
    "wording": "w",
    "page": 30,
    "itemsPerPage": 10
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "tag": [
            "The selected tag is invalid."
        ],
        "category": [
            "The selected category is invalid."
        ],
        "subCategory": [
            "The selected sub category is invalid."
        ],
        "subcategory": [
            "The selected subcategory is invalid."
        ],
        "article": [
            "The selected article is invalid."
        ]
    }
}
 

Request      

GET api/v1/search-a

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

q   string  optional    

nullable Search query. Example: architecto

tag   string  optional    

uuid nullable Product tag identifier. Example: architecto

category   string  optional    

uuid nullable Category identifier. Example: architecto

subCategory   string  optional    

uuid nullable Symfony-compatible sub-category identifier. Example: architecto

subcategory   string  optional    

uuid nullable Sub-category identifier. Example: architecto

article   string  optional    

uuid nullable Article identifier. Example: architecto

user   string  optional    

uuid nullable Seller identifier. Example: architecto

page   integer  optional    

nullable Page number. Example: 16

itemsPerPage   integer  optional    

nullable Page size. Example: 16

Body Parameters

q   string  optional    

Must not be greater than 255 characters. Example: b

tag   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

category   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

subCategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

subcategory   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 21c4122b-d554-3723-966c-6d723ea5293f

article   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: add3503c-ebff-3875-93af-b8c6a695762b

user   string  optional    

Must be a valid UUID. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

level   string  optional    

Must not be greater than 20 characters. Example: khwaykcmyuwpwlvq

wording   string  optional    

Must not be greater than 255 characters. Example: w

page   integer  optional    

Must be at least 1. Example: 30

itemsPerPage   integer  optional    

Must be at least 1. Must not be greater than 100. Example: 10

POST api/v1/product-clicks

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/product-clicks" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fingerprint\": \"architecto\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"created_by_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/product-clicks"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fingerprint": "architecto",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "created_by_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/product-clicks

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

fingerprint   string     

Visitor/device fingerprint. Example: architecto

product_id   uuid  optional    

nullable Product UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Product lot UUID. Example: architecto

created_by_id   uuid  optional    

nullable Authenticated user UUID when known. Example: architecto

GET api/v1/products-viewed

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/products-viewed?fingerprint=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fingerprint\": \"b\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/products-viewed"
);

const params = {
    "fingerprint": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fingerprint": "b"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/products-viewed

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

fingerprint   string  optional    

Visitor/device fingerprint. Required when unauthenticated. Example: architecto

Body Parameters

fingerprint   string  optional    

Must not be greater than 2000 characters. Example: b

Remises

GET api/v1/users/account/discounts

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/discounts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/discounts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/discounts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/discounts

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/discounts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/discounts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/discounts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/discounts

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/discounts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"seller_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"old_total_amount\": 4326.41688,
    \"new_total_amount\": 4326.41688,
    \"old_total_amount_in_local_currency\": 27,
    \"new_total_amount_in_local_currency\": 39,
    \"step\": 16,
    \"seen\": \"n\",
    \"command_seller_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"command_products_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"key_conversation\": \"architecto\",
    \"cart_row_ids\": [
        \"architecto\"
    ],
    \"command_seller_row_ids\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/discounts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "seller_id": "architecto",
    "buyer_id": "architecto",
    "old_total_amount": 4326.41688,
    "new_total_amount": 4326.41688,
    "old_total_amount_in_local_currency": 27,
    "new_total_amount_in_local_currency": 39,
    "step": 16,
    "seen": "n",
    "command_seller_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "command_products_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "key_conversation": "architecto",
    "cart_row_ids": [
        "architecto"
    ],
    "command_seller_row_ids": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/discounts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

seller_id   uuid     

Seller UUID. Legacy seller is accepted. Example: architecto

buyer_id   uuid     

Buyer UUID. Legacy buyer is accepted. Example: architecto

old_total_amount   number  optional    

optional Previous total in requester currency. Example: 4326.41688

new_total_amount   number     

Proposed total in requester currency. Example: 4326.41688

old_total_amount_in_local_currency   number  optional    

Must be at least 0. Example: 27

new_total_amount_in_local_currency   number  optional    

Must be at least 0. Example: 39

step   integer     

Discount workflow step. Example: 16

seen   string  optional    

Example: n

Must be one of:
  • o
  • n
command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_products_id   string  optional    

Must be a valid UUID. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

key_conversation   string  optional    

Example: architecto

cart_row_ids   uuid[]  optional    

optional Cart rows used to build the discount chat rows.

command_seller_row_ids   uuid[]  optional    

optional Ordered rows used to build the discount chat rows.

GET api/v1/discounts/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/discounts/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/discounts/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/discounts/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the discount. Example: architecto

PUT api/v1/discounts/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/discounts/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"seller_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"old_total_amount\": 4326.41688,
    \"new_total_amount\": 4326.41688,
    \"old_total_amount_in_local_currency\": 27,
    \"new_total_amount_in_local_currency\": 39,
    \"step\": 16,
    \"seen\": \"n\",
    \"command_seller_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"command_products_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"key_conversation\": \"architecto\",
    \"cart_row_ids\": [
        \"architecto\"
    ],
    \"command_seller_row_ids\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/discounts/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "seller_id": "architecto",
    "buyer_id": "architecto",
    "old_total_amount": 4326.41688,
    "new_total_amount": 4326.41688,
    "old_total_amount_in_local_currency": 27,
    "new_total_amount_in_local_currency": 39,
    "step": 16,
    "seen": "n",
    "command_seller_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "command_products_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "key_conversation": "architecto",
    "cart_row_ids": [
        "architecto"
    ],
    "command_seller_row_ids": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/discounts/{id}

PATCH api/v1/discounts/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the discount. Example: architecto

Body Parameters

seller_id   uuid     

Seller UUID. Legacy seller is accepted. Example: architecto

buyer_id   uuid     

Buyer UUID. Legacy buyer is accepted. Example: architecto

old_total_amount   number  optional    

optional Previous total in requester currency. Example: 4326.41688

new_total_amount   number     

Proposed total in requester currency. Example: 4326.41688

old_total_amount_in_local_currency   number  optional    

Must be at least 0. Example: 27

new_total_amount_in_local_currency   number  optional    

Must be at least 0. Example: 39

step   integer     

Discount workflow step. Example: 16

seen   string  optional    

Example: n

Must be one of:
  • o
  • n
command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

command_products_id   string  optional    

Must be a valid UUID. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

key_conversation   string  optional    

Example: architecto

cart_row_ids   uuid[]  optional    

optional Cart rows used to build the discount chat rows.

command_seller_row_ids   uuid[]  optional    

optional Ordered rows used to build the discount chat rows.

GET api/v1/notification-discounts

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-discounts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-discounts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-discounts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-discounts/{notificationDiscount_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-discounts/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-discounts/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-discounts/{notificationDiscount_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationDiscount_id   string     

The ID of the notificationDiscount. Example: architecto

PUT api/v1/notification-discounts/{notificationDiscount_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-discounts/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-discounts/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-discounts/{notificationDiscount_id}

PATCH api/v1/notification-discounts/{notificationDiscount_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationDiscount_id   string     

The ID of the notificationDiscount. Example: architecto

Body Parameters

is_seen   string     

Example: n

Must be one of:
  • o
  • n

RΓ©clamations

POST api/v1/complaint-photos

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/complaint-photos" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "complaint_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "is_cover=o"\
    --form "files[]=@/tmp/phpcMS9F8" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaint-photos"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('complaint_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('is_cover', 'o');
body.append('files[]', document.querySelector('input[name="files[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/complaint-photos

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

complaint_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

files   file[]  optional    

Must be a file. Must not be greater than 2048 kilobytes.

is_cover   string  optional    

Example: o

Must be one of:
  • o
  • n

GET api/v1/complaints

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/complaints" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaints"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/complaints

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/complaints

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/complaints" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"assigned_agent_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"complaint_type_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"complaint_status_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"command_seller_id\": \"5707ca55-f609-3528-be8b-1baeaee1567e\",
    \"country\": \"jni\",
    \"content\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaints"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "assigned_agent_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "complaint_type_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "complaint_status_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "command_seller_id": "5707ca55-f609-3528-be8b-1baeaee1567e",
    "country": "jni",
    "content": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/complaints

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

assigned_agent_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

complaint_type_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

complaint_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

command_seller_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 5707ca55-f609-3528-be8b-1baeaee1567e

country   string  optional    

Must be 3 characters. Example: jni

content   string     

Example: architecto

GET api/v1/complaints/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/complaints/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaints/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/complaints/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint. Example: architecto

PUT api/v1/complaints/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/complaints/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"assigned_agent_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"complaint_type_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"complaint_status_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"command_seller_id\": \"5707ca55-f609-3528-be8b-1baeaee1567e\",
    \"country\": \"jni\",
    \"content\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaints/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "assigned_agent_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "complaint_type_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "complaint_status_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "command_seller_id": "5707ca55-f609-3528-be8b-1baeaee1567e",
    "country": "jni",
    "content": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/complaints/{id}

PATCH api/v1/complaints/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint. Example: architecto

Body Parameters

created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

assigned_agent_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

complaint_type_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

complaint_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

command_seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 5707ca55-f609-3528-be8b-1baeaee1567e

country   string  optional    

Must be 3 characters. Example: jni

content   string  optional    

Example: architecto

DELETE api/v1/complaints/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/complaints/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaints/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/complaints/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint. Example: architecto

GET api/v1/complaint-fields

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/complaint-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaint-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/complaint-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/complaint-fields

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/complaint-fields" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "complaint_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "created_by_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "content=architecto"\
    --form "file_path=n"\
    --form "seen=o"\
    --form "side=g"\
    --form "file=@/tmp/phpI1EIaS" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaint-fields"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('complaint_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('created_by_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('content', 'architecto');
body.append('file_path', 'n');
body.append('seen', 'o');
body.append('side', 'g');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/complaint-fields

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

complaint_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

content   string  optional    

Example: architecto

file   file  optional    

Must be a file. Must not be greater than 2048 kilobytes. Example: /tmp/phpI1EIaS

file_path   string  optional    

Must not be greater than 255 characters. Example: n

seen   string  optional    

Example: o

Must be one of:
  • o
  • n
side   string  optional    

Must not be greater than 25 characters. Example: g

GET api/v1/complaint-fields/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/complaint-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaint-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/complaint-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint field. Example: architecto

PUT api/v1/complaint-fields/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/complaint-fields/architecto" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "complaint_id=6ff8f7f6-1eb3-3525-be4a-3932c805afed"\
    --form "created_by_id=6b72fe4a-5b40-307c-bc24-f79acf9a1bb9"\
    --form "content=architecto"\
    --form "file_path=n"\
    --form "seen=n"\
    --form "side=g"\
    --form "file=@/tmp/php1wjZNq" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaint-fields/architecto"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('complaint_id', '6ff8f7f6-1eb3-3525-be4a-3932c805afed');
body.append('created_by_id', '6b72fe4a-5b40-307c-bc24-f79acf9a1bb9');
body.append('content', 'architecto');
body.append('file_path', 'n');
body.append('seen', 'n');
body.append('side', 'g');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/complaint-fields/{id}

PATCH api/v1/complaint-fields/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint field. Example: architecto

Body Parameters

complaint_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

created_by_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

content   string  optional    

Example: architecto

file   file  optional    

Must be a file. Must not be greater than 2048 kilobytes. Example: /tmp/php1wjZNq

file_path   string  optional    

Must not be greater than 255 characters. Example: n

seen   string  optional    

Example: n

Must be one of:
  • o
  • n
side   string  optional    

Must not be greater than 25 characters. Example: g

DELETE api/v1/complaint-fields/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/complaint-fields/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/complaint-fields/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/complaint-fields/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint field. Example: architecto

GET api/v1/reference/complaint-types

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/complaint-types" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018fee93-ea5d-7dcd-bd98-69c56d6f368f",
            "wording": "Produit non conforme",
            "position": 1,
            "is_active": "n",
            "created_at": "2024-06-06T17:23:42.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/complaint-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/complaint-types

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22,
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22,
    "is_active": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/complaint-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer  optional    

Must be at least 1. Example: 22

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/reference/complaint-types/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/complaint-types/018fee93-ea5d-7dcd-bd98-69c56d6f368f" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types/018fee93-ea5d-7dcd-bd98-69c56d6f368f"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018fee93-ea5d-7dcd-bd98-69c56d6f368f",
        "wording": "Produit non conforme",
        "position": 1,
        "is_active": "n",
        "created_at": "2024-06-06T17:23:42.000000Z",
        "updated_at": "2026-07-17T18:03:39.000000Z"
    }
}
 

Request      

GET api/v1/reference/complaint-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint type. Example: 018fee93-ea5d-7dcd-bd98-69c56d6f368f

PUT api/v1/reference/complaint-types/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types/018fee93-ea5d-7dcd-bd98-69c56d6f368f" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22,
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types/018fee93-ea5d-7dcd-bd98-69c56d6f368f"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22,
    "is_active": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/complaint-types/{id}

PATCH api/v1/reference/complaint-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint type. Example: 018fee93-ea5d-7dcd-bd98-69c56d6f368f

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer  optional    

Must be at least 1. Example: 22

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/reference/complaint-types/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types/018fee93-ea5d-7dcd-bd98-69c56d6f368f" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-types/018fee93-ea5d-7dcd-bd98-69c56d6f368f"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/complaint-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint type. Example: 018fee93-ea5d-7dcd-bd98-69c56d6f368f

GET api/v1/reference/complaint-statuses

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018feec0-59b2-7b5a-838a-06f7bd064ee1",
            "wording": "en cours de traitement",
            "position": 1,
            "is_active": "o",
            "created_at": "2024-06-06T18:12:14.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0192d2b5-af35-7a59-8665-d813063a6d25",
            "wording": "en attente",
            "position": 2,
            "is_active": "o",
            "created_at": "2024-10-28T10:39:35.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0192d2b6-125c-74e4-b84a-6f18f1d8ec58",
            "wording": "traité",
            "position": 3,
            "is_active": "o",
            "created_at": "2024-10-28T10:40:00.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0192d2b6-4c7f-7a9e-9a48-289b7b8d2620",
            "wording": "terminée",
            "position": 4,
            "is_active": "o",
            "created_at": "2024-10-28T10:40:15.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/complaint-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/complaint-statuses

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22,
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22,
    "is_active": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/complaint-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer  optional    

Must be at least 1. Example: 22

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/reference/complaint-statuses/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses/018feec0-59b2-7b5a-838a-06f7bd064ee1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses/018feec0-59b2-7b5a-838a-06f7bd064ee1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018feec0-59b2-7b5a-838a-06f7bd064ee1",
        "wording": "en cours de traitement",
        "position": 1,
        "is_active": "o",
        "created_at": "2024-06-06T18:12:14.000000Z",
        "updated_at": "2026-07-17T18:03:39.000000Z"
    }
}
 

Request      

GET api/v1/reference/complaint-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint status. Example: 018feec0-59b2-7b5a-838a-06f7bd064ee1

PUT api/v1/reference/complaint-statuses/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses/018feec0-59b2-7b5a-838a-06f7bd064ee1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22,
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses/018feec0-59b2-7b5a-838a-06f7bd064ee1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22,
    "is_active": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/complaint-statuses/{id}

PATCH api/v1/reference/complaint-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint status. Example: 018feec0-59b2-7b5a-838a-06f7bd064ee1

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer  optional    

Must be at least 1. Example: 22

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/reference/complaint-statuses/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses/018feec0-59b2-7b5a-838a-06f7bd064ee1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/complaint-statuses/018feec0-59b2-7b5a-838a-06f7bd064ee1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/complaint-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the complaint status. Example: 018feec0-59b2-7b5a-838a-06f7bd064ee1

RΓ©compenses

POST api/v1/rewards/accrue

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/rewards/accrue" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"owner_id\": \"architecto\",
    \"amount\": 4326.41688,
    \"profile\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/rewards/accrue"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "owner_id": "architecto",
    "amount": 4326.41688,
    "profile": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/rewards/accrue

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

owner_id   string     

Reward owner UUID. Example: architecto

amount   number     

Paid amount used to compute points. Example: 4326.41688

profile   string     

Reward profile: buyer or seller. Legacy boolean profile/isSeller is accepted. Example: architecto

GET api/v1/rewards

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/rewards" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/rewards"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/rewards

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/rewards/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/rewards/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/rewards/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/rewards/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reward. Example: architecto

PUT api/v1/rewards/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/rewards/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"owner_id\": \"architecto\",
    \"product_id\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/rewards/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "owner_id": "architecto",
    "product_id": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/rewards/{id}

PATCH api/v1/rewards/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reward. Example: architecto

Body Parameters

owner_id   string  optional    

optional Owner UUID used until route auth is enforced. Example: architecto

product_id   string     

Reward product UUID. Legacy product field is accepted. Example: architecto

RΓ©fΓ©rentiels catalogue

GET api/v1/reference/regions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/regions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/regions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018d1693-0886-7abf-935d-4773c99f8203",
            "wording": "Europe",
            "position": 1,
            "is_active": "o",
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1693-0886-75d6-92f7-61493085b589",
            "wording": "Afrique",
            "position": 2,
            "is_active": "o",
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1693-0886-79d7-907f-577e8ba01c83",
            "wording": "Amérique",
            "position": 3,
            "is_active": "o",
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/regions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/regions

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/regions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"Europe\",
    \"position\": 16,
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/regions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "Europe",
    "position": 16,
    "is_active": "n"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/regions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Region label. Example: Europe

position   integer  optional    

optional Display order. Example: 16

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

GET api/v1/reference/regions/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/regions/018d1693-0886-7abf-935d-4773c99f8203" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/regions/018d1693-0886-7abf-935d-4773c99f8203"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018d1693-0886-7abf-935d-4773c99f8203",
        "wording": "Europe",
        "position": 1,
        "is_active": "o",
        "countries": [
            {
                "id": "01932a6a-488b-7c3b-95f7-618161f8bc7e",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Allemagne",
                "indicative": "49",
                "is_active": "o",
                "iso_code": "de",
                "mask": 13,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2024-11-14T11:23:48.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "01932a6b-24a2-7b34-8d08-d7ff315ba0d8",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Autriche",
                "indicative": "43",
                "is_active": "o",
                "iso_code": "at",
                "mask": 13,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2024-11-14T11:24:45.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Belgique",
                "indicative": "32",
                "is_active": "o",
                "iso_code": "be",
                "mask": 8,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "01932a6e-bfa3-76b2-b17a-1214096f9cab",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Espagne",
                "indicative": "34",
                "is_active": "o",
                "iso_code": "es",
                "mask": 9,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2024-11-14T11:28:41.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "France",
                "indicative": "33",
                "is_active": "o",
                "iso_code": "fr",
                "mask": 9,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Italie",
                "indicative": "39",
                "is_active": "o",
                "iso_code": "it",
                "mask": 10,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Luxembourg",
                "indicative": "352",
                "is_active": "o",
                "iso_code": "lu",
                "mask": 8,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "01932a68-89a5-78ab-bea7-31e8a429e2e5",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Pays-Bas",
                "indicative": "31",
                "is_active": "o",
                "iso_code": "nl",
                "mask": 9,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2024-11-14T11:21:54.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "01932a6f-9b87-73d8-af1c-489169793426",
                "region_id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Portugal",
                "indicative": "351",
                "is_active": "o",
                "iso_code": "pt",
                "mask": 9,
                "language": "fr",
                "currency": "EUR",
                "created_at": "2024-11-14T11:29:37.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            }
        ],
        "created_at": "2026-07-17T18:03:18.000000Z",
        "updated_at": "2026-07-17T18:03:18.000000Z"
    }
}
 

Request      

GET api/v1/reference/regions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the region. Example: 018d1693-0886-7abf-935d-4773c99f8203

PUT api/v1/reference/regions/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/regions/018d1693-0886-7abf-935d-4773c99f8203" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"Europe\",
    \"position\": 16,
    \"is_active\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/regions/018d1693-0886-7abf-935d-4773c99f8203"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "Europe",
    "position": 16,
    "is_active": "n"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/regions/{id}

PATCH api/v1/reference/regions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the region. Example: 018d1693-0886-7abf-935d-4773c99f8203

Body Parameters

wording   string     

Region label. Example: Europe

position   integer  optional    

optional Display order. Example: 16

is_active   string  optional    

Example: n

Must be one of:
  • o
  • n

DELETE api/v1/reference/regions/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/regions/018d1693-0886-7abf-935d-4773c99f8203" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/regions/018d1693-0886-7abf-935d-4773c99f8203"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/regions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the region. Example: 018d1693-0886-7abf-935d-4773c99f8203

GET api/v1/reference/countries

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/countries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/countries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "01932a6a-488b-7c3b-95f7-618161f8bc7e",
            "wording": "Allemagne",
            "indicative": "49",
            "is_active": "o",
            "iso_code": "de",
            "mask": 13,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-11-14T11:23:48.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01932a6b-24a2-7b34-8d08-d7ff315ba0d8",
            "wording": "Autriche",
            "indicative": "43",
            "is_active": "o",
            "iso_code": "at",
            "mask": 13,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-11-14T11:24:45.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1693-0886-772f-b0c4-3efafe2730d4",
            "wording": "Belgique",
            "indicative": "32",
            "is_active": "o",
            "iso_code": "be",
            "mask": 8,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1693-0886-75d6-92f7-61493085b589",
            "wording": "Bénin",
            "indicative": "229",
            "is_active": "n",
            "iso_code": "bj",
            "mask": 8,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-75d6-92f7-61493085b589",
                "wording": "Afrique",
                "position": 2,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1693-0886-7abf-935d-4773c99f8203",
            "wording": "Canada",
            "indicative": "1",
            "is_active": "n",
            "iso_code": "ca",
            "mask": 10,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-79d7-907f-577e8ba01c83",
                "wording": "Amérique",
                "position": 3,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01932a6e-bfa3-76b2-b17a-1214096f9cab",
            "wording": "Espagne",
            "indicative": "34",
            "is_active": "o",
            "iso_code": "es",
            "mask": 9,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-11-14T11:28:41.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1693-0886-79d7-907f-577e8ba01c83",
            "wording": "France",
            "indicative": "33",
            "is_active": "o",
            "iso_code": "fr",
            "mask": 9,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
            "wording": "Italie",
            "indicative": "39",
            "is_active": "o",
            "iso_code": "it",
            "mask": 10,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018f8706-9cbb-7692-ba89-e56bdc8e6d43",
            "wording": "Luxembourg",
            "indicative": "352",
            "is_active": "o",
            "iso_code": "lu",
            "mask": 8,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01932a68-89a5-78ab-bea7-31e8a429e2e5",
            "wording": "Pays-Bas",
            "indicative": "31",
            "is_active": "o",
            "iso_code": "nl",
            "mask": 9,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-11-14T11:21:54.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01932a6f-9b87-73d8-af1c-489169793426",
            "wording": "Portugal",
            "indicative": "351",
            "is_active": "o",
            "iso_code": "pt",
            "mask": 9,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-7abf-935d-4773c99f8203",
                "wording": "Europe",
                "position": 1,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-11-14T11:29:37.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018f8706-9cbb-7a26-b4e0-8a0021af7442",
            "wording": "Togo",
            "indicative": "228",
            "is_active": "n",
            "iso_code": "tg",
            "mask": 8,
            "language": "fr",
            "currency": "EUR",
            "region": {
                "id": "018d1693-0886-75d6-92f7-61493085b589",
                "wording": "Afrique",
                "position": 2,
                "is_active": "o",
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/countries

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/countries

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/countries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"region_id\": \"architecto\",
    \"wording\": \"France\",
    \"indicative\": \"33\",
    \"is_active\": \"architecto\",
    \"iso_code\": \"fr\",
    \"mask\": 16,
    \"language\": \"architecto\",
    \"currency\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/countries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "region_id": "architecto",
    "wording": "France",
    "indicative": "33",
    "is_active": "architecto",
    "iso_code": "fr",
    "mask": 16,
    "language": "architecto",
    "currency": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/countries

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

region_id   uuid  optional    

nullable Existing region identifier. Example: architecto

wording   string     

Country label. Example: France

indicative   string     

International phone prefix. Example: 33

is_active   string     

Active flag: o or n. Example: architecto

iso_code   string  optional    

nullable ISO country code. Example: fr

mask   integer  optional    

nullable Phone mask length. Example: 16

language   string  optional    

nullable Default language. Example: architecto

currency   string  optional    

nullable Default currency. Example: architecto

GET api/v1/reference/countries/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/countries/018f8706-9cbb-7c5f-87b0-c2b16657577b" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/countries/018f8706-9cbb-7c5f-87b0-c2b16657577b"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018f8706-9cbb-7c5f-87b0-c2b16657577b",
        "wording": "Italie",
        "indicative": "39",
        "is_active": "o",
        "iso_code": "it",
        "mask": 10,
        "language": "fr",
        "currency": "EUR",
        "region": {
            "id": "018d1693-0886-7abf-935d-4773c99f8203",
            "wording": "Europe",
            "position": 1,
            "is_active": "o",
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        "created_at": "2026-07-17T18:03:18.000000Z",
        "updated_at": "2026-07-17T18:03:18.000000Z"
    }
}
 

Request      

GET api/v1/reference/countries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the country. Example: 018f8706-9cbb-7c5f-87b0-c2b16657577b

PUT api/v1/reference/countries/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/countries/018f8706-9cbb-7c5f-87b0-c2b16657577b" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"region_id\": \"architecto\",
    \"wording\": \"France\",
    \"indicative\": \"33\",
    \"is_active\": \"architecto\",
    \"iso_code\": \"fr\",
    \"mask\": 16,
    \"language\": \"architecto\",
    \"currency\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/countries/018f8706-9cbb-7c5f-87b0-c2b16657577b"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "region_id": "architecto",
    "wording": "France",
    "indicative": "33",
    "is_active": "architecto",
    "iso_code": "fr",
    "mask": 16,
    "language": "architecto",
    "currency": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/countries/{id}

PATCH api/v1/reference/countries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the country. Example: 018f8706-9cbb-7c5f-87b0-c2b16657577b

Body Parameters

region_id   uuid  optional    

nullable Existing region identifier. Example: architecto

wording   string     

Country label. Example: France

indicative   string     

International phone prefix. Example: 33

is_active   string     

Active flag: o or n. Example: architecto

iso_code   string  optional    

nullable ISO country code. Example: fr

mask   integer  optional    

nullable Phone mask length. Example: 16

language   string  optional    

nullable Default language. Example: architecto

currency   string  optional    

nullable Default currency. Example: architecto

DELETE api/v1/reference/countries/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/countries/018f8706-9cbb-7c5f-87b0-c2b16657577b" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/countries/018f8706-9cbb-7c5f-87b0-c2b16657577b"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/countries/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the country. Example: 018f8706-9cbb-7c5f-87b0-c2b16657577b

GET api/v1/reference/categories

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/categories" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/categories"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "0191be18-2ce7-7f1f-ad79-e98e46363ba6",
            "wording": "AGRICULTURE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/2024-09-04-17-32-18-agriculture.jpeg",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-17-32-18-agriculture.jpeg",
            "description": "Ici les articles agricoles",
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2024-09-04T17:32:21.000000Z"
        },
        {
            "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "wording": "AMEUBLEMENT",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/ameublement.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "wording": "ARTS",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/art.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "wording": "AUDIO / VIDEO",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/audio_video.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01930b4d-f0c7-799f-a5c3-93c79bf91ec1",
            "wording": "AUTRES",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/2024-11-08-10-24-37-CATEGORY+OTHER+LOGO+1.jpg",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-11-08-10-24-37-CATEGORY+OTHER+LOGO+1.jpg",
            "description": "Les autres catégories non mentionnées ",
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2024-11-08T10:24:37.000000Z"
        },
        {
            "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "wording": "BIJOUX",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/bijoux.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0d04-d58a-7376-93cf-fef856d0abe0",
            "wording": "CHAUSSURES ENFANTS",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/chaussures_enfant.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_enfant.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "wording": "CHAUSSURES FEMME",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/chaussures_femme.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "wording": "CHAUSSURES HOMME",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/chaussures_homme.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "wording": "COSMETIQUE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/cosmetique.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "wording": "CULTURE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/culture.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "wording": "ELECTRICITE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/electricite.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "wording": "ELECTROMENAGER",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/electromenager.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "wording": "ELECTRONIQUE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/electronique.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "wording": "Electronique",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
            "description": "some description",
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2024-09-04T15:45:29.000000Z"
        },
        {
            "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "wording": "INFORMATIQUE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/informatique.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "wording": "JEUX ET JOUETS",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/jeux_jouets.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "wording": "MAÇONNERIE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/maconnerie.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "wording": "MECANIQUE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/mecanique.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0cfb-9ae0-73c7-824b-41d81e380c0e",
            "wording": "MODE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/mode.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mode.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "wording": "SPORT",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/sport.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
            "wording": "VOITURE",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/2024-10-03-11-44-41-voiture.webp",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-10-03-11-44-41-voiture.webp",
            "description": "La liste des voitures",
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2024-10-03T11:44:42.000000Z"
        },
        {
            "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "wording": "VÊTEMENTS ENFANTS",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/vetement_enfant.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "wording": "VÊTEMENTS FEMME",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/vetement_femme.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "wording": "VÊTEMENTS HOMME",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/vetement_homme.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/categories

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/categories

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/categories" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "wording=architecto"\
    --form "wording_fr=architecto"\
    --form "wording_en=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "description_fr=architecto"\
    --form "description_en=architecto"\
    --form "file_path=architecto"\
    --form "file=@/tmp/phpinUsap" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/categories"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('wording', 'architecto');
body.append('wording_fr', 'architecto');
body.append('wording_en', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('description_fr', 'architecto');
body.append('description_en', 'architecto');
body.append('file_path', 'architecto');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/reference/categories

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

wording   string  optional    

nullable Legacy category label. Example: architecto

wording_fr   string  optional    

nullable French category label. Example: architecto

wording_en   string  optional    

nullable English category label. Example: architecto

description   string  optional    

nullable Category description. Example: Eius et animi quos velit et.

description_fr   string  optional    

nullable French category description. Example: architecto

description_en   string  optional    

nullable English category description. Example: architecto

file   file  optional    

optional Category image uploaded to R2. Example: /tmp/phpinUsap

file_path   string  optional    

nullable Existing R2 path. Example: architecto

GET api/v1/reference/categories/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/categories/018d0cf9-a560-75ce-a203-0c00958333c4" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/categories/018d0cf9-a560-75ce-a203-0c00958333c4"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
        "wording": "BIJOUX",
        "wording_fr": null,
        "wording_en": null,
        "file_path": "categories/photos/bijoux.png",
        "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
        "description": null,
        "description_fr": null,
        "description_en": null,
        "sub_categories": [
            {
                "id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Accessoires en Métal Précieux ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7947-a0b1-3af4501dddbd",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bagues ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7dc6-b7e3-1524f6d9efe3",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux Artisanaux ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-791b-ae58-30dba04ffe0c",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux Fantaisie ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7eb4-9559-c4a9011307b6",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux Personnalisés ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux Vintage ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7c72-b786-bbc728962a2f",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux de Créateurs ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux de Luxe ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7b0a-a264-aac7397898cd",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux de Mariage ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-713d-8a90-63990fbd4058",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux en Argent Sterling ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7882-a019-6a6f3d629460",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bijoux en Or Rose ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-72a3-bfb7-6cf69221cc50",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Boucles d'Oreilles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7592-b68b-38d49c990786",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Bracelets",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7eb1-90d8-f97383d6d85f",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Broches et épingles ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7120-bc33-f571846e065e",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Colliers et Pendentifs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-7933-9f81-b609c20f5d58",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Ensembles de Bijoux ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            {
                "id": "018d1386-602e-789e-948f-e551671eaa13",
                "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "brand_id": null,
                "wording": "Montres ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            }
        ],
        "created_at": "2026-07-17T18:03:18.000000Z",
        "updated_at": "2026-07-17T18:03:18.000000Z"
    }
}
 

Request      

GET api/v1/reference/categories/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the category. Example: 018d0cf9-a560-75ce-a203-0c00958333c4

PUT api/v1/reference/categories/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/categories/018d0cf9-a560-75ce-a203-0c00958333c4" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "wording=architecto"\
    --form "wording_fr=architecto"\
    --form "wording_en=architecto"\
    --form "description=Eius et animi quos velit et."\
    --form "description_fr=architecto"\
    --form "description_en=architecto"\
    --form "file_path=architecto"\
    --form "file=@/tmp/phpHBRlAs" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/categories/018d0cf9-a560-75ce-a203-0c00958333c4"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('wording', 'architecto');
body.append('wording_fr', 'architecto');
body.append('wording_en', 'architecto');
body.append('description', 'Eius et animi quos velit et.');
body.append('description_fr', 'architecto');
body.append('description_en', 'architecto');
body.append('file_path', 'architecto');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Request      

PUT api/v1/reference/categories/{id}

PATCH api/v1/reference/categories/{id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the category. Example: 018d0cf9-a560-75ce-a203-0c00958333c4

Body Parameters

wording   string  optional    

nullable Legacy category label. Example: architecto

wording_fr   string  optional    

nullable French category label. Example: architecto

wording_en   string  optional    

nullable English category label. Example: architecto

description   string  optional    

nullable Category description. Example: Eius et animi quos velit et.

description_fr   string  optional    

nullable French category description. Example: architecto

description_en   string  optional    

nullable English category description. Example: architecto

file   file  optional    

optional Category image uploaded to R2. Example: /tmp/phpHBRlAs

file_path   string  optional    

nullable Existing R2 path. Example: architecto

DELETE api/v1/reference/categories/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/categories/018d0cf9-a560-75ce-a203-0c00958333c4" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/categories/018d0cf9-a560-75ce-a203-0c00958333c4"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/categories/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the category. Example: 018d0cf9-a560-75ce-a203-0c00958333c4

GET api/v1/reference/sub-categories

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/sub-categories" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": "01925310-edcc-7392-80b7-9c5acb7f9b74",
            "wording": "Accessoires ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Accessoires Agricoles",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-70c2-8dc8-8072ee0ea031",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Accessoires Audio-Vidéo ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7b62-92d4-8f378605a163",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Accessoires Audio-Vidéo Divers ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7268-bec4-7b7eb70d7b19",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Accessoires TV et Audio ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Accessoires d'Ameublement ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7dbc-9a74-488ed39b1e8e",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Accessoires de Bureau Ergonomiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7340-9359-c5df31035915",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Accessoires de Câblage et Organisation ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Accessoires de Fitness ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Accessoires de Maquillage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7004-aac8-b994ed96ddda",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Accessoires de Mode",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Accessoires en Métal Précieux ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7365-991b-15dcd309e057",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Accessoires pour Caméras ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7112-b639-54757d663a2e",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Accessoires pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7d15-a31c-af3f8637c450",
            "category_id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "brand_id": null,
            "wording": "Accessoires pour électroménagers ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
                "wording": "ELECTROMENAGER",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electromenager.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7297-a0a8-e753867c3d91",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Activités Artisanales et DIY ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Activités en Plein Air ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7930-800e-35f4c1334a2f",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Alimentations électriques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7349-a1d8-1335c4807006",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Appareillage de Protection électrique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7f07-9666-1176fcda2178",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Appareils d'Automatisation et de Contrôle ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Appareils de Fitness Spécifiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7c1d-b22f-9598f1f605de",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Appareils de Mesure et Suivi ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7c33-ab45-18a5b9ba1573",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Appareils de Mesure électrique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7581-9484-92fd4e74e8b3",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Appareils de Streaming ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Appareils de Streaming ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "category_id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "brand_id": null,
            "wording": "Appareils de Traitement de l'Air ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
                "wording": "ELECTROMENAGER",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electromenager.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-76d2-a906-7f43a795bb16",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Art Numérique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-74ab-a23c-cef1937886b4",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Art Religieux et Spirituel ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-76fe-a556-4e92dce8d865",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Articles de Mariage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-774a-bfb1-39daad20e571",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Articles de Plein Air",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-78f3-b616-a7cbf3a5556c",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Artisanat en Papier ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-797f-b89d-032b7c444b82",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Arts Numismatiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Arts visuels et Beaux-Arts ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "01930b50-bb4d-764d-963d-dc753e77af90",
            "category_id": "01930b4d-f0c7-799f-a5c3-93c79bf91ec1",
            "brand_id": "01930b51-b915-7490-8a06-cb0c7293d14c",
            "wording": "Autres",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "01930b4d-f0c7-799f-a5c3-93c79bf91ec1",
                "wording": "AUTRES",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-11-08-10-24-37-CATEGORY+OTHER+LOGO+1.jpg",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-11-08-10-24-37-CATEGORY+OTHER+LOGO+1.jpg",
                "description": "Les autres catégories non mentionnées ",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-11-08T10:24:37.000000Z"
            },
            "created_at": "2024-11-08T10:27:40.000000Z",
            "updated_at": "2024-11-08T10:27:40.000000Z"
        },
        {
            "id": "018d1386-602f-74a0-ae39-4f173b095535",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Autres équipements et Gadgets Informatiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bagues ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7dc6-b7e3-1524f6d9efe3",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux Artisanaux ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-791b-ae58-30dba04ffe0c",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux Fantaisie ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7eb4-9559-c4a9011307b6",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux Personnalisés ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux Vintage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7c72-b786-bbc728962a2f",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux de Créateurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux de Luxe ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7b0a-a264-aac7397898cd",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux de Mariage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-713d-8a90-63990fbd4058",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux en Argent Sterling ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7882-a019-6a6f3d629460",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bijoux en Or Rose ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7f87-a068-ada8f3293a8a",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Bottes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Bottes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602e-72a3-bfb7-6cf69221cc50",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Boucles d'Oreilles",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-76c3-8d6a-6b12d2d142d1",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Boîtiers PC ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7592-b68b-38d49c990786",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bracelets",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7eb1-90d8-f97383d6d85f",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Broches et épingles ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "category_id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "brand_id": null,
            "wording": "Buanderie ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
                "wording": "ELECTROMENAGER",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electromenager.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Bureau et Espace de Travail ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-783c-bfe6-c2c5b10ef0e8",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Bébés (0-24 mois)",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7021-88b6-83d653606836",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Caméras et Appareils Photo ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7b7e-a1d2-fd619949e04d",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Caméras et Appareils Photo ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Cardio-Training ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7355-a567-cefd45676bb0",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Cartes Graphiques (GPU) ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7cd4-9304-5688dc421d38",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Cartes Mères ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7ecd-9b93-65ba9f7d7f7a",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Cartes d'Extension ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7ef0-995a-104d9d114fc2",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Casques et écouteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7896-ac55-33c252e3a819",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Casques et écouteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Chambre à Coucher",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7aa3-b937-53513e485bd1",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussons et Pantoufles ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7974-859f-85af26238e93",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussons et Pantoufles ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7887-9e32-ecf8677acdd9",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Chaussures",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7cd1-9b12-5b4071008b05",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures Décontractées ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7f97-bf6b-a5d8ede1f72f",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures Plates ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-79bc-9a0d-93083c1339a6",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Bureau ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Bureau ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7a75-b56f-a81ec7885f36",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Conduite ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7eb0-bb6b-3b9bc1901710",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Confort ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-78ee-b0c9-55b368da0056",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Cyclisme ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7d55-85ec-60a462219f0a",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Fitness ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7fb1-8d96-7a3bd90b235d",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Golf ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7de1-91ff-793fef52d575",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Loisirs",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7cc3-8918-03f7422ea2ea",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Luxe ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Luxe ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7fc0-b2c8-e98ca5fe52f3",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Mariage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-74c4-a1b6-02d05ca5518d",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Sport",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-72fa-8641-4db819b2e69f",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Sport ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7745-b1b6-f93f73a64a8c",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Travail ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7060-947c-26fab310e7f1",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Chaussures de Ville",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-70dc-991c-7ff41d8e6925",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Chaussures de Ville ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Chemises ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7b5a-9d68-44e27e983844",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Cinéma et Audiovisuel ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7a0c-a094-c20562bb7ad3",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Claviers et Souris ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "category_id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "brand_id": null,
            "wording": "Climatisation et Chauffage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
                "wording": "ELECTROMENAGER",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electromenager.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Coffrets Cadeaux de Cosmétiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7120-bc33-f571846e065e",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Colliers et Pendentifs",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7082-9152-3d2d78ed1dd6",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Combinaisons et Barbotes",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7e86-8ec7-c67acb01d0d1",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Console de Jeu et Accessoires ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7818-9980-e3cb4c7a1dca",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Consoles de Jeu et Accessoires ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Costumes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7840-8583-2dba307ab0d9",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Costumes et Déguisements",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-78c9-b88e-969446d14a63",
            "category_id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "brand_id": null,
            "wording": "Cuisine ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
                "wording": "ELECTROMENAGER",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electromenager.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-786c-9186-0727b06c077e",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Cuisine et Gastronomie ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Câbles et Connecteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7d67-894a-f7a09af09213",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Câbles et Connecteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Céramiques et Poteries ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-743f-b256-c19c3c45c59f",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Disjoncteurs et Interrupteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-747a-8dce-6e088a738006",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Disques durs et SSD ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Enceintes Intelligentes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-78ba-931b-13b7038468b8",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Enceintes Intelligentes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-73bc-b21a-7c67005abdf1",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Enceintes et Casques Audio ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-73dc-8c06-6f58f900aa92",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Enfants (6-12 ans)",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "Engins de Construction",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-726d-a305-a695da07fee0",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Enregistreurs et Boîtiers TV ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7933-9f81-b609c20f5d58",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Ensembles de Bijoux ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-758a-b9fe-99d477572f95",
            "category_id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
            "brand_id": null,
            "wording": "Entretien Ménager ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-7d48-791a-a702-1c800cbec6da",
                "wording": "ELECTROMENAGER",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electromenager.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electromenager.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Figurines et Jouets d'Action ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7468-be99-12c8a99a8e9f",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Fêtes et Célébrations ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7751-a1bd-890780641910",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Gravures et Estampes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-715e-85cd-fb8728f71036",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "Générateurs et Groupes électrogènes",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-784b-8e31-4e651db5aa31",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Hauts",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7cd8-bd59-385cea4cf533",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Histoire et Archéologie ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7122-9936-fb035102d91a",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Horlogerie Artistique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-75ba-91f5-2f734bec9aa0",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Imprimantes et Scanners ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7a61-b51c-f0b0058f0945",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Instruments de Musique électronique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7d50-9061-06fa5d2fb77a",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Console et Accessoires ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Construction ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-72c0-bd3a-bbd5aae4a7ce",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Construction en Bois ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7ffe-b109-7eb6d8f979eb",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Créativité ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7ed8-8de3-3a4758bc83ec",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Musique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7850-8b14-8b698620315e",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Plein Air ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-731d-9513-4eca31a30de6",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Puzzle ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Société ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7368-9ce8-9e99ea53f00c",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux de Sport ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7dac-9455-a59f9c2d701f",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Jeux et Divertissement ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-77db-8805-13e8c60d8b1a",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jeux éducatifs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jouets en Peluche ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7538-b7fc-17b0b53efcfa",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Jouets pour Enfants en Bas âge",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7858-83ac-dde8932f7ba4",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Jupes",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7467-8399-6b1b53248dbe",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Kits de Développement et Raspberry Pi ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7824-85e6-8d02e54033cf",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Langues et Linguistique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7282-bdb7-1bcf5d61d587",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Lecteurs Blu-ray et DVD ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-770e-8be0-eb394ad30398",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Littérature ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-773a-bb53-71c0ddba959e",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "Machines Agricoles",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "category_id": "0191be18-2ce7-7f1f-ad79-e98e46363ba6",
            "brand_id": null,
            "wording": "Machines Agricoles",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "0191be18-2ce7-7f1f-ad79-e98e46363ba6",
                "wording": "AGRICULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-17-32-18-agriculture.jpeg",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-17-32-18-agriculture.jpeg",
                "description": "Ici les articles agricoles",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T17:32:21.000000Z"
            },
            "created_at": "2024-09-04T17:34:18.000000Z",
            "updated_at": "2024-09-04T17:34:18.000000Z"
        },
        {
            "id": "018d1386-602f-74f5-abb0-7a47440bde2f",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Maillots de Bain",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Maillots de Bain ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-744a-a05e-9d940ccb9f18",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Maillots de Bain pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602e-711d-98fc-c644a5aee283",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Maquillage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-77b8-8518-3f83b0e1f54b",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Matériel d'étanchéité",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-73fc-aaad-06c216c59102",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Matériel de Coffrage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Matériel de Coupe",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-761d-a82c-6b61a47b4f63",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Matériel de Distribution électrique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Matériel de Fertilisation ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Matériel de Levage et de Manutention",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Matériel de Manutention ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-77f7-b14e-f4ceb9550d60",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Matériel de Nettoyage et de Préparation de Surface",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Matériel de Pulvérisation ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Matériel de Récolte",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Matériel de Sécurité",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Matériel de Traitement des Grains",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-79b6-be1b-fd14c8c2efc7",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Meubles Artistiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Meubles DIY et Personnalisés ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7432-86f0-f6129b14f9eb",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Microphones ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-79db-bbbd-7e8e9ad060f8",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Microphones et Accessoires Audio ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier Multifonctionnel ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7119-a53d-0f936c9c5156",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier Vintage et Antiquités ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Bureau à Domicile ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-762f-8cca-6e944ad74650",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Cuisine ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Jardin ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Rangement ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Salle de Bain ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Salon ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier de Terrasse et Balcon ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-726b-811a-14d76da5c531",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Mobilier pour Enfants ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-78a5-8429-dce15fb9ff0b",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Mode et Style ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7be4-9c11-a410655decc4",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Moniteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7e91-930c-d984cc5d7df2",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Moniteurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-789e-948f-e551671eaa13",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Montres ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-79d2-804b-a537fbd5d2c3",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Moteurs et Variateurs de Vitesse ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Musculation et Renforcement Musculaire ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-74e8-844c-ad22f9808160",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Musique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-701c-a44d-bb225fc0fb27",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Mémoires RAM ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Niveaux et Instruments de Mesure",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-795c-8b76-4122d4411a70",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Objets d'Art Abstrait ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7902-baee-3bc996878091",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Objets d'Art Métalliques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7ae3-9758-62c19c745cdc",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Objets d'Artisanat Artistique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Objets de Collection Artistiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7149-afdb-4cdc4c676914",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Objets de Verre Artistique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7dd4-80b1-42359556b702",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Onduleurs (UPS) ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Ordinateurs Portables ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-736d-b78b-8279e9ba4ebd",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Ordinateurs de Bureau ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-735d-842c-c13fedc84c3b",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Outils de Fixation",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "Outils de Greffage et de Taille",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Outils de Mise en Forme et de Sculpture",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-754c-a462-93871078f849",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "Outils de Perçage et de Forage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7fcf-8422-d024b233a031",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Outils et équipement de Montage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7a09-bce0-ae264b4b773c",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Pantalons",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Pantalons ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Parfums ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7ee6-b847-b79df700aab9",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Peintures ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-722e-b7e1-415b4502bb5c",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Photographies Artistiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "0192523a-9173-7512-acc4-e46f186b7dc8",
            "category_id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
            "brand_id": "01925233-ffa4-7b9f-9a7e-c7145aace772",
            "wording": "Pickup Electrique",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
                "wording": "VOITURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-10-03-11-44-41-voiture.webp",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-10-03-11-44-41-voiture.webp",
                "description": "La liste des voitures",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-10-03T11:44:42.000000Z"
            },
            "created_at": "2024-10-03T11:53:43.000000Z",
            "updated_at": "2024-10-03T11:53:43.000000Z"
        },
        {
            "id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "Pompes Industrielles",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-71ff-b4fc-4fb331e1e08b",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Processeurs (CPU) ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits de Beauté Naturels et Biologiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits de Maquillage Professionnel ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits de Protection Solaire ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits de Soin de la Peau ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits de Soin des Ongles ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7921-8147-ea2ddae61685",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits de Soins pour Hommes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Produits pour le Corps ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7bc0-88da-ae320df8d343",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Pulls et Cardigans",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Pulls et Sweats ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7d0a-82aa-f6eaab61fb32",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Refroidissement ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-77d8-b5fe-d8e991cf5fcd",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Religion et Spiritualité ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-73ca-9d73-e4d7bcc89caf",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Robes",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7020-880e-a45279f8589f",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Robes de créateurs",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7815-bda1-6f330007106b",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Réseaux et Connectivité ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7b07-8147-39f146d69c95",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Salle à Manger ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "category_id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
            "brand_id": null,
            "wording": "Sandales ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-3c75-7f3a-b318-5c1eb948ec06",
                "wording": "CHAUSSURES HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7220-8fa1-64fc7be94459",
            "category_id": "018d0d04-ae70-7d78-841f-302d4ea42138",
            "brand_id": null,
            "wording": "Sandales ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-ae70-7d78-841f-302d4ea42138",
                "wording": "CHAUSSURES FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/chaussures_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/chaussures_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-71f9-8bee-544e043716c4",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Sciences et Nature ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7281-a148-241a862edfdd",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Sculptures ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7977-8454-bf253a364d2c",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Serveurs et équipement Professionnel ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-78ba-82a9-b30050074999",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Shorts ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "0192bf3e-7ee7-72bb-9c96-c9b9fd3fca77",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": "0192bf41-ccf1-7adc-8066-1a579e2afd8c",
            "wording": "Smart TV",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-10-24T15:56:36.000000Z",
            "updated_at": "2024-10-24T15:56:36.000000Z"
        },
        {
            "id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Smartphones ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-79c8-a48f-663995109c8e",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Smartwatches ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "category_id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
            "brand_id": null,
            "wording": "Soins Capillaires ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-1ad8-7f6d-b7fa-f84081d38caf",
                "wording": "COSMETIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/cosmetique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/cosmetique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7398-91ff-a83add733b82",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Sous-vêtements et Lingerie",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Sous-vêtements et Nuit ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7bb8-95e3-7daca0a6e67a",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Sports d'équipe ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Sports de Raquette ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-71b2-a11e-5d5958eeb0f2",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Sports et Loisirs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7e4a-afd2-b7ba279ed870",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Sportswear",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7c2d-ba41-e2403e2bbabd",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Stockage et Disques Durs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7ded-8069-7b3c3e4b139c",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Systèmes de Gestion de l'énergie",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7c4b-862f-098d29623d6c",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "Systèmes de Son ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "T-shirts ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7657-a7b5-aa02d80c9815",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "T-shirts de sport",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7de0-8b6e-42676a2f4ce0",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "Tablettes ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7920-8f89-f873a9f8f545",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "Technologie et Gadgets ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7b62-8bc9-ad5bc0fa2aca",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Tenues de Cérémonie pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "0190ee02-b511-7c36-9745-d741496fc526",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Testt",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2024-07-26T07:47:53.000000Z",
            "updated_at": "2024-07-26T07:47:53.000000Z"
        },
        {
            "id": "018d1386-6030-7e98-9caa-562cceec10ea",
            "category_id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
            "brand_id": null,
            "wording": "Textiles Artistiques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-fe99-7291-8bbb-aba6896122ce",
                "wording": "ARTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/art.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/art.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7686-9f0e-2e5b28ca31d4",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Tout-Petits (2-5 ans)",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7783-8254-2f801371017d",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "Transformateurs électriques ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7362-9879-a7076031bcfb",
            "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "brand_id": null,
            "wording": "Téléviseurs ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
                "wording": "AMEUBLEMENT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/ameublement.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7dd6-9ab6-c7fce542b58a",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vestes et Manteaux",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vestes et Manteaux ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "01925234-743c-7477-a12b-77c4d0288a75",
            "category_id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
            "brand_id": "01925233-ffa4-7b9f-9a7e-c7145aace772",
            "wording": "Voiture Diesel",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
                "wording": "VOITURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-10-03-11-44-41-voiture.webp",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-10-03-11-44-41-voiture.webp",
                "description": "La liste des voitures",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-10-03T11:44:42.000000Z"
            },
            "created_at": "2024-10-03T11:47:02.000000Z",
            "updated_at": "2024-10-03T11:47:02.000000Z"
        },
        {
            "id": "01925234-a59b-7319-a298-0c7f004afc2c",
            "category_id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
            "brand_id": "01925233-ffa4-7b9f-9a7e-c7145aace772",
            "wording": "Voiture de sport",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
                "wording": "VOITURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-10-03-11-44-41-voiture.webp",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-10-03-11-44-41-voiture.webp",
                "description": "La liste des voitures",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-10-03T11:44:42.000000Z"
            },
            "created_at": "2024-10-03T11:47:14.000000Z",
            "updated_at": "2024-10-03T11:47:14.000000Z"
        },
        {
            "id": "01925234-39ef-7f53-ba96-6eaf0fd3d786",
            "category_id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
            "brand_id": "01925233-ffa4-7b9f-9a7e-c7145aace772",
            "wording": "Voiture électrique",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "01925232-5350-7bfb-bb7e-0a62d08aafd8",
                "wording": "VOITURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-10-03-11-44-41-voiture.webp",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-10-03-11-44-41-voiture.webp",
                "description": "La liste des voitures",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-10-03T11:44:42.000000Z"
            },
            "created_at": "2024-10-03T11:46:47.000000Z",
            "updated_at": "2024-10-03T11:46:47.000000Z"
        },
        {
            "id": "018d1386-6030-78e5-8315-96567aaac553",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "Véhicules Industriels",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "category_id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
            "brand_id": null,
            "wording": "Véhicules Miniatures et Circuits ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-d9f8-7981-b3bd-d8c578684f33",
                "wording": "JEUX ET JOUETS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/jeux_jouets.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/jeux_jouets.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-79dd-8c48-0a44e36033be",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements d'Extérieur",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7cd9-b761-d3b1bbece465",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements d'Extérieur pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7288-9c91-77bd26459ecd",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Danse et de Performance",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7388-a4ba-288be4f8ef02",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Danse et de Performance",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Danse et de Performance ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7865-a614-db47dc0d988a",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Détente",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-76db-a1c0-0810d52d5837",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Luxe",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-798b-a2fe-761e5682852f",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Luxe ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-784e-9dac-fdf42c54325d",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Mariage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7bbb-8c59-41b6c5ba0e4c",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Marque Spécifique",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7e66-b2e2-542ccf48b22e",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Marques Spécifiques pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-79cc-9563-5c257a0358d1",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Maternité",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-73a7-98c4-0a4cca8f13a3",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Maternité pour Filles",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7060-86ed-b5f5a10ad00c",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Maternité pour Garçons",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7035-a05d-18be5781a22a",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Moto ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7d9f-99e1-b31117840d10",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Nuit",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7182-b10a-6d0ef283b23a",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Nuit pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7dfd-85e2-1dc8d907ab21",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Plein Air",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Plein Air ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-73a8-bb15-2288201986dd",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Pluie ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "Vêtements de Sport ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-731b-b282-b539136d899a",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Sport ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7ade-bf0f-5c5a09ebf98c",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Sport et de Yoga",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7a53-9433-28405bdc9b33",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Sport pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-730b-892f-a980177c3102",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Sportswear",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-756b-919f-84437104439e",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Sportswear pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7568-9787-667ac05dac13",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Tailles Spéciales",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7a3f-bbdd-1ca47ad0314a",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Travail",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-775f-85f6-c32de68586d0",
            "category_id": "018d0d02-8350-7d30-a9d8-874c031c393d",
            "brand_id": null,
            "wording": "Vêtements de Travail",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-8350-7d30-a9d8-874c031c393d",
                "wording": "VÊTEMENTS FEMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_femme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_femme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-76de-b0da-111536c44214",
            "category_id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
            "brand_id": null,
            "wording": "Vêtements de Travail ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-2a07-7f6e-ba69-a12200f2b697",
                "wording": "VÊTEMENTS HOMME",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_homme.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_homme.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-723e-a2c2-7ad950bf86c7",
            "category_id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
            "brand_id": null,
            "wording": "Vêtements de Vacances et Thématiques pour Enfants",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d02-acd0-79d2-8cf3-0786bdb7ebee",
                "wording": "VÊTEMENTS ENFANTS",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/vetement_enfant.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/vetement_enfant.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7d78-9f88-9a9986b2a6b9",
            "category_id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
            "brand_id": null,
            "wording": "Webcams et Caméras ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-7948-70db-b21e-1b1a2397be58",
                "wording": "INFORMATIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/informatique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/informatique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7561-ac7b-dbf63a092493",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "échafaudages et Plates-formes de Travail",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7064-bc72-7a03c1dc1a7f",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "éclairage Industriel",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-799b-9484-37dc498d1138",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "éducation et Apprentissage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-71a6-9da7-aa587912a6f1",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "électronique de Maison Connectée ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-74b9-8e15-2b95ff1b6419",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "équipement DJ ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-7b0d-ba0a-cd93986b7f86",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "équipement de Conférence et de Télétravail ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-79c0-a1ac-18403b474e55",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "équipement de Contrôle et de Gestion",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-75c5-b6fb-fef101eebc16",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "équipement de Fitness Connecté ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7fe4-b368-5a08f2024d3d",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "équipement de Pâturage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7c9d-9e53-1628aea43668",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "équipement de Radiodiffusion en Direct (Streaming)",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-602f-781b-86af-097c1c034dd2",
            "category_id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
            "brand_id": null,
            "wording": "équipement de Réseau ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-5104-7cc3-89fb-5c1525802744",
                "wording": "ELECTRONIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electronique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electronique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7bc8-ad77-f024f68d49dd",
            "category_id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
            "brand_id": null,
            "wording": "équipement de Soudage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-8e22-7fd0-9aea-57cb97d7fab0",
                "wording": "MAÇONNERIE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/maconnerie.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/maconnerie.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7918-839a-8ed438db997c",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "équipement de Stockage ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7c5a-b9b5-95da2aee1f2c",
            "category_id": "018d0cfb-25c9-757c-b374-449d9badc43b",
            "brand_id": null,
            "wording": "équipement de Studio et Enregistrement ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-25c9-757c-b374-449d9badc43b",
                "wording": "AUDIO / VIDEO",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/audio_video.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/audio_video.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-79e3-b649-41ae810a1ac3",
            "category_id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
            "brand_id": null,
            "wording": "équipement de Test électrique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d04-10bd-7bd4-a3e4-0dfd0b7ee85b",
                "wording": "ELECTRICITE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/electricite.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/electricite.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7cd5-8ee7-1e56da0541eb",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "équipement de Transport ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-75dc-9684-c020091f6988",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "équipements de Boxe et Arts Martiaux ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7a3b-8f45-722215fa1371",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Climatisation et de Réfrigération",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7b90-90b8-1dae22bb78f8",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Forage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-77c2-92fd-a846bf302fd8",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "équipements de Golf ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-7916-b472-35f42e011e10",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Levage",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-73d9-b616-26bdd9980747",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Manutention",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-75cd-8461-d1a60c42d6d4",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Nettoyage Industriel",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7170-9bc3-1b2e1d397d58",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Production Industrielle",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-730b-a669-fcc4cb9a42cc",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "équipements de Semis et Plantation",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-602f-7ad6-9e9f-208d1c604d0e",
            "category_id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
            "brand_id": null,
            "wording": "équipements de Sport Nautique ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfa-ac90-7950-89c4-657a42e87e16",
                "wording": "SPORT",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/sport.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/sport.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        {
            "id": "018d1386-6030-73e8-8984-cb3a6ef9e053",
            "category_id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
            "brand_id": null,
            "wording": "équipements de Traitement des Déchets",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-5ed2-7a64-b6ad-d7ad75332a53",
                "wording": "MECANIQUE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/mecanique.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/mecanique.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-7e90-8f38-73ead5df1f25",
            "category_id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
            "brand_id": null,
            "wording": "équipements de Travail du Sol",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0d03-b914-7813-94c3-7166f2a45e2e",
                "wording": "Electronique",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/2024-09-04-15-45-29-8.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/2024-09-04-15-45-29-8.png",
                "description": "some description",
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2024-09-04T15:45:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-79fc-9153-1f61dc47d28e",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "éthique et Durabilité ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        },
        {
            "id": "018d1386-6030-738c-98ed-c199fc958235",
            "category_id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
            "brand_id": null,
            "wording": "événements Culturels et Spectacles ",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cfb-d02a-7a3d-b2a8-7ac5350dc06a",
                "wording": "CULTURE",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/culture.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/culture.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:19.000000Z",
                "updated_at": "2026-07-17T18:03:19.000000Z"
            },
            "created_at": "2026-07-17T18:03:19.000000Z",
            "updated_at": "2026-07-17T18:03:19.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/sub-categories

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/sub-categories

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"category_id\": \"architecto\",
    \"brand_id\": \"architecto\",
    \"wording\": \"architecto\",
    \"wording_fr\": \"architecto\",
    \"wording_en\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "category_id": "architecto",
    "brand_id": "architecto",
    "wording": "architecto",
    "wording_fr": "architecto",
    "wording_en": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/sub-categories

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

category_id   uuid  optional    

nullable Existing category identifier. Example: architecto

brand_id   uuid  optional    

nullable Existing brand identifier. Example: architecto

wording   string  optional    

nullable Legacy sub-category label. Example: architecto

wording_fr   string  optional    

nullable French sub-category label. Example: architecto

wording_en   string  optional    

nullable English sub-category label. Example: architecto

GET api/v1/reference/sub-categories/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/sub-categories/0190ee02-b511-7c36-9745-d741496fc526" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories/0190ee02-b511-7c36-9745-d741496fc526"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "0190ee02-b511-7c36-9745-d741496fc526",
        "category_id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
        "brand_id": null,
        "wording": "Testt",
        "wording_fr": null,
        "wording_en": null,
        "category": {
            "id": "018d0cfb-01ab-7b11-a8c4-69fa8f6af6ee",
            "wording": "AMEUBLEMENT",
            "wording_fr": null,
            "wording_en": null,
            "file_path": "categories/photos/ameublement.png",
            "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/ameublement.png",
            "description": null,
            "description_fr": null,
            "description_en": null,
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        "created_at": "2024-07-26T07:47:53.000000Z",
        "updated_at": "2024-07-26T07:47:53.000000Z"
    }
}
 

Request      

GET api/v1/reference/sub-categories/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the sub category. Example: 0190ee02-b511-7c36-9745-d741496fc526

PUT api/v1/reference/sub-categories/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories/0190ee02-b511-7c36-9745-d741496fc526" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"category_id\": \"architecto\",
    \"brand_id\": \"architecto\",
    \"wording\": \"architecto\",
    \"wording_fr\": \"architecto\",
    \"wording_en\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories/0190ee02-b511-7c36-9745-d741496fc526"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "category_id": "architecto",
    "brand_id": "architecto",
    "wording": "architecto",
    "wording_fr": "architecto",
    "wording_en": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/sub-categories/{id}

PATCH api/v1/reference/sub-categories/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the sub category. Example: 0190ee02-b511-7c36-9745-d741496fc526

Body Parameters

category_id   uuid  optional    

nullable Existing category identifier. Example: architecto

brand_id   uuid  optional    

nullable Existing brand identifier. Example: architecto

wording   string  optional    

nullable Legacy sub-category label. Example: architecto

wording_fr   string  optional    

nullable French sub-category label. Example: architecto

wording_en   string  optional    

nullable English sub-category label. Example: architecto

DELETE api/v1/reference/sub-categories/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories/0190ee02-b511-7c36-9745-d741496fc526" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/sub-categories/0190ee02-b511-7c36-9745-d741496fc526"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/sub-categories/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the sub category. Example: 0190ee02-b511-7c36-9745-d741496fc526

GET api/v1/reference/brands

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/brands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/brands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-72fb-7219-909d-45d63631e250",
            "wording": "3.1 Phillip Lim",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7306-7061-8a56-57026329a932",
            "wording": "8 by YOOX",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "AEG",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Acne Studios",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Acorelle",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-730f-7220-990e-238e084e3373",
            "wording": "Adax",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Adeline Cacheux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Adidas",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "Adler",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Aerin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Agatha",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "Airlux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
            "wording": "Airstar",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8171-726a-a030-2570fad0321d",
            "wording": "Akane",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4d35-7179-8891-12edb0723d80",
            "wording": "Akillis",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63e5-72ff-b091-5a04d2b69cd6",
            "wording": "AkriviA",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-732b-7122-9a70-9e68239375f1",
            "wording": "Alba Moda",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Alberta Ferretti",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Aldo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Alexander McQueen",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Alexander Wang",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Alice Hubert",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "AllSaints",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Altuzarra",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Annabel Ingall",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Annayake",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Anne Klein",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Annelise Michelson",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-63e8-73d1-9810-140a85db596d",
            "wording": "Anonimo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Antonello",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Anya Hindmarch",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Aptonia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
            "wording": "Arena",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-73f3-739a-b301-c48fdc613781",
            "wording": "Ariat",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "Ariete",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Ariston",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "Armand Nicolet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "Arthur Martin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
            "wording": "Arthur Martin Electrolux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-73fd-7086-b1ac-6f436093163b",
            "wording": "Ash",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Asics",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7407-70b6-8efb-908eeb5e778e",
            "wording": "Aspinal of London",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Ateliers deMonaco",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Audemars Piguet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
            "wording": "Augis",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Augustin Matei",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Auricoste",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Aurélie Bidermann",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9582-721a-b560-ee4dcff73247",
            "wording": "Autres",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Avene",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Avenue",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Aïny",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "B'Twin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "B.R.M",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "BCBGMAXAZRIA",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7487-73c5-a937-82a7cfd87012",
            "wording": "BCBGeneration",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6245-70b2-b71a-f270c02cbec9",
            "wording": "BRM Chronographes",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "BULAGGI",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "BV Sport",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Ba&sh",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Babolat",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Baccarat",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Baggallini",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Balenciaga",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Ballin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "Balmain",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Baltic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-747d-7196-9e7a-1075765e58a3",
            "wording": "Barbour",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "Bauknecht",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Becksöndergaard",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "Beko",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "Beko Grundig",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "Bell & Ross",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "Bellavita",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Belstaff",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Bench",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Benetton",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Berluti",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Beuchat",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "Bimar",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Bimba y Lola",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Bioderma",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Biotherm",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Black & Decker",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Black Diamond",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Blauer",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "Bompani",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Boohoo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Borbonese",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Bosch",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Botkier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Bottega Veneta",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Boucheron",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Bourjois",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Boyy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Brandt",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Breguet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Breitling",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Bric's",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Briggs & Riley",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Briston",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Brunello Cucinelli",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Burberry",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
            "wording": "By Malene Birger",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "By Terry",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Call it Spring",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "Calor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Calvin Klein",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Camper",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Campomaggi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Candy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Candy Hoover",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Carhartt WIP",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Carita",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Carla Ferreri",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Carolina Herrera",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Caroline Gardner",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Cartier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Carvela",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Casio",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
            "wording": "Casselin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Cath Kidston",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Caudalie",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81c3-72f0-82d5-da896ae60738",
            "wording": "CelluBlue",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Champion",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chanel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Charlotte Olympia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Chaumet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Chiara Ferragni",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Chiarugi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6b11-7019-bbec-da98c9ee1478",
            "wording": "Chloe",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Chloé",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Christian Lacroix",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Christofle",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Christophe Claret",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-81cb-71b1-8022-f2c4314b1048",
            "wording": "Christophe Robin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Christopher Kane",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Citizen",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Clare V.",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Clarins",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4cd8-7186-859e-6a420c78a014",
            "wording": "Cleor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Coach",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Coccinelle",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Colette",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Comme des Garçons",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Conkca",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "Constructa",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Consuela",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Corto Moltedo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
            "wording": "Cult Gaia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
            "wording": "Czapek & Cie",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Cébé",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Céline Dion",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "DAKS",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "DKNY",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "DSquared2",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Daewoo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Davidoff",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "De Bethune",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "De'Longhi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "Decathlon",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Declercq",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Delonghi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Deux Lux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Diadora",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
            "wording": "Diesel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Dinh Van",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Dior",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Djula",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "Dodane 1857",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Dolce & Gabbana",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "Domena",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "Dometic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Dorothy Perkins",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "Dr. Martens",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Dubarry",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Dynafit",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Dyson",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "EWT",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "East",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "Eastpak",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Ecoalf",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Edie Parker",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elba",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8367-715e-aa0e-0097f389b4a4",
            "wording": "Electrolux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Elena Ghisellini",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c18-7265-b209-86636ee9beaf",
            "wording": "Elisabetta Franchi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5e37-7215-a03c-06f6e7912c22",
            "wording": "Elise Dray",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Elise Tsikis",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Elixir & Co",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Eliza May Rose",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Ellesse",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Emily Shing",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Energetics",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Erborian",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Erdem",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Eres",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Errea",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Esin Akan",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Esse Studios",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Esthederm",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Etnies",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7cc1-70b1-a38d-317738454f29",
            "wording": "Eton",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "Eucerin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Every Second Counts",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "Evoc",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "Extel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "F.P. Journe",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Fabletics",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "Fagor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Faith",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Falmec",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Fendi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Figue",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Fila",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "Finlux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7d05-718c-835c-0f04779e2708",
            "wording": "Fiorelli",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
            "wording": "Fjällräven",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-81d4-7077-b134-45f9f78252fc",
            "wording": "Fleurance Nature",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Fossil",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Fragrantica Dior",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "Frances Valentine",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Franciaflex",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Franke",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Fred",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7d23-7360-9c28-bd31f83f2226",
            "wording": "Fred Perry",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d29-71a5-920d-8c161765a592",
            "wording": "French Connection",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d33-7136-87db-90f8d2b47523",
            "wording": "Frye",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Fun'Ethic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Fusalp",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
            "wording": "G-Star RAW",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d4e-734c-804a-09dc46656020",
            "wording": "Gabor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
            "wording": "Gabriela Hearst",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-815b-711a-b5ad-0909f1c1a547",
            "wording": "Galenic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Gamarde",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7d57-72de-af49-4d75505d68e9",
            "wording": "Ganni",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Garancia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Garmin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d5e-717d-b460-7757ff76f29a",
            "wording": "Garrett Leight",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Gas Bijoux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4cee-7161-803c-0ac72405dea2",
            "wording": "Gaspard Yurkievich",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "Gatineau",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
            "wording": "Gedebe",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d70-7140-8e84-7122a6b6e1d3",
            "wording": "Genny",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
            "wording": "Geox",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d81-701b-9410-4b6b46fa8540",
            "wording": "Gerard Darel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
            "wording": "Gerry Weber",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d96-72f2-910b-87836a11bb0d",
            "wording": "Ghibli",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d9b-7030-be73-eea547009397",
            "wording": "Giambattista Valli",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7da2-7214-a498-c984102528bc",
            "wording": "Gianfranco Ferré",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7dab-7302-a31e-9b10153c2998",
            "wording": "Giani Bernini",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Gigi Clozeau",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Giorgio Armani",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Givenchy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7dc3-7321-bc6a-60d33157644d",
            "wording": "Glamorous",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
            "wording": "Go Dash Dot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9315-72fd-8316-66a7d3699c5c",
            "wording": "GoPro",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7dde-7074-a915-515a9b7a4f53",
            "wording": "Golden Goose Deluxe Brand",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
            "wording": "Gore Wear",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "Gorenje",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Goyard",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
            "wording": "Grafea",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7df7-72e6-b700-f56e04794297",
            "wording": "Green Coast",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
            "wording": "Gregory Sylvia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "Greyhours",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d6c-7145-9810-27b96ddf893f",
            "wording": "Grundig",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "Grönefeld",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Gucci",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7e0c-7332-84e4-d954cb74c752",
            "wording": "Guess",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Gutmann",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "H.Koenig",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
            "wording": "HUGO BOSS",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e8c-724d-866f-652940ff9a87",
            "wording": "HUNTER",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e1a-730a-86e3-053b3333b87e",
            "wording": "Haerfest",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "Haier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "Harper",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
            "wording": "Havaianas",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
            "wording": "Hayden-Harnett",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
            "wording": "Helly Hansen",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Herbelin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Hermès",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Herschel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
            "wording": "Herschel Supply Co.",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "Hisense",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Histoire d'Or",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "Hitachi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
            "wording": "Hobbs",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e66-72bb-83e4-8dd08920539d",
            "wording": "Hogan",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Hoka One One",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "Hoover",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "Hotpoint",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
            "wording": "House of Holland",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "Hublot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7e97-71ca-844a-c96cb50c0617",
            "wording": "I Medici",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "IRobot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "IWC Schaffhausen",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "Iberna",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
            "wording": "Iceberg",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "Icebreaker",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Icebug",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7eab-7093-8dc6-3dc871422580",
            "wording": "Ikks",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
            "wording": "Il Bisonte",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "InSinkErator",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "Indesit",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Inesis",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Invicta",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ebf-735e-ac6e-7d807d659587",
            "wording": "Inés de la Fressange",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Isabel Marant",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Isabelle Langlois",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-81af-7125-a055-22e2aaff2c80",
            "wording": "Ixage",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
            "wording": "J.Crew",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "J.W. Anderson",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7f14-72c0-90f3-865e60a91f50",
            "wording": "JOOP!",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Jack Wills",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Jack Wolfskin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Jacquemus",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Jaeger-LeCoultre",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "JanSport",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Jane de Boy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-62a7-7375-89b7-55bd27fe9447",
            "wording": "Jaz",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "Jean Bellecour",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Jean d'Eve",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Jerome Dreyfuss",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Jimmy Choo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "John Lewis & Partners",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-90e2-7013-b476-b36964968f1b",
            "wording": "Joma",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Joules",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Judith Leiber",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Jura",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
            "wording": "K-Way",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Kadalys",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-90e7-73eb-a977-8898ad949ebf",
            "wording": "Kalenji",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Kappa",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "Karakal",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
            "wording": "Karl Lagerfeld",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Kate Spade",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Kenwood",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Kenzo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "Kipling",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "Kipsta",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "KitchenAid",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Kitchencook",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Klarstein",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "Koenig",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Kookaburra",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "Krups",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8167-711c-9789-8705d8b5fc78",
            "wording": "L'Erbolario",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "LG",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "La Fare 1789",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-80fe-70ac-8078-326a880c7810",
            "wording": "La Prairie",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Lafuma",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "Lagrange",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Lanvin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
            "wording": "Lavazza",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Lavor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f20-70c1-afdf-bad61f98b633",
            "wording": "Le Coq Sportif",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Le Petit Olivier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Leki",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Les Georgettes",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Les Néréides",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "Liebherr",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Lierac",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81a4-70ce-8c58-3655343fb469",
            "wording": "Lierac Homme",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Lip",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
            "wording": "Listo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Loewe",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Longchamp",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "Longines",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lore Van Keer",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "Lorpen",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Lou.Yetu",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "Louis Erard",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Louis Moinet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Louis Vuitton",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Luj",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "Lulu Guinness",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "Luxell",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Luz",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Léonor Greyl",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "MCM",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Magimix",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Maison Boinet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Maison Guillemette",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Mansur Gavriel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fd7-7343-aa43-93e749c237d8",
            "wording": "Manu Atelier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Marc Jacobs",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "March LA.B",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Marion Vidal",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Mark Cross",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Marmot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Mary Gaitani",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Maty",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Mauboussin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "Mavic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
            "wording": "Mellerio dits Meller",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-819c-7253-95e2-b756d2c64062",
            "wording": "Melvita",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Mer-Air-Terre",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Merci",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Merrell",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Michael Kors",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Michel Cluizel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Michel Jordi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
            "wording": "Michel Parmigiani",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Michel Roux",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Michelin Technical Soles",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "Mido",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "Miele",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Millet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Mitsubishi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Miu Miu",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8189-7363-93e6-15e1783a6be6",
            "wording": "Mixa",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Mizuno",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Monsieur Paris",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Montane",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Morganne Bello",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Moulinex",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Moynat",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Mulberry",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Naturado en Provence",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "New Balance",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Nike",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Nilai Paris",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Nilfisk",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5468-73c3-9c65-21414ac58842",
            "wording": "Nils Avril",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Nogu",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "NordMende",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Novy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
            "wording": "Oakley",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "Oceanic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Octobre Editions",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Odile Gilbert",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Off-White",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Okhtein",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "Omega",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Oolution",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "Orfeo Paris",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Ortovox",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "Orva",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Outdoor Research",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Oxelo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "Pachamamaï",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Paco Rabanne",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8192-70da-b75c-eaa48af00b37",
            "wording": "Pai Skincare",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Palm Angels",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Panasonic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Panerai",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Panzeri",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Paola Zovar",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Patagonia",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Patek Philippe",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Patyka",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Paula Cademartori",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Payot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "Pequignet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Petzl",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Philips",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Phyt's",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Phytomer",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Pierre Lannier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-824a-72a1-a3ba-1d133b9ccf7d",
            "wording": "Planter's",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Poiray",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Polaar",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Polène",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Pomellato",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Prada",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Pratesi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "Princess",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Proenza Schouler",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "Proline",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Puma",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Punch Power",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
            "wording": "Punkt",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Pura Bali",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Puressentiel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8eed-7332-983d-520b0da44271",
            "wording": "Quechua",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Quiksilver",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Rag & Bone",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
            "wording": "Raidlight",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Rains",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Ralph Lauren",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Rebecca Minkoff",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Reebok",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Reminiscence",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Rene Furterer",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Repossi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-64c9-7087-af1c-9494e4f2f611",
            "wording": "Ressence",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8113-7385-9a93-7939bb111740",
            "wording": "Resultime",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81ba-714e-a280-ee8776b414cc",
            "wording": "Ricaud",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "Richard Mille",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Rimmel London",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Rimowa",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Rip Curl",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "Riviera & Bar",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Rivka Nahmias",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "Roadstar",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "Roborock",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Roger & Gallet",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6507-71a0-a295-a0709a7fe38d",
            "wording": "Roger Dubuis",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Roger Vivier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Roksanda",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Rolex",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Romain Gauthier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Rosières",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Rossignol",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "Rowenta",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "SEB",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Salewa",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Salomon",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Salvatore Ferragamo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Samsung",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Sanoflore",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "Sauter",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "Scholtes",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Schöffel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Sebo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "See by Chloé",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Seiko",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Seirus",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Senreve",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "Serge Thoraval",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "Severin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "Sharp",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "Siemens",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "Siemens Home",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d4b-70b4-9837-86138eab5405",
            "wording": "Simeo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Simon Miller",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "Siméo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "Sinn",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Sisley",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Smartwool",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "Smeg",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "Solac",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "Sophie Bille Brahe",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Sothys",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Speake-Marin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Speedo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Spyder",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Stadler Form",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-71be-7236-924d-06e425f6b806",
            "wording": "Stalvey",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Stanley",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
            "wording": "Status Anxiety",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Staud",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Stella McCartney",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Stone Paris",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Supor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-71e5-739b-b009-e6c9f9883af0",
            "wording": "Susan Alexandra",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
            "wording": "Suunto",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "Swatch",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "T.LeClerc",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-811c-7328-be82-c107f6ea8639",
            "wording": "TAAJ",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "TAG Heuer",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Talika",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
            "wording": "Taurus",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Tefal",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Teva",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Thalgo",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-71f6-7180-8307-8076065c7342",
            "wording": "The Cambridge Satchel Company",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
            "wording": "The Kooples",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "The North Face",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "The Row",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Thom Browne",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Thomson",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "Thomson Dcube",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "Tiffany & Co.",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Timberland",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "Tissot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Titlee",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Tityaravy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Tod's",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "Tom Ford",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4d93-727a-80b5-7dc484f67f19",
            "wording": "Tomasz Donocik",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8125-7158-91db-f5e5d523d7b7",
            "wording": "Topicrem",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Tory Burch",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "Trussardi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Tudor",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "Tumi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Ugg",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Uhlsport",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Under Armour",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7268-7054-a610-0474d39467f1",
            "wording": "Urban Originals",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Uriage",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "V-Zug",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Vacheron Constantin",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "Valberg",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Valentino",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Valera",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Valextra",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Van Cleef & Arpels",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Vanessa De Jaegher",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Vango",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Vaude",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Vax",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d62-709c-9c35-86552eae089b",
            "wording": "Vedette",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Versace",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Vestel",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Vichy",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "Victoria Beckham",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Vita Citral",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Vivienne Westwood",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Vorwerk",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Völkl",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Wandler",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
            "wording": "Want Les Essentiels",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Warrior Sports",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-813b-7245-880a-d1047e8549fc",
            "wording": "Weleda",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Whirlpool",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "White & Brown",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Wilson",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "X-Bionic",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Yema",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
            "wording": "Yon-Ka",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Yuzefi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Yves Rocher",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Yves Saint Laurent",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Yvonne Koné",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Yvonne Léon",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
            "wording": "ZAC Zac Posen",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "ZRC",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Zadig & Voltaire",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-72d6-71f8-b00a-12873bdb434e",
            "wording": "Zagliani",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72de-70eb-94bb-a97b3bf8af8f",
            "wording": "Zanellato",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "Zanussi",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "Zenith",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
            "wording": "Zimmermann",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Zoot",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Zsport",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/brands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/brands

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/brands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"Cartier\",
    \"wording_fr\": \"Cartier\",
    \"wording_en\": \"Cartier\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/brands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "Cartier",
    "wording_fr": "Cartier",
    "wording_en": "Cartier"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/brands

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string  optional    

nullable Legacy brand label. Example: Cartier

wording_fr   string  optional    

nullable French brand label. Example: Cartier

wording_en   string  optional    

nullable English brand label. Example: Cartier

GET api/v1/reference/brands/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/brands/019f426a-4836-7046-bf76-a46201ff7027" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/brands/019f426a-4836-7046-bf76-a46201ff7027"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-4836-7046-bf76-a46201ff7027",
        "wording": "Cartier",
        "wording_fr": null,
        "wording_en": null,
        "models": [
            {
                "id": "019f426a-484d-7160-a975-70e9015bbfc0",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Amulette de Cartier",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-483e-7036-bc8d-8dc4079d7932",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Ballon Bleu de Cartier",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-4840-7110-93cc-d346f825e8fb",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Calibre de Cartier",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-484e-7186-b5dd-f3ecb723f42a",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Déclaration",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-4848-70ba-8e17-1a0d137a7674",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Juste un Clou",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-4846-72ca-b5c2-0868fb591eff",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Love",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-4843-7301-8b14-2a6b006caa9c",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Panthère de Cartier",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-483a-7392-b92a-81b7ffc66ea8",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Santos de Cartier",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-483c-731b-a917-f4d1aa0c0f97",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Tank",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            {
                "id": "019f426a-484a-7163-80ad-414878ca8a38",
                "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Trinity",
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            }
        ],
        "created_at": "2026-07-08T15:48:09.000000Z",
        "updated_at": "2026-07-08T15:48:09.000000Z"
    }
}
 

Request      

GET api/v1/reference/brands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the brand. Example: 019f426a-4836-7046-bf76-a46201ff7027

PUT api/v1/reference/brands/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/brands/019f426a-4836-7046-bf76-a46201ff7027" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"Cartier\",
    \"wording_fr\": \"Cartier\",
    \"wording_en\": \"Cartier\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/brands/019f426a-4836-7046-bf76-a46201ff7027"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "Cartier",
    "wording_fr": "Cartier",
    "wording_en": "Cartier"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/brands/{id}

PATCH api/v1/reference/brands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the brand. Example: 019f426a-4836-7046-bf76-a46201ff7027

Body Parameters

wording   string  optional    

nullable Legacy brand label. Example: Cartier

wording_fr   string  optional    

nullable French brand label. Example: Cartier

wording_en   string  optional    

nullable English brand label. Example: Cartier

DELETE api/v1/reference/brands/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/brands/019f426a-4836-7046-bf76-a46201ff7027" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/brands/019f426a-4836-7046-bf76-a46201ff7027"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/brands/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the brand. Example: 019f426a-4836-7046-bf76-a46201ff7027

GET api/v1/reference/models

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/models" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/models"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-7a18-73ca-9aff-d49b5c94cc77",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "'Lyla' Leather Wallet",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6bb6-7241-9123-032a5561794f",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "(L)",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-515b-736f-9f2d-b53e82aca345",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "(Un)Refined Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8dbb-7308-852d-a08f4173479a",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "0166 Toast & Grill Vintage",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-652b-702f-b7e6-8c06faffaf6c",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "103",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6522-73ca-91e9-bd760dca6dac",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "104",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-652f-7244-8e6e-cd4fa1f41f3c",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "105 St Sa UTC",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5131-714f-926e-b54b1fa95777",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "10Y LVK",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50f7-73c3-9a4d-876a25d57f84",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "10Y LVK Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8d30-72c8-bde5-4fe53288b77f",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "112412",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6463-7236-b104-d652793229d8",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "1297",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8db5-7295-8cbc-728bf5f63ba1",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "1329 Moka Aroma Espresso",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8db3-7219-98e0-b6ed5bbcdd03",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "1389",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6535-725b-a3da-18ce1e5e541e",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "140",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d28-7153-b77f-ad8fa4555c90",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "142389",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6537-704b-b97a-529e71c7d07a",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "144",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7b53-70fe-b3a6-304c665b6d00",
            "brand_id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "1460",
            "brand": {
                "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
                "wording": "Dr. Martens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b55-7301-a3a5-7045ae6c86bc",
            "brand_id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "1461",
            "brand": {
                "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
                "wording": "Dr. Martens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-92dd-705c-babe-e3f610a0f007",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "150 Zone",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8dba-73fe-a32c-aa27c4dc44b0",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "155",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d31-704f-bd31-ec4d440f7bd5",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "162720",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6531-735f-8b95-734fdab27f80",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "1800 S GG Damaszener",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d2b-721a-8bbb-482ca028db3f",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "182021",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d29-737f-b335-da3fcb95acd6",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "182727",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7031-71a5-88ea-d25cd8b1ef72",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "1845 Trunk",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8db7-71cc-ab6d-0d10002f570a",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "185",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8dc1-70fe-99e5-de718c03b192",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "186 Party Time",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8dc2-71f8-a8dc-daee9559851d",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "186/06 Party Time Cotton Candy",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8c17-7358-a569-24b585e54680",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "189002",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6311-7195-a7fb-196d81992d71",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "1896 UN HERTZ",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6e29-73c4-afcb-08182fbc3607",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "19 DEGRES",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7145-71a1-bf22-3b3f976f4572",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "1907 Chamonix STP",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-663d-702c-b330-520017a2a135",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "1908",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-656a-718e-9f7f-95fc7dfd9442",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "1926",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-660f-71ce-9290-68c4eadc82c6",
            "brand_id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "1931",
            "brand": {
                "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
                "wording": "Louis Erard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6301-723b-8790-dab9e2eb03c8",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "1941 GRÖNOGRAAF",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6309-7040-9340-e8ff58731be1",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "1941 PRINCIPES",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-630e-7010-86e8-38ad3dd641fd",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "1941 REMONTOIR",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c27-70e7-a995-9c1d34a0adde",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "19422",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6cbc-7255-a73c-f8e446cfb45e",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "1945",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6cbe-7303-a217-9f45a1542d60",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "1945 Héritage",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8c1a-700a-8c8b-1a1bdaa132f6",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "19622",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6304-7264-8c03-7030b75a0cd6",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "1969 TRAVAUX DELTA",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-67a1-70fd-af1a-4b7a0b5c0826",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "1977",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-612d-72eb-b670-c88ffe26d0ae",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "1991/DG",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-647f-70c5-8833-e8b04610d64e",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "1Dive",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-87ae-70bf-90cd-089c0e77287f",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "1LF-011 SX",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-79fb-737a-b4fd-9e4a353c790e",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "2 Eau de Parfum",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-63cd-73da-94f3-47315820e211",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "20.000 LIGUES",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-92da-713e-a4e3-077428f6efbf",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "200 Oasis",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6fbf-70b3-a11a-d4f9980738aa",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "212",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fc6-7326-936f-ab4426d4332b",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "212 Men",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8d33-7197-b49d-c440ef050812",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "212065",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d34-716a-b55c-6b963a5e4405",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "212071",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8c13-71ef-9cca-5d0d0e50a5ee",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "219002",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d2c-72db-a74b-af6f4a8c795c",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "221206",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d2e-73f8-a46b-baae113c68e4",
            "brand_id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
            "wording": "221215",
            "brand": {
                "id": "019f426a-8d26-70d5-92fd-d071d4cfefe2",
                "wording": "Princess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6ca6-719d-b9fe-b11e1cbcca1a",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "233",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d84-72aa-94d2-2a3aa5a28a1c",
            "brand_id": "019f426a-7d81-701b-9410-4b6b46fa8540",
            "wording": "24 heures",
            "brand": {
                "id": "019f426a-7d81-701b-9410-4b6b46fa8540",
                "wording": "Gerard Darel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6527-73b4-9354-4c10637bfada",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "240",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-677b-7191-bf43-f3a51d3c7325",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "25H",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-92dc-7397-b04c-034f00ba742c",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "260 Tech",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7b57-738a-a40d-0b08d212db7f",
            "brand_id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "2976",
            "brand": {
                "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
                "wording": "Dr. Martens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-617d-71d8-b013-e3d0609c3c1a",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "30 Montaigne",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-653e-7001-bcf3-1806c7f578de",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "3006",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-619b-73d1-bad3-6269df94d0c5",
            "brand_id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "316L",
            "brand": {
                "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
                "wording": "Dodane 1857",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8c2a-7390-b933-6b9b3032c9aa",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "319422",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cd7-704c-8340-ed909fe432d6",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "32-FHD-5620",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c0c-7181-8dd4-9c2b77b68f9b",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "3227",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9219-70e0-b5aa-da10f2e4549e",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "327",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-872c-7311-80b2-564ace2a5d4b",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "32HE2100",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7d3e-72b8-8a20-f23dc079d981",
            "brand_id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
            "wording": "3301",
            "brand": {
                "id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
                "wording": "G-Star RAW",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-652e-717b-963e-4f3fad30252c",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "356 Flieger",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6539-70fa-b370-4ae56f31c213",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "358",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c22-7091-bd1e-1505dfc25749",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "390003",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c2c-72f8-a693-87f39a52dd97",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "39311",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c30-7228-98d0-2c40be0c4b5a",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "39511",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7b58-73e1-a9ad-553bdb88f9e7",
            "brand_id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "3989",
            "brand": {
                "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
                "wording": "Dr. Martens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ab4-70c9-bde9-f59efb819328",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "3D",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-93f6-7366-9c54-85c77a287f7b",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "3L Guardian Shell Jacket",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9446-716e-a17e-fb25585917d7",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "3L Jacket Keylong M",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-87af-7241-ab8b-44745e24f4e1",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "3LF-013 IX",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87b1-71fa-a9f3-816ee140abbb",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "3LF-065 IX",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-692f-7262-b5cf-d27e0acdead6",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "3XL",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-88cf-73c9-a001-396158436d57",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "4-Burner Gas Grill",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-493c-737c-a601-080598f2f428",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "40/42cm",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8cd9-7350-9e8c-510f65447df8",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "43-FHD-5620",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c1f-72af-bc30-8586b1e3ec9c",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "439101",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-872e-70c9-be85-1f6a6858ca30",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "43HK6100",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7eca-722f-8186-36b5349d67d8",
            "brand_id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
            "wording": "484 Slim Fit",
            "brand": {
                "id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
                "wording": "J.Crew",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-698a-7283-87a8-cb688c24f9f8",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "4G",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8649-7289-a289-9c93192b14fd",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "4K HDR TV TX-65HX940",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-832c-73af-b04d-1660c3b20d10",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "4K Ultra HD",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8824-71af-a415-696e65ed6d14",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "4K Ultra HD Smart TV",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88bf-7309-8e4d-af48ba3e33b8",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "5 Cup Food Chopper",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4940-73af-a9d4-8a5cfca1943f",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "50cm",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8c1d-7023-9976-04aa68e3a130",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "520004",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cda-72d6-b009-453e26f517c4",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "55-4K-UHD-5630",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6521-7255-800f-2600210ed9c6",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "556",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d6e-73cf-986d-bd0476dca925",
            "brand_id": "019f426a-8d6c-7145-9810-27b96ddf893f",
            "wording": "55GDU7500B",
            "brand": {
                "id": "019f426a-8d6c-7145-9810-27b96ddf893f",
                "wording": "Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-872a-715c-b202-11dcca21dba9",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "55HK6001W",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8db8-726d-b76e-f935e5f6c4f0",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "568/04 Choppy",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9215-7193-8426-d9808792dd09",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "574",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94e8-723e-8ad3-7de8d014c339",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "6-Inch Premium Waterproof Boot",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8dbd-735a-8beb-89caa5c8e70d",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "6214",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8dbf-73f2-a433-c481d0848448",
            "brand_id": "019f426a-8db1-708a-97b4-6a958ade2186",
            "wording": "6439 Stiromatic Dual Force",
            "brand": {
                "id": "019f426a-8db1-708a-97b4-6a958ade2186",
                "wording": "Ariete",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-88c1-7272-88b3-801027f6572a",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "7 Cup Food Processor",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-63c5-7067-a732-8cfe879396f3",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "7 Lois de L'univers",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6446-710f-9a6c-acfb204a57e5",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "70 ANS",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8df5-7299-b5bb-26bfe54c261e",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "700",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6532-7229-8efd-ed3ba05aa616",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "717",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8df3-7239-9d03-d1b3c9335208",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "800",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-48fd-7188-a97d-d6bcfef01951",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "8°0",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-88c2-7371-ae0b-2b18bf7c6c4f",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "9 Cup Food Processor Plus",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9303-703a-950f-e97314a096a1",
            "brand_id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
            "wording": "9 Peak",
            "brand": {
                "id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
                "wording": "Suunto",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-653b-711e-ab99-a10bab350e50",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "900",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6529-7355-bfe8-e49a8d3a2fed",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "903",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6534-712d-8910-a3133898bbb5",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "910",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-653c-728e-9247-6cc9684e01d7",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "936",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c2e-724e-8f47-11fb2782e7ed",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "9511",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c24-7197-9223-285ddb446f70",
            "brand_id": "019f426a-8c11-721f-9634-8de4af8d3960",
            "wording": "9601",
            "brand": {
                "id": "019f426a-8c11-721f-9634-8de4af8d3960",
                "wording": "Lagrange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9203-727f-a60a-cf31894d4b69",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "990v5",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9217-723a-94b4-4ff917176e11",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "997",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8edc-72ec-a9b1-ea26b3aac00a",
            "brand_id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
            "wording": "A Modo Mio",
            "brand": {
                "id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
                "wording": "Lavazza",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5d5c-7021-9738-63bc802d939c",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "A.P.C",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-889b-7015-8f55-27a23abffc14",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "A1",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9578-708b-86c7-8f4396c93cab",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "A2000 Baseball Glove",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9579-70ae-b80f-6b07d3e56da6",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "A2K Baseball Glove",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-87b6-72e5-95d2-2166922f9f18",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "A7500F",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6e02-70c6-b565-f8d106376b6b",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "ABANU M",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5bca-70eb-856f-24c5f61d640e",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "ABBY",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8c81-70fd-aea3-642aac140fb4",
            "brand_id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
            "wording": "AC 01",
            "brand": {
                "id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
                "wording": "Punkt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d8d-7058-9ae2-976318ee5465",
            "brand_id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
            "wording": "AC 2600 KT",
            "brand": {
                "id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
                "wording": "Taurus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d58-73ac-8f57-92a4afa3ecee",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "ACP12HP",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-64af-72c2-9f0a-75c97d0c2a3d",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "ACTIVA TUBAIR",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-91f2-7195-ac77-a44bcbe71cf4",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "ACTIVCHILL",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6e7b-7112-a27a-84652c37beb9",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "ACU",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8ed6-70fd-84a6-3cf1c215e8ae",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 1230",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ed5-712f-bb1e-f430c6b57732",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 2215",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ec8-7245-acfa-1f9b751c6b09",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 4405",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ec9-70ba-bfb4-ac03c2b18f8d",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 4444",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ecb-704d-9680-1defbdfe8768",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 602",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ecc-722b-9c4c-2a7e512dba31",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 6301",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ece-721d-93f2-cdca33352d7a",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 7020",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ed0-70a4-b65b-4214d040b36b",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 7033",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ed1-7122-baac-d029e5a37fb0",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 7806",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ed3-7188-af23-507106d9ae36",
            "brand_id": "019f426a-8ec6-7171-932a-160668b0e5a7",
            "wording": "AD 7901",
            "brand": {
                "id": "019f426a-8ec6-7171-932a-160668b0e5a7",
                "wording": "Adler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4f11-7101-b791-b93dc7fb938f",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "ADANY",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8857-716c-9210-7d290f778949",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ADE67350",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8856-7380-a820-a3ba7bbe1790",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ADE67660",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5d24-7393-8c78-d861ed1efeaf",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ADER ERROR",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-55ef-7349-81f0-2374b7dbaa74",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "ADES",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-89a1-73dd-8993-bf48731f0356",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ADL1040",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8854-713c-a482-1532bfb0eb69",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ADP1109A",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-899e-7037-8f03-4bce85142d7a",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ADP1120",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-885c-71c9-b04c-1b6a9239e65c",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ADP5770",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5ccf-71d3-baaf-3d67ee2e5212",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ADRIAN",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-899c-73e0-9cae-4fba3d05ef9d",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ADV1515",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8be6-71c7-a4f4-f0c3f54fede4",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "AE2536 Turbobat Lithium 36V",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-610a-7172-af7d-53db7fb0b512",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "AERO",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6e30-71b3-bff9-91f38db17af1",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "AEROTOUR",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8859-73e0-a512-e4d21b9350f5",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "AFB5760",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-885f-720f-9f7e-a7fcc71c99c1",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "AFE1140W",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8995-70c4-b9ae-4409e0852ec0",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "AHC931",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8993-70a6-9e33-a23254773290",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "AHF160",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8991-7328-9a1d-32c728cab0bb",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "AHF640",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-622b-7003-aa61-fbd24fdbf58f",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "AIME",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5a25-7021-8c8d-61b105e530d7",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "AIMER",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-64ad-73a4-af6c-bedb2dba40b3",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "AIRFLEX",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-85bf-7226-a7a4-57ccdca085b9",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "AKT 8090 LX",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85bc-716f-a4cc-0da5ee966cfb",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "AKT 8090 NE",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85be-71d4-bb42-0300ab79c46f",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "AKT 8130 LX",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85c1-73bd-8b1d-e18a5c7cfb32",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "AKZM 6560/IX",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85c4-70af-8dcf-e276eebfe40e",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "AKZM 755 IX",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85c2-73bf-a469-a1acd5d0592a",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "AKZM 8910/IX",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-63fd-7004-9623-44d5d1dd738b",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "AL-ULA",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-59cd-71ce-9f99-4272d3432658",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ALAN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d5f-70d8-8f5e-aca93db2e54c",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ALAN CROCETTI",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5452-70e5-b5a0-3e78daa234ed",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "ALEX",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5d4f-7354-926c-3557eab6966d",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ALEXANDER MCQUEEN",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d7a-731b-b618-82ecca381d4f",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ALIGHIERI",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d1c-7386-9d03-58561a8b1673",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ALIZ",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-647e-73cd-8990-73768112f9b7",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "ALIZE",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-59c5-7094-a0ff-e54df2291669",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ALLEN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d19-7068-ac8a-655d47952b5b",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ALLYN",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-506f-705d-88cb-3f2643afdbcd",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "ALMA",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6e28-724a-9a35-91bb52784695",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "ALPHA",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e34-71a1-beba-1206c559a204",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "ALPHA BRAVO",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e65-7149-bc42-a8410ffac3cf",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "ALPHA X",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e38-7173-be01-862aeedd9a31",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "ALPHA X",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-565d-7226-bebb-5f81a274145d",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "ALYA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-60f5-7023-b772-369e8e0c83bb",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM1",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60bf-71dc-afe7-8863c12c4ee7",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM2 Automatique",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60c6-7128-83d4-e954babadc50",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM2 CALENDAR",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60cc-7041-a70d-adfacac11f46",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM2 ELECTRIQUE",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60c4-72a7-b4cc-d7618f333994",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM2 SLIM",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60e1-731c-b2c0-9333aeb217af",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM69",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60e6-7023-9d49-711610af5579",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "AM89",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5d13-704a-9f57-66088693f710",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "AMANDE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d7c-702d-831a-d63b0c444a2f",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "AMI PARIS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5de5-720e-a03f-8d71c81961be",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "AMIA",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d0b-703d-b724-9a25dd49c17b",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ANAE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5621-7004-9bf8-3a91ae3a0a58",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "ANATOLE",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6e89-7195-87c3-c39c6d3285a8",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "ANCIEN",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d08-7320-9730-94d348c16789",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ANDY",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5ccb-7000-b0e8-d4e6d5bac265",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ANGELICA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5459-706f-a3a1-8b69f354f9c3",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "ANNA",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5cc9-712a-ba45-c98772d12c9f",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ANNIKA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6382-72c2-8e57-6cb89764cf04",
            "brand_id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
            "wording": "ANTARCTIQUE",
            "brand": {
                "id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
                "wording": "Czapek & Cie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6f4e-721f-a14e-dd94dcc1a0ba",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "ANYA life",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8d76-730e-9346-19d990297b58",
            "brand_id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
            "wording": "AOC63600X",
            "brand": {
                "id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
                "wording": "Arthur Martin Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-87c8-731d-abb8-118f9227e3d6",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "AP10CR1W",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87c5-72b8-9460-0e8b65e062b8",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "AP1419CW1G",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87c6-73ae-97a1-e190d5806290",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "AP14DR2WG",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8737-733f-83fb-7b8f5e942e9b",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "AQ113D 69 FR",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-873a-73bf-a6ff-d8c26b8d7daf",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "AQ114D 69 D",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5a23-726a-b061-63ac08a8c506",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "ARAGON",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-69e5-72e1-91d7-65d51041d832",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "ARCO",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5e48-7103-8fba-bb72d954ce3a",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "ARDECHE",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-899b-7153-9e43-264bc29256cd",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ARF238A+",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d7b-7305-b3db-1a4cc861007a",
            "brand_id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
            "wording": "ARF2700AOW",
            "brand": {
                "id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
                "wording": "Arthur Martin Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8999-7239-836c-c1f839cca788",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ARG850A+",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e1c-71c1-9e33-8efd3ab070f1",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "ARGUS M",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5cfb-704e-944c-f26437bc8a94",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ARLENE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8eaf-715f-b076-861f6d52fbd8",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "AROMA200",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6e32-7181-b81d-c732a73450c7",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "ARRIVER",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4d7f-72dd-b7fd-86bfa5d1109a",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "ART Déco",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6e00-7323-8974-c0dab58c4424",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "ART M",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8997-701c-87cd-995388cee704",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ART876A+",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e16-71db-8fe7-db1728e9e01d",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "ARTO",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8e92-736d-8017-f7d8ed69926e",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "AS240",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8beb-72f7-8e59-9f5565a0f9d7",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "AS3100 Steam Jet",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8847-7169-afd1-d1b4dd27bf63",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ASF1752A",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8849-73bf-909c-74a103fc9c39",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ASF2453A",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-884a-7004-afb9-ff652dad69cf",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "ASF3354A",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d78-7305-90a7-6184865a0299",
            "brand_id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
            "wording": "ASF66025X",
            "brand": {
                "id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
                "wording": "Arthur Martin Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5cc6-7099-ac37-99234ef55814",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ASHA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d7e-7195-81fa-c7402d6d82b4",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "ASHLEY",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5cc2-73e3-a2cf-2c97923b330a",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ATALIE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-898b-7213-a992-4de1758f9824",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ATB6400",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-898f-7274-ad8c-fc15aab24959",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ATH7420",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-898d-72d4-a36d-99102e060e4d",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "ATI6300",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-64c4-70ea-99b9-617eecbedbd6",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "ATOLL-ZD",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5cbf-713a-b432-778872d7f74a",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "AUBRE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4dd1-7395-8f62-2631bda11516",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "AVA",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8d47-7375-912f-1200e87fea94",
            "brand_id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
            "wording": "AVC49W",
            "brand": {
                "id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
                "wording": "Listo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5960-70cf-a653-e7e9e06c8d7c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "AVERY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5900-71da-8a0c-7e4576cbd40a",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "AVI Slim",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e22-723c-a89b-f3a851430bd6",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "AVIANA L",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6374-734d-aebb-36bc7c5f8c3d",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "AVO",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-957b-7129-8977-a496b3ebcb97",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "AVP Official Game Volleyball",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-884f-70a9-bccf-b89e25ca0632",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "AW953T",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d79-738b-83bf-a8c56103fded",
            "brand_id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
            "wording": "AWF1405",
            "brand": {
                "id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
                "wording": "Arthur Martin Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-884d-730d-9a9c-82c308c02339",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "AWFH1435AE",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8852-705f-b0e3-0af891a7db70",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "AWN147S",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5cf1-7131-8a01-f7152c8268cc",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "AXELLE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-89fc-73b3-9c0e-04e45762bdd2",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "AXO900",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b9d-71ad-95f7-70f602f229ef",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "AXO940",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-869f-73d2-8362-65d874a53282",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "AY-X28NC",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-556f-71f7-950a-0543aaf10e4c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "AYA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6df4-731f-b3a1-adf702956695",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "AYDA",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5c4c-731c-84bb-20d269c2340d",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Abbie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c17-7386-96d3-de2df46d5a89",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Abeille x La Comédie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7315-7174-80ea-b47b7ba15d85",
            "brand_id": "019f426a-730f-7220-990e-238e084e3373",
            "wording": "Abelone",
            "brand": {
                "id": "019f426a-730f-7220-990e-238e084e3373",
                "wording": "Adax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7d15-732b-82fd-7ccf48bcab5d",
            "brand_id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
            "wording": "Abisko",
            "brand": {
                "id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
                "wording": "Fjällräven",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d62-7329-b40b-141c2ea3a836",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Absent",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7fc8-7362-bec3-3861072d3547",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Absolue Kératine",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8f7c-7323-8dc7-65e00063d3cf",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Absolutgrip",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7783-719b-8fdc-998d8bd5a6b2",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Abstract Dots",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78a5-705f-a779-5522d74ffbc4",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Aby",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6541-7087-96fd-f62be4129a92",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Académique",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7044-7092-95d0-f684886bc386",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Acajou Sur Laiton Rayé",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-921c-73ca-b72c-361bb1113d07",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Accelerate",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9245-7158-a2c5-edceb33b58ad",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Accelerate",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9377-71a5-b94f-5c83efc07bb0",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Acceleritas",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66d6-709c-950d-73080d2b3571",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Access",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8f68-7032-91cc-131567348192",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Access 40",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f63-724f-9149-f8755b5bf555",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Access Pants",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4ca7-7246-82bf-62f24b7b55f1",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Accessoires",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4ab8-700b-901f-2e20e6f56178",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Accessoires Cheveux",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d0a-7024-994d-ca9f222badbd",
            "brand_id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Accessoires assortis",
            "brand": {
                "id": "019f426a-4d01-738d-9cda-a38d664e6506",
                "wording": "Maison Guillemette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b3b-7121-ba78-41cdbb501125",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Accessoires de Cheveux",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-502d-71c7-9db8-8c3adfacf422",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Accumulation",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7dd8-70f9-9d30-ef1621a425b7",
            "brand_id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
            "wording": "Ace",
            "brand": {
                "id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
                "wording": "Go Dash Dot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5ba9-73c8-9dc5-872c70185a2a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Achille",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7fef-72f3-b18f-a2b4ecba0735",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Aciana Botanica",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8117-72fa-89ec-93303c5e5d94",
            "brand_id": "019f426a-8113-7385-9a93-7939bb111740",
            "wording": "Acide Hyaluronique",
            "brand": {
                "id": "019f426a-8113-7385-9a93-7939bb111740",
                "wording": "Resultime",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-75f3-71f8-acc6-7336daa0cd3a",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Acoania",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5c41-7194-b67c-9cbff97eb7df",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Acorn x Donna Wilson",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7db9-70f4-a49d-818c98c2f6ae",
            "brand_id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Acqua di Gioia",
            "brand": {
                "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
                "wording": "Giorgio Armani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-770f-724a-ba78-58bf9cea4b42",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Acrylic",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a66-72e4-88b7-3333055ef2f4",
            "brand_id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
            "wording": "Acrylic Tote",
            "brand": {
                "id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
                "wording": "Cult Gaia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f0d-73b8-9bff-ce94f95f8ea5",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Actik Core",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ee0-73be-9f84-a025f850da99",
            "brand_id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Activate",
            "brand": {
                "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
                "wording": "Jack Wolfskin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8f6a-7315-851a-e5484dd967ac",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Active 24",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-88ac-7324-ae6e-12b119f08288",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Active Plus Pull-Out",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4f66-727b-ad89-b8e77cf95ea3",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Adam & Eve",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-80f1-7302-8c86-560e2472a5c9",
            "brand_id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Adaptasun",
            "brand": {
                "id": "019f426a-80e7-7070-822b-75c13f312f2b",
                "wording": "Esthederm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-535e-7019-8fde-43bc1ba89ce1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Adda",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-73fe-7140-a5e5-320b6fd849ea",
            "brand_id": "019f426a-73fd-7086-b1ac-6f436093163b",
            "wording": "Addict",
            "brand": {
                "id": "019f426a-73fd-7086-b1ac-6f436093163b",
                "wording": "Ash",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b31-7302-80f4-6cca97c06d7a",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Addie",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-527e-72c1-a6f8-0c6649dd6a3a",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Adeline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5a7e-7083-b539-7b6d3855817b",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Adhiya",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9185-71a7-8218-26c482aa337d",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Adizero",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7816-7082-925c-915347a55b8f",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Adjustable Strapback",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-55ae-7189-aad9-b9b2147471b6",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Adonis",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5574-709e-86c4-cd44b9ef7a73",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Adonis Diamant",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8b1b-7185-a254-b0594a33b591",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b1d-718d-87cc-770347d3a3b7",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora N",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b13-726f-b972-dbe761a89f4b",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora NRCI",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b19-7255-914f-1f9f1515b4f7",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora SL",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b1f-7071-a34b-b56959aa8d99",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora SLQ",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b20-73dc-93d1-e572cb9bbfd8",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora TL WP",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b22-735f-812d-db0858bfa59c",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Adora TS WP",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-761a-7284-9fad-97b8fc0a1b5a",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Adoremiel",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75eb-7178-8a12-a65e892434d9",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Adralla",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-525d-708b-b2f2-338460f52dcc",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Adriane",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-90c2-7325-b769-8155d36d1cb5",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Adultes",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-80a2-730d-9567-2ddd25517c42",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Advanced Research",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-55e0-706c-aa2a-4d8ea1d51a7a",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Adès OUVERT",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5641-73ee-aa41-3e4adef3dcd0",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Adès Small",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5624-7287-8115-2880f903dc13",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Adélaide",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5558-7237-a97b-c89672b7ac9b",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Adéle",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8902-721e-9fcd-2410c01d3c8e",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Aero",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-75ff-7084-990f-be54d80350a7",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Aflafien",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-63c7-72b0-b7f9-3b93d72021a5",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Afrique",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-550e-7278-9c80-f57c4978043e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Agathe",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52b0-739a-94b9-d80053f693cc",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Agathe",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-80fb-7260-a754-f6d427de33e7",
            "brand_id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "Age Benefit",
            "brand": {
                "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
                "wording": "Gatineau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8033-7019-9682-cbdc54b0fe64",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Age Protect",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-60ef-723f-893f-4f8336b405ca",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "Agenda",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8f07-703f-8760-62c931a8b8b4",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Agile",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fcf-7221-8d3c-8fbab7f79219",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "Agility 900",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9259-70dc-953c-7ce485c8f042",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Agility Peak 4",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-73c7-72ea-a010-c5705d45cc00",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Agitées",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-552a-70a9-b11c-024e433bcfff",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Agneau Lave Noir",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52cd-7352-a463-fb7155faab85",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Agnes",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5507-7336-b3d8-e2a25f609d39",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Agnès",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7395-73d3-b41d-c56be1d2309b",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Agnés",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74a5-73d1-94ce-60cfb9506c45",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Aiguille Lucy",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-760d-72ae-9679-d71ec33de3cd",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Ailiviel",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91b1-7313-83ff-221f2adab8c3",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Air Force 1",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91ac-70cb-9634-4c60b83d972c",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Air Jordan",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91b3-720e-827c-eaf6276ec14a",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Air Max",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8fd8-7371-8564-c89889843ea5",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "Air Pump",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ef2-70f2-8d66-1badfddbac8a",
            "brand_id": "019f426a-8eed-7332-983d-520b0da44271",
            "wording": "Air Seconds",
            "brand": {
                "id": "019f426a-8eed-7332-983d-520b0da44271",
                "wording": "Quechua",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b43-70da-8d58-41ee4579b945",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Air Stretch Pet Max",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-919b-7379-a121-dd2260080e8c",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Air Zoom Pegasus",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6638-7081-b0ee-7d28b9a6d975",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Air-King",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-94fd-73b8-a4aa-a40f2e859b79",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Airbeam Capri 600XL",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-896b-7185-8522-6569f09120f3",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Airbelt D4 Premium",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8966-72a6-b5cb-b029a32b7915",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Airbelt E3 Premium",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8969-7372-9b52-01b1a831ec56",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Airbelt K3 Premium",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6544-715f-a338-77ed8bd3d188",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Ajouré",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5ab3-718c-8c99-06ec1d096f19",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Akupara",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4dae-7108-8f34-87ca2f84cff8",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Alama",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-61ea-72c9-ac44-1eb5604665aa",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Alana",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8ff2-700c-8e8d-0d4a4b414afb",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Alaska",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8876-7294-ba81-1952832cb45a",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Alba",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-557f-71de-88b5-c7c4996d8115",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Alba",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5565-71e9-b2cf-938cb3f1dad7",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Albane",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8da0-71b7-bfc2-19579409dbc1",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Albert",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7313-724b-a4aa-de408237757f",
            "brand_id": "019f426a-730f-7220-990e-238e084e3373",
            "wording": "Alberte",
            "brand": {
                "id": "019f426a-730f-7220-990e-238e084e3373",
                "wording": "Adax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-529e-71f4-b039-eae1f287d4dc",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Alberto",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-590c-71f7-9d80-677087361a20",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Albro",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7e12-71d1-bf92-95e54a9e7fe7",
            "brand_id": "019f426a-7e0c-7332-84e4-d954cb74c752",
            "wording": "Alby",
            "brand": {
                "id": "019f426a-7e0c-7332-84e4-d954cb74c752",
                "wording": "Guess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-54e1-7108-b741-8cf2e549ffb6",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Alegria",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-74ed-7279-bbd9-68aad30659e0",
            "brand_id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Alessandro",
            "brand": {
                "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
                "wording": "Berluti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-530a-70fc-9cd5-7be6bf7a1d38",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Alex",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-620c-7396-8bc3-fbdf25da5cb4",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Alex Skull",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6b5e-70ac-a3df-51d3316126a6",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Alexa",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7470-7296-89d7-749f0ebe179d",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Alexa",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-530d-73a3-a86e-7e8492c4ea5f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Alexa",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5598-73e2-b24f-63a8e9468a2f",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Alexandra",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5504-71d8-8e03-a4306615f8a3",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Alexia",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8024-71a5-80f9-f3c8ccc7373f",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Algotherm",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-51de-7150-8e51-11ed91a8ff95",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Algues et Fleurs",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-494b-7147-8f15-3185dc4d2af8",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Alhambra",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-486f-7154-a159-229775f4230b",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Alhambra",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8df0-73c0-ae83-7a0e87f6bc07",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Alicante",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7758-7315-80e2-53491cd7c311",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Alice",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-559a-7299-a520-9e7ba5fee533",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Alice",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-71b2-73fd-a2c7-db5ebaf2bd78",
            "brand_id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Alice",
            "brand": {
                "id": "019f426a-71a5-728f-84dd-af5a49786b07",
                "wording": "Staud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7e63-72a8-b270-2125e50a7939",
            "brand_id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
            "wording": "Alice",
            "brand": {
                "id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
                "wording": "Hobbs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7a03-72b3-a9ed-62c6c0bcab12",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Alida",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-75f5-7358-aef9-817e6be0ac1a",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Alisav",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7300-71e6-b76d-fa6299011c7f",
            "brand_id": "019f426a-72fb-7219-909d-45d63631e250",
            "wording": "Alix",
            "brand": {
                "id": "019f426a-72fb-7219-909d-45d63631e250",
                "wording": "3.1 Phillip Lim",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-550c-7056-b5a2-fd72b502280a",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Alizee",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5430-71ca-814e-ab3db1cb01f6",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Alizee",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8003-7066-91ee-38b52f07505d",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "All Day All Year",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6612-7398-b129-6d79faa6f14a",
            "brand_id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "All Dial",
            "brand": {
                "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
                "wording": "Mido",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7f10-722f-8625-42a64ce6816e",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "AllSaints",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-585a-7222-8d81-5953001c7dc8",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Allen",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-72f4-722d-9e9c-4103e2c0ab70",
            "brand_id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
            "wording": "Allia",
            "brand": {
                "id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
                "wording": "Zimmermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4929-7078-8e2d-a40b296abcc9",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Alliance",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7370-7241-836b-b2ddafc096f5",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Allington",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7636-7201-b273-fcf938339412",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Allisoff",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7606-71f0-9c92-02b22d1dcc3b",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Allovino",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7157-73f0-bb11-451a3d640428",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Alltrack Pro 130",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5f23-73d2-915c-3bb840be666e",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Allure Sensuelle",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f3d-712e-a987-3daad1f74a96",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Allure Sport",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4b65-7370-bdd0-eea24e9731a7",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Alma",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7e43-738f-8d7e-ef7a096d7a3c",
            "brand_id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
            "wording": "Alpha 3.0",
            "brand": {
                "id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
                "wording": "Helly Hansen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-53e6-712a-9909-c58f9639411d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Alphabet",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-78d7-7326-8585-043455266208",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Alphabet Pendant Necklace",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9188-7245-aa36-7118779c9a74",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Alphabounce",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9009-723b-b29b-12204495b29d",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Alps Scarf",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-76b5-7159-8596-cd8918d3b467",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Alright",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-70a2-70f4-9d0c-1b69b2e99532",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Alta VAS",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b65-7004-ae3f-cc07450fadce",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Alter Mat",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9412-7032-9d43-22bcf96e068c",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Alti Mitts",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7317-7227-baf3-cd180ba862d5",
            "brand_id": "019f426a-730f-7220-990e-238e084e3373",
            "wording": "Alva",
            "brand": {
                "id": "019f426a-730f-7220-990e-238e084e3373",
                "wording": "Adax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5630-73a8-b393-5c26918897a4",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Alyssa",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-538f-7245-aaf5-686142c431cd",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ama",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7c70-72c9-b643-1840978b4805",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Amal",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7899-724f-9a44-71fb334dc6f6",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Amalfi",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7614-710a-aa3a-2e2e7338e1d3",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Amanawen",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-903f-722e-8d16-2169aadffad8",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Amandes",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-56f3-73ca-a6fb-26bc7bb9f929",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Amazone",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9140-725d-a276-4e464f4a4036",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Ambassador",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-731d-70f1-a5a7-86cdd99bbc9b",
            "brand_id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Amber Musk",
            "brand": {
                "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
                "wording": "Aerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b58-70b0-8b5b-9d4160d20f6f",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Amberley",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4a46-72aa-83fd-e6217c601db1",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Ambre",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6e95-70db-b740-baabcdc6b7bc",
            "brand_id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Ambrine",
            "brand": {
                "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
                "wording": "Coccinelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b27-7154-9684-88c757ef9568",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Amel 50",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-762d-70d9-bae2-de27ec8f2480",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Amelei",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7746-72fb-8162-3fb34fbe18d8",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Amelia",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5c56-708a-8861-7f6eeb61f89b",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Amelia",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-755a-73c7-a4f3-cee2436997c4",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Amenity Kit",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5345-7376-90b4-7605c8de4c85",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Amo",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53b0-704e-be5e-477914400bc0",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Amor Vincit Omnia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54d0-70ae-9867-5e419a284259",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Amour",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c70-72c8-a867-8be6a98d2004",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Amour",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d7c-710c-9dab-ef0760092cda",
            "brand_id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
            "wording": "Amphibiox",
            "brand": {
                "id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
                "wording": "Geox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-70a0-7342-83f0-a2f3f75c18d1",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Amphore",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5b63-727e-b5bd-8340ace5aa00",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Amsterdam",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9014-7124-be02-5e28d2dd89a4",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Amsterdam",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-56be-739c-881d-d7fca50bd713",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Amulette",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-484d-7160-a975-70e9015bbfc0",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Amulette de Cartier",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6f1d-7236-80f5-8f5ae0f9a50f",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Améthyste",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4950-70c1-9507-16399490aa9f",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Ana",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6c20-7301-b7b2-165dae0c7365",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Anagram",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5509-73d5-99e5-7230790793b3",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Anais",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7b0d-700c-b9e7-905b04ec9f59",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Analog Watch",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5a6f-72e8-a125-c8795d8f86da",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Ananda",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4f35-7086-b2c3-9399ff9ceb08",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Anatio",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5659-72b8-a4eb-bf0ecf62a044",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anatole",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-55fa-70a3-a461-cc2ddaa730af",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anatole Coeur",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-561d-7391-8157-6d8efb96ef0c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anatoline",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-92e6-7374-8a20-db9994096a58",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "Anatomica",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94dd-7221-ae33-80e96c05e2e4",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Anaya Chelsea WP",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-543e-7161-b845-34db24ea1d0d",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Anber Jungle",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5e34-7170-b64d-9de2fc800ed8",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Ancrage",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-749a-7090-b118-0525bfc71cdb",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Andi",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-69c5-71d0-8861-6d8a751d7b5e",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Andiamo",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6ec5-73d0-8691-804608b4d0f9",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Andreas",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8828-71ed-bbee-71f63243c258",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Android TV",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-738d-73d9-9e0e-3a2c06489d65",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Andréa",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65aa-737f-821f-e48a6f78df0b",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Anduze",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-73a9-711e-97d8-2be7eb27fca8",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Aneta",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5e45-73eb-9e63-5b022dd8530c",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Ange ARIEL",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e43-71eb-98fb-1832c68fb4de",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Ange Caliel",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e46-710f-8698-5ed446c0ccab",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Ange Eiael",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e41-7004-bbb5-cdfe203ee185",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Ange Zachariel",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7c0b-7344-b47c-6423d5769b87",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Angel Satchel",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d4a-71a4-8ed1-55ff0c21f52d",
            "brand_id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
            "wording": "Angela",
            "brand": {
                "id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
                "wording": "Gabriela Hearst",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6401-7396-bbe6-060307533ba0",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Angelico",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6c13-72dc-892c-6df1b3090b20",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Anghiari",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7735-7113-9839-4b8554de7104",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Anglistic",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-744d-73e5-846f-6ac8b54eb750",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Animal",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6ed1-72c7-a414-7a860d3e0801",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Animal GYM",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6356-70c5-841b-fd6e3f76807a",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Aniversario",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6c9b-7069-aa3b-c1c92caefb2a",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Anjou GM",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-793a-7222-862f-69baefa96eb5",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Ankle Boots",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b38-71bc-a383-2f13f6e7083c",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Ankle Boots",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-796b-736b-986c-39e100173ffb",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Ankle Boots",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74ae-70ee-b2fa-abb64b51d1dc",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Anna",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7771-71a7-ad69-a0067f749585",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Anna",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8d91-70c9-a378-102d3437dcaa",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Anna",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7366-7377-887e-026037f1ce9c",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Anna",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72a8-71c6-ac08-7c3f2c3a080b",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Anna",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5545-71e2-923d-e523b7aaa3b8",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anneau OLYMPE",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-554d-7029-9e28-7d9a2610389b",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anneau OLYMPE SERTI",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-554f-7182-892f-aa71f185a63c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anneau OLYMPE Torsadé",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6453-7198-a751-ea08e0975d93",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "Anneau OR",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5386-73f0-ad8e-ea9843ac0e0d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Annette",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7627-71d6-af38-aa0abe3d71a0",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Annia",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-54c8-7333-bd86-893e7afb4539",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Annie",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7d08-73e7-aad7-ed13e02beaa7",
            "brand_id": "019f426a-7d05-718c-835c-0f04779e2708",
            "wording": "Anouk",
            "brand": {
                "id": "019f426a-7d05-718c-835c-0f04779e2708",
                "wording": "Fiorelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-558f-735b-a790-c4b04fad80c7",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Anouk",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7263-71d5-8160-de693216eaf3",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Ansley",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4d62-7040-a369-a3169b0ebba5",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Antarès carré",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d7d-726b-976b-e193ca200da4",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Antarés",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5ddf-729b-9d9d-6281ff18f310",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Anthéia",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-90a8-72c0-ad69-0de5ce271775",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Anti-Frottements",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8182-728d-af87-587645091da9",
            "brand_id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "Anti-Pigment",
            "brand": {
                "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
                "wording": "Eucerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9168-7016-91b0-c50dda4fba03",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Anti-Series",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-81bb-7317-a93d-ca483fdae492",
            "brand_id": "019f426a-81ba-714e-a280-ee8776b414cc",
            "wording": "Anti-Âge",
            "brand": {
                "id": "019f426a-81ba-714e-a280-ee8776b414cc",
                "wording": "Ricaud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8235-73bb-aa28-0aa1533451cd",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Anti-Âge",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8159-7188-b479-d202892204c0",
            "brand_id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
            "wording": "Anti-Âge",
            "brand": {
                "id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
                "wording": "Yon-Ka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-698f-703a-a637-95961cd473c5",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Antigona",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-65bb-73ed-813a-d00087e486a6",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Antiparos",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-925b-72e5-ae09-a62e25741dbc",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Antora 2",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5f44-72c3-bbb9-b8adf943a075",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Antée",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7a2f-705c-865c-fd45097660d8",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Anything Goes Pouch",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5ab5-7055-b623-519ba347c00d",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Apatan",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5ddb-73df-8ef7-65cd059adbe8",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Apate",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-92b8-702c-a967-59c6c382b340",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Apex Flex GTX",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-943a-70ec-8b2a-c0059f897581",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Apex Guide 45L",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-646c-736a-b546-00e04b40876a",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Aphos Dri Elite",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6769-7286-aead-b2d6fb3d8474",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Aphrodite",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-81a3-7227-b2af-06cb9dd68406",
            "brand_id": "019f426a-819c-7253-95e2-b756d2c64062",
            "wording": "Apicosma",
            "brand": {
                "id": "019f426a-819c-7253-95e2-b756d2c64062",
                "wording": "Melvita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4bdb-70be-8b97-e0cf3e47da1b",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Apogée",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-52ae-722f-8004-a45f75a9150e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Apolline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-55ce-7249-95eb-d1217a98cf9e",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Apolline",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6d48-72ca-ac5c-2d9daa94395d",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Apollon",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-63cc-718d-8c44-6b7f1b368e6f",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Apollon 11",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8303-739e-8a28-9f6c55573cef",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Appareils à Raclette",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-754b-7353-83db-c9687685fcaa",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Apparel",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4cfe-7330-9381-675e1d6398b6",
            "brand_id": "019f426a-4cee-7161-803c-0ac72405dea2",
            "wording": "Approche artistique",
            "brand": {
                "id": "019f426a-4cee-7161-803c-0ac72405dea2",
                "wording": "Gaspard Yurkievich",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8a2b-7137-a90a-7b57ed343ff2",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Aprica",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-824e-73ca-8e99-7aee6e871867",
            "brand_id": "019f426a-824a-72a1-a3ba-1d133b9ccf7d",
            "wording": "Après-Shampooings",
            "brand": {
                "id": "019f426a-824a-72a1-a3ba-1d133b9ccf7d",
                "wording": "Planter's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-951f-72ca-bb22-c4fe02583d09",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Aqua Back Plus",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9083-724b-ae74-cf8768f9ba96",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Aqua Fit",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-815d-7263-bd64-1b471419a6eb",
            "brand_id": "019f426a-815b-711a-b5ad-0909f1c1a547",
            "wording": "Aqua Infini",
            "brand": {
                "id": "019f426a-815b-711a-b5ad-0909f1c1a547",
                "wording": "Galenic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7ff3-72c0-901d-a6022f8b7279",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Aqua Magnifica",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-649d-7159-a09c-1bd31248f1f4",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Aquabionic Evo",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-803e-73a9-9dfe-ae3b9dfe2312",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Aqualia Thermal",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80f8-73e2-80cd-b636f8dcf2be",
            "brand_id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "Aquamemory",
            "brand": {
                "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
                "wording": "Gatineau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6651-71cc-ab12-8996df6ddf95",
            "brand_id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Aquanaut",
            "brand": {
                "id": "019f426a-664a-7284-9d69-a75dee56956e",
                "wording": "Patek Philippe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8184-7342-acad-9b727e7e8d68",
            "brand_id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "Aquaporin",
            "brand": {
                "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
                "wording": "Eucerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-655a-70f0-9fcc-2eae9de14292",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Aquaracer",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7c53-72b3-83cb-f36f2af89805",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Aquarelle",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-60a1-72e4-870f-48e6e981c3cb",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Aquascaphe Bronze",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6096-7188-a598-291cba76e822",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Aquascaphe Classic",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60ac-73a7-95b5-e68933c1a8fc",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Aquascaphe DUAL-Crown",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60b0-72c0-bab8-f9b433434b78",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Aquascaphe GMT",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-60b5-709b-9b95-b7d9801f2706",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Aquascaphe TITANIUM",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7f69-72e2-a4f3-1c9b0d4d59ad",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Aquasource Gel",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6742-724a-8ebd-b6dcdea42ff4",
            "brand_id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "Aquatimer",
            "brand": {
                "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
                "wording": "IWC Schaffhausen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-64c7-70ac-825b-6662dee488e1",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Aquatrek",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8679-7096-8480-f159dd9b5611",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "Aquos 4K UHD Smart TV LC-65UI7552E",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-867e-73bd-9c08-027769d1852a",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "Aquos 8K UHD Smart TV LC-70X500E",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8681-715c-91c4-717d62550d3b",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "Aquos Full HD Smart TV LC-40FI5012E",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8506-71b1-b98b-47af8c4afe2c",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "Arabica Manual EA811840",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5a6d-730c-86db-87d68de51ba4",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Aravinda",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4f8a-7210-90ec-09a1e8610d9a",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Arbre de vie",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-572e-7165-aea6-59f3843d6de4",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Arbre de vie",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-68fd-7363-9050-af69329883a4",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Arch",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-69a8-73f3-a309-751cda02b8c1",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Archetype",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-52b6-726b-b3d5-5d31ce05ceba",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Archie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4b8c-7165-b9ad-454d102e5f48",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Archlight Sneakers",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-73eb-7353-9703-9f26acc016e6",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Arcobaleno",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9461-72bd-9a86-48ce32209beb",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Arctic™ Mitts",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8165-70c1-8a28-331f9cbc54cb",
            "brand_id": "019f426a-815b-711a-b5ad-0909f1c1a547",
            "wording": "Argane",
            "brand": {
                "id": "019f426a-815b-711a-b5ad-0909f1c1a547",
                "wording": "Galenic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-763d-715b-b01e-e77a6544e00e",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Argaron",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-744f-70b6-98d9-ba1c368aa82a",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Argent",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5e05-70f8-8a42-9cc19fc2f7c2",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Argent noir vieilli 13cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e0d-7084-8217-845ecdc2fc44",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Argent noir vieilli 17cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5dfc-72fb-8d6e-6f1394f910dc",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Argent noir vieilli 9cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8e21-7390-ba5c-3d396f60d7f1",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Argento",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6b9b-72c7-a76a-1e3593d55f4b",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Argentée",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8dfa-7317-881e-69e4907d9136",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Argos",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7469-71fe-a9b4-5f5dd7d41862",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Aria",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7311-7165-bf57-5745371d793c",
            "brand_id": "019f426a-730f-7220-990e-238e084e3373",
            "wording": "Aria",
            "brand": {
                "id": "019f426a-730f-7220-990e-238e084e3373",
                "wording": "Adax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-776d-73c4-9649-98eac4f6188b",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Aria",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c14-70c3-89bc-82369e2dd898",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Aria Belt Bag",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c9d-73ed-9ee0-d8d718f16736",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Ariana",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6b3f-713f-bb44-6d92f664137e",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Ariana",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5fe7-710b-beab-c1646e83ffac",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Ariane",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-65d7-72f4-8e23-89838adc2bbc",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Arizona",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7a61-72f7-897e-010723e9813a",
            "brand_id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
            "wording": "Ark Bag",
            "brand": {
                "id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
                "wording": "Cult Gaia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8064-70a2-b3b4-6a96d6fb2ea5",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Arkéskin+",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-559f-7022-b24a-49e270b75a78",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Arlette Nacre",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6e90-7086-8c03-76634744eb01",
            "brand_id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Arlettis",
            "brand": {
                "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
                "wording": "Coccinelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8fbc-72e9-9e51-ce6167375fe1",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Arm Force",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fba-7294-aa9e-fa865c5befc1",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Arm Sleeve",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-53ef-709e-8e2d-8d563ae573c4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Armand",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7db6-7339-bf9f-4cad8767ba91",
            "brand_id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Armani Code",
            "brand": {
                "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
                "wording": "Giorgio Armani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-645c-72a3-b25b-90d8a46ca0a0",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Armure",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7645-713a-bb7d-b24572b8357b",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Arnold",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6150-7051-8ba3-95abf13fc625",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Arnold von Melchtal",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d31-71a9-9089-dd6d0b685574",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Aro",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-889f-70cd-8da5-27faa6f9f5b9",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Aroma G1",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-889e-71f0-b783-0cadb881a222",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Aroma G2",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-889d-712b-8412-7b860331b837",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Aroma G3",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-80ab-71a3-a76d-e7186c1a919d",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Aromaclear",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80a9-73e7-9a50-0a2c2bcded3b",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Aromalliance",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8b09-70bf-a8c6-fd5fd6cd7c2d",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Aromatica X-7",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8eef-729c-a3fb-3fcf83e238cc",
            "brand_id": "019f426a-8eed-7332-983d-520b0da44271",
            "wording": "Arpenaz",
            "brand": {
                "id": "019f426a-8eed-7332-983d-520b0da44271",
                "wording": "Quechua",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-67b2-71a7-ae17-a6ca1ea967ad",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Arqué",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7620-7033-b59b-8dfb898240cf",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Arreliwet",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-94d1-7013-800f-cb568a584f0a",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Arrowood Riva Mid WP",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5b8f-71f9-b8e2-55b9ca6baecd",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Arrows",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7981-7015-a5d5-5cc20d819907",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Art Books",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4d6b-73ee-a8c3-4ca158e7b6f0",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Art deco 1925’s",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8f22-7176-a8cf-97e02b8057e5",
            "brand_id": "019f426a-8f20-70c1-afdf-bad61f98b633",
            "wording": "Arthur Ashe",
            "brand": {
                "id": "019f426a-8f20-70c1-afdf-bad61f98b633",
                "wording": "Le Coq Sportif",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-539c-7182-91bf-14c857be7124",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Arthusa",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8fa3-7360-8427-aa1d2e5f7124",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Artic",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-82b0-7129-b6c8-6b47fc370aab",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Articulations et Muscles",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-88ba-7290-803e-ccc29d68cf3d",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Artisan Stand Mixer",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5126-714d-b2a1-a3e2f08e319a",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Arven",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5152-73cb-823a-3e5035b28d86",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Arven Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6597-73a6-a6bf-d95bcd2934c3",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Asahi",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9425-7296-84ca-0c50fe525438",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Ascensionist Pack 35L",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6cf2-7208-9902-4a5e0b47434e",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Asics",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9364-720f-8ab5-6a0a5a2ca359",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Aspect",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66e4-72ce-b6eb-faaa292e30f9",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Aspen",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-883d-71b6-beae-6b5552b4caf5",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Aspirateur balai",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-883f-723a-9e77-f1ece7238a7c",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Aspirateur robot",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-883b-70e7-8e84-8ef8fc4bdbd0",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Aspirateur traîneau",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8cef-73fe-9d28-851f834e1e07",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Aspirateurs",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-833d-7305-be5b-ebfe420c7c5c",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Aspirateurs",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8305-735a-91d5-91a96f44f5b2",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Aspirateurs",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8bcc-72ad-bc09-d7c33eca2a60",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Aspirateurs balais",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-82b6-7029-ab69-59bc3975a92b",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Assainissants",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8f06-7144-847d-456bd74dc98a",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Assassin",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7fcc-73f3-8b1f-874d4a863f50",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Astera Fresh",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9021-7153-9a0f-a14c06a47516",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Astor",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-710d-719f-aba3-ca37a7719e3e",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Astra Slingback",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4fa7-7264-aed9-6e8cf4a21df3",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Astrale",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5270-7332-8cbd-b00345046828",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Astrid",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54de-7307-9037-e8ebb06d8361",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Astro",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5425-7214-9d85-59fdde79f729",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Astro Vintage",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-49b7-70d6-ba11-fa28bc652489",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Astrologie Bandana",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-49a5-7077-9675-baad61c5751b",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Astrologie Remix",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6671-7316-9689-8a43a123999c",
            "brand_id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Astron",
            "brand": {
                "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
                "wording": "Seiko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5e6e-7293-b4ce-abebb38411e7",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Asymetriques",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6ba5-7284-8524-86d5af8ba398",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Asymétrique",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-69a3-7065-b5ce-17f478edba81",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Asymétrique",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5291-7357-94f4-9c9b7edd4d74",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Athena",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7c13-706e-9699-6733ee0fc62c",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Athena Backpack",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-55de-7090-8b8d-00918a6d1e8f",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Athenais",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-750c-72d3-9e64-c71c923d228a",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Athletic Pants",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5895-7371-aefb-1ab44411bdb4",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Athletics",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9226-7037-91f8-09a9c5d9702e",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Athletics",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88ae-7097-a53d-c30c8e84dd10",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Atlas Neo Pull-Out",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6750-7152-a081-4079fa12059f",
            "brand_id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Atmos",
            "brand": {
                "id": "019f426a-674d-7327-869f-6e3c527d4081",
                "wording": "Jaeger-LeCoultre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7f5c-713f-9b18-f546a0ac9532",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Atoderm Crème Nourrissante",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-69f1-72bc-8924-706929731a8a",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Atomic",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8186-7382-8431-35e8c5f08acc",
            "brand_id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "AtopiControl",
            "brand": {
                "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
                "wording": "Eucerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6cec-712f-9916-ad5c4b3e746a",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Attaché",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4a07-7310-9df2-3c30751ba5f2",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Attelage",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5f94-70a1-9094-b7036fe491b6",
            "brand_id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "Attitude",
            "brand": {
                "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
                "wording": "Pequignet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-88fe-72d2-98d3-354d929ed52a",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Attix",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7349-7341-86e0-a41f7dca9c29",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Attleyyx",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-48b1-72eb-ada9-3d26614d0de4",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Attrape-moi... si tu m'aimes",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4be5-739a-a504-ba02aea3ce26",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Attrape-rèves",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4bc4-714e-94b1-17521f38ae1d",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Au Hasard",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6e98-7201-bb47-3c2294d14176",
            "brand_id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Audrey",
            "brand": {
                "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
                "wording": "Coccinelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-52ff-7305-9cbb-115e725e890b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Auguste",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5301-71f5-a3fe-ad885fd5956c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Augustin",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53f4-712e-a335-cb00d3cffc40",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Augustino",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7c73-704d-9d44-0edef08abb0a",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Aurora",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c20-7195-a842-9b919d69c65e",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Aurora Gown",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5071-70fa-a475-9278cd6fdc28",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Aurore",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5921-7307-befb-0bd391c2b842",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Aurèle",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-588f-7275-8e28-cd212387184e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Austin",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-655e-7139-90b2-967f6a25888a",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Autavia",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8ffb-720b-8547-8e6be5edd984",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Authentic",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-906f-7220-b37f-a5b98df85c32",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Authentic Tee",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-660b-738f-86e5-dd7145406a6c",
            "brand_id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "Automatic",
            "brand": {
                "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
                "wording": "Louis Erard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5fa2-70d0-8b02-d124da0c63eb",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Automatic",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8952-7364-9c5e-1a676ead8966",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Automatic X7 Pet",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7128-711e-86f0-58e316263b62",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Automne Hiver 2019",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7125-7324-bd89-cd00c64540b7",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Automne Hiver 2020",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7121-715c-bfe3-2a472aef3c51",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Automne Hiver 2021",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-711e-7173-aa3b-13b6301014cd",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Automne Hiver 2022",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-711b-73f8-bc64-55ef5b26e92f",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Automne Hiver 2023",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7118-7174-b6c1-7e01cda591e0",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Automne Hiver 2024",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9584-7175-8290-4137a2405438",
            "brand_id": "019f426a-9582-721a-b560-ee4dcff73247",
            "wording": "Autres",
            "brand": {
                "id": "019f426a-9582-721a-b560-ee4dcff73247",
                "wording": "Autres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5543-7078-85d5-e77b3a74a627",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Auxane",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-72b0-706e-8060-d8e592db9cb9",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Ava",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c98-70e8-b060-aad2ad521835",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Ava",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7740-7374-807a-6ace10881d7e",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Ava",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-93fe-72f6-8a3c-588c3f089bd6",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Avalanche Shovel Beast",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93fd-734a-a7ea-e9596531b4e6",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Avalanche Transceiver 3+",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-712a-706b-848e-bfe4d7c50839",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Avant L'automne 2019",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6700-7029-bfe7-841edb4a2995",
            "brand_id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Avenger",
            "brand": {
                "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
                "wording": "Breitling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6b22-715a-b5a6-30775cb36181",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Avenue",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b36-723d-b8de-4e296609836e",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Avenue Quai",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d3b-710c-853a-9b2113dad850",
            "brand_id": "019f426a-7d33-7136-87db-90f8d2b47523",
            "wording": "Avery",
            "brand": {
                "id": "019f426a-7d33-7136-87db-90f8d2b47523",
                "wording": "Frye",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c87-7095-9e82-35c702cef79b",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Avery",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6c30-7100-a6ef-84f4d977dc8f",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Aviateur",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6108-708e-9588-9c222d006deb",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Aviation",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-610c-703c-a457-2c449d641a3c",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Aviation Chrono",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6707-7075-a258-84aba2426837",
            "brand_id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Aviator 8",
            "brand": {
                "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
                "wording": "Breitling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-767c-735b-ae4e-39ca0de2e225",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Aviator Sunglasses",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77ae-731f-acf9-83437f1320b2",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Aviator Sunglasses",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7957-73e3-8276-6481acd4559e",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Aviator Sunglasses",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7aba-72ce-ae7a-0bb59d5d94f8",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Aviator Sunglasses",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b0a-7389-860d-43c08cc0bec3",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Aviator Sunglasses",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4f0a-735e-bef7-29d7523dae47",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Avila",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-52a1-716d-b345-022f015e0825",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Avril",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7383-71ac-9fdd-8ef115b84e29",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Avril Roll Neck",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8e22-724a-8efc-9e3cbfdeb444",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Avvolta",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9113-739c-bade-d8f294291903",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Axilus 2 Energized",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5614-7364-9358-9f8a600fae86",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Aza",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52d4-7168-a832-ff038e2eca1b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Azalee",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7c5a-73eb-b65a-f4d4cf4b6dae",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Azur",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-86b5-7210-9f7a-b181649432dc",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Azur GC4567/80",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5618-7383-9c3f-dcc75ce51241",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Azzelia",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-592b-706a-b045-097728f19f2f",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Azzo",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-68c7-7354-aaeb-81c3e940e027",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "B",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cb8-70ec-b179-cc7b8a9a5366",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "B-Army",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6cb6-7227-9c3e-0ccff8597743",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "B-Buzz",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6cbf-71fe-8509-6acff56e643b",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "B-Buzz Dynasty",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8fdf-70d0-83f6-b34c0d240ddc",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "B500",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8c0a-73d2-991c-7e3f648f5401",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "BA 3211",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8dd3-72bb-a4a3-1d642816f440",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "BAP300",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8dd5-7345-a80e-73208f9e6d36",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "BAP500",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-76cd-701e-9ff4-c11468380eab",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "BARCELONA",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-593f-7342-8ca1-632629d0ef72",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "BASILE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-817b-7315-806f-a37681b8fdd2",
            "brand_id": "019f426a-8171-726a-a030-2570fad0321d",
            "wording": "BB Crème",
            "brand": {
                "id": "019f426a-8171-726a-a030-2570fad0321d",
                "wording": "Akane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b3d-730e-be99-e1d6100dbc87",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "BBC 3C26 X",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-911c-7266-987f-c138b15b41dd",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "BBN Shorts",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8c05-7031-b290-e72f95d5cd37",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "BC 7045",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-904e-7066-bab5-23e37564c21f",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "BCAA 4:1:1",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-904f-7319-8546-4b592a1ddc67",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "BCAA Endurance",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8746-71d2-91ba-d769c3322875",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "BCB 31 AA E",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8769-70a0-bccc-7b8204339afa",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "BCBF 172 NFTK",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8cde-7242-a46c-3082a7a0abe9",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "BD-5100",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8723-706c-854d-cb1a2b2818de",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "BD-N105B",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8721-7252-bdf7-d59a9066c047",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "BD-W85XA",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8cdf-7190-8e82-7623edaba838",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "BDP-5200",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8eac-7151-9b5b-a8549cd32f87",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "BEAUTY100",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6d87-716d-98fa-f65be50cf55e",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "BELLA",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-60bb-71c1-8ad6-8b0e79206f6a",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "BELZA",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5939-7100-89c1-fdcbc7602207",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "BENNET",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59b8-7219-b7a1-6e153e5f395b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "BENNY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5cd1-73e7-9ba1-b9f5fd50371a",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "BERENICE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-848b-73d2-9d1c-84128fb87384",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "BES33101ZM",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-64c6-721d-aade-5afac01d187c",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "BEUCHAT by WATTS",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8dd8-7162-beb6-58eefa51b470",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "BF41",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8dda-72d0-9530-e6936ba96af5",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "BF70",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b3f-7203-9244-174e8e5de7c3",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "BFC 3C26",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8612-71c5-aad3-bdf31ee7306f",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "BIE22100X",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8615-72b7-86d1-5e503a89a870",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "BIE24301X",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8614-7066-99ff-93876e3eebcb",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "BIM22300X",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6df6-7007-8555-6a0ace2d4929",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "BINA M",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8e83-72c6-a815-74bd903999f2",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "BL220",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6443-7371-9ca6-68485b96fedd",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "BM2",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6442-72ad-b382-95d36d3cc7c1",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "BM6",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9391-7142-bb6c-c50d51bf8b93",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "BN-60 FF",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8bb7-7293-9d75-5adf04b67705",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "BO12",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bb9-7128-850c-167e2dc44dd7",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "BO17",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89df-70d6-bb45-3c8fb6501352",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BO643RX/N",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89dd-73e2-9dc1-83db9a75d3e2",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BO660RX/E",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d20-70a4-b8ce-c2b6481fdefb",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "BO8776AX",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-89ea-71b7-ab0d-b3d6cdb0fde8",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOC65A030/W",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89e8-726b-924c-f1f9fcb0a9d8",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOC65A040/R",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89ec-73b8-99b9-9c2233ecf54d",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOC65A040/W",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89e5-728c-9c71-98dace53d3b6",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOCB175",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89e3-72c2-a5f0-d8c0e9d9f7a2",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOCB176",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89e2-7158-81db-2017bdd36154",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOCB177",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4ff2-7181-9ee9-aec15be144e3",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "BOHEME",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6de1-718b-9b1e-755432ef52da",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "BONBONS",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-60dd-7032-8af5-becfc16b9521",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "BONZER",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8d21-73a8-98e2-8751a754b88a",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "BOP799S51XG",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-89ed-7381-b46f-8bc9c9c2061b",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOV6310",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89ef-72a5-b1b8-ec30a32436b8",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOV6424/N",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89f1-7052-8741-ecfd4ec6c07c",
            "brand_id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
            "wording": "BOV6424/R",
            "brand": {
                "id": "019f426a-89db-7352-b3f7-798ac8be9b8a",
                "wording": "Bompani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-68eb-7310-8c6c-77c9042395c7",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "BOX",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-57e4-7257-8206-a273089834f8",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "BOX",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-589e-73a6-b248-b8c3974e2322",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "BOXY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8eb2-71a3-8f90-d6f02ccf3415",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "BP100",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8485-71bf-931f-6a907c5b3ebd",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "BPE556120M",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8488-7174-9923-73ce375aac1f",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "BPS351120M",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5ec6-719d-a5c9-c429cd3a2bf3",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR01-CRÂNE-SK-ST",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ec9-70ed-bdd8-43456c684bbf",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR01-CSKBLU-SAPHIR",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e7b-7236-a8c8-958419f211b2",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03-CYBER-CE",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e96-70aa-8c87-f47c4eb714c4",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0392-D-TR-CE/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e98-7091-98e6-01c23183c34a",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0392-D-WH-BR/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e91-72ed-8287-e6a2a23732d1",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0392-PAF7-CE/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e8e-730a-b154-53e0b51331be",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0392-RCO-CE/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e9b-720b-adf8-ef996ed49e4c",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0393-BLU-ST/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e9e-72ea-8c7b-073e54fce184",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0394-A521/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ea1-70ab-b0da-80a4ace32f51",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR0394-BTR-CE/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e7c-7246-84b0-efea2e534ba9",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-BL-CE/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e88-7216-8d18-6afdab10593e",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-BL-ST/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e8b-72b8-90cb-f2c81361fb56",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-BLU-ST/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e80-711c-9ab7-018eac8fcce0",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-CPS-CE/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e8a-7330-95b8-3290a229c404",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-GB-ST/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e86-73c7-bb10-0fba7bb6b4d9",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-HER-CE/SCA",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e83-72cb-974e-f8e2f469a6d1",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-MIL-CE/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e81-71ce-a0c7-997ad0877c0f",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03A-PH-CE/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e93-71a4-9ca7-e925b4cf7c71",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR03AD-BBR-ST/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5eb1-701d-ba19-4ddf9102f3ec",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR05A-DR-ST/SST",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5eb3-7203-9054-921d6595d9c0",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BR05C-SI-ST/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ea8-72df-9333-fa776cfdf9df",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRS-BL-CEM",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5eb7-73af-8f81-6477c8db3fd1",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRV292-BL-ST/SST",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5eb9-7072-9929-3b8681a13c4b",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRV293-BL-ST/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ebe-72bb-9767-847137d4d3f2",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRV294-BL-ST/SST",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ec2-7119-8981-a78299431acd",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRV394-BL-ST/SST",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ea3-7387-8db9-986a0fc8a6cf",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRX1-AL-TI-BLU",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5eac-70f7-8104-6e8dfcad52a9",
            "brand_id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
            "wording": "BRX5R-LUM-TC/SRB",
            "brand": {
                "id": "019f426a-5e78-7376-93fd-3d4a7822d9d7",
                "wording": "Bell & Ross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8954-7289-a333-006eb0df5543",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "BS360 Comfort",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8fdd-70ae-b5b8-ca85722d428f",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "BT100",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fdc-708f-8701-40989fa782eb",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "BT500",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-624b-702a-b49d-9336f563efaa",
            "brand_id": "019f426a-6245-70b2-b71a-f270c02cbec9",
            "wording": "BT6",
            "brand": {
                "id": "019f426a-6245-70b2-b71a-f270c02cbec9",
                "wording": "BRM Chronographes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-83d8-71f7-9f39-b8f462bd9467",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "BTW L81253 FR",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b3c-704d-a72e-062dafb91f84",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "BUC 3C32 X",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bdb-71a1-afe7-d4778c91352a",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "BV5722 Compact",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8519-72ee-b5b7-62f937cd771b",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "BW3110",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-851b-71fc-b750-003420f72bb0",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "BW3140",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8518-72f0-8be4-0e24f6e236b6",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "BW442D50",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83da-73da-a53b-6b8a16f07462",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "BWE 71483X W FR N",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5576-7171-86dd-deb8e1cce530",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Babette",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-68f4-70e6-adb1-494fae709956",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Baby",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6689-70e9-bfad-11c674c10271",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Baby-G",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7836-7268-8a34-822417e9d915",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Bacall",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6406-71cd-863d-6ee5600f8ba2",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Baccara",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5349-7059-95d6-c3b4aac60740",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Bacchus",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7074-72f8-83bb-9c307cc7ab42",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Back Foggy PA",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8013-73ab-b46d-ff91d95f73ef",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Back Up 3D",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-915e-7019-b2a2-dd4ae97cd767",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Back Zip",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92b5-7024-bf87-15a24f26220c",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Back-to-Berkeley Redux",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-74d9-71e1-994b-d4f5ded59c10",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Backpack",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-768c-73af-9306-025c6bbfd03b",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Backpack",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74c7-726c-9c02-63b7c391842e",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Backpack",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7511-70b0-9ba5-73acb9f2fb92",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Backpack",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9034-7005-9c06-bcf160292f2b",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Backpack",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7a37-7020-98a2-c26492e9c32d",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Backpack",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9453-712d-8703-e12e65bdf9a1",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Backpack Hiking 25",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9451-730d-99ba-d2a88b39497e",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Backpack ZipIn 15",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6fc2-7211-8159-88cca86860f6",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Bad Boy",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-65b1-7305-a0f8-8d2aa343f4a6",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Bagatelle",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-692a-7260-ad4e-110f9ed2f0bd",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Baggy",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4b36-70b5-a266-368140a60ccc",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Bague Ajustable",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cca-7228-a8a4-c16908a7715f",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Bague Bahia",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b11-70d7-8a20-6180cd964477",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Bague Christofle",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b34-721a-ab4f-c7840303088f",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Bague Fantaisie",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cbb-7367-95de-44296b75be2a",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Bague Nudo",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4ade-7388-bc7e-5a7be5950e4e",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Bague Torsade",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c78-70fe-a6f6-efbcdeb7daad",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Bagues",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c47-73da-a84f-130ae874fca8",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Bagues diamant",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a99-7064-b75d-91715ddbdb28",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Bagues en Pierre Précieuse",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c3b-7113-89d2-f8c6feb3ac6c",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Bagues en argent",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c33-71bd-aa55-bc7eefa8409b",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Bagues en or",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6894-71a7-b855-e2410e0791c2",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Baguette",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4edb-739d-950c-4a9440bd1ac6",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Bahia",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6b4e-73c1-bc1e-4dbdd8859fc6",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Baie",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-725a-7151-ab20-3d2a6d59253f",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Bailey Button",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c37-724d-ae40-2b422493ff12",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Bain Rimini",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-51b4-701f-9bae-7f0e57ce383c",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Bain Vitalisant B",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-51ab-7122-80ce-d61f85ce7ecc",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Bain Volumateur aux Algues",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5892-7243-9bc7-2faafe7a654a",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Bainton",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6fed-731f-8284-552bcf8af005",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Baker",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7438-70a9-bf8a-c5e0d11115a1",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Balancoire",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-86d1-721d-adfe-40c975fae3e2",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Ball Animal 2",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86f1-72cb-9a93-a447f6370e07",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Ball Multi Floor 2",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7de1-7382-9eaf-79a336b0f7c4",
            "brand_id": "019f426a-7dde-7074-a915-515a9b7a4f53",
            "wording": "Ball Star",
            "brand": {
                "id": "019f426a-7dde-7074-a915-515a9b7a4f53",
                "wording": "Golden Goose Deluxe Brand",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6f98-7165-bbb0-09d9dae8e11f",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Ballerines",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ad4-7024-8f49-fa706dcb8467",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Ballerines de voyage Minnie",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4a29-70ab-ac26-2d68f05121e8",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Ballerines en Cuir",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-90ac-7237-85e0-cd82f49c1626",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Balles de Massage",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-483e-7036-bc8d-8dc4079d7932",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Ballon Bleu de Cartier",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6766-7079-9835-76956422776e",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Bamboo",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-80ca-7228-aadb-7c5fb591c774",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Bamboo Matte",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e60-73ce-b3fa-49e14028e776",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Bamfield",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-903a-7329-8f50-2d35cb7fa599",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Banane",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6dba-7058-b77b-90d17212e957",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Banane",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-905f-72f5-81e8-c7694bcffee6",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Banda",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-90a3-70f5-804f-387423f8a8ae",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Bandages et Compresses",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-65dc-724c-8b10-ca5da7655755",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Bandana",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6aec-71f0-8c65-d6acddbeea66",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Bandana Keaton",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6791-7222-b8ec-9aff8fa5f69b",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Bande WEB",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-90cf-734b-972f-b4202c9e9e23",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Bandeaux et Élastiques",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94be-707f-ad9f-c7a7af852d06",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Bandit Full Zip Fleece Jacket",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-67ab-734a-9769-d554b04daf36",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Bandoulière",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6bc9-71e6-acdd-55d983a3b1f9",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Bandoulière S515/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6d4a-73d2-8f9f-ace5f2813a53",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Banista",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8da9-7301-ad64-7de1856946a6",
            "brand_id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Bannes",
            "brand": {
                "id": "019f426a-8da2-734a-ba8f-398809cb6407",
                "wording": "Franciaflex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94fb-729c-a1da-812eaf4001c4",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Banshee Pro 300",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-84f5-7073-a31a-e7dfb4342316",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Barbecue Électrique Optigrill+ XL GC722D",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7482-73fe-b59b-fd092a0554d5",
            "brand_id": "019f426a-747d-7196-9e7a-1075765e58a3",
            "wording": "Barbour Ashby",
            "brand": {
                "id": "019f426a-747d-7196-9e7a-1075765e58a3",
                "wording": "Barbour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7480-7191-84b4-36abaf63bebd",
            "brand_id": "019f426a-747d-7196-9e7a-1075765e58a3",
            "wording": "Barbour Beaufort",
            "brand": {
                "id": "019f426a-747d-7196-9e7a-1075765e58a3",
                "wording": "Barbour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-747f-7194-8fba-de4e6362fadd",
            "brand_id": "019f426a-747d-7196-9e7a-1075765e58a3",
            "wording": "Barbour Bedale",
            "brand": {
                "id": "019f426a-747d-7196-9e7a-1075765e58a3",
                "wording": "Barbour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7484-712d-8be0-5983f2b4dd5e",
            "brand_id": "019f426a-747d-7196-9e7a-1075765e58a3",
            "wording": "Barbour Liddesdale",
            "brand": {
                "id": "019f426a-747d-7196-9e7a-1075765e58a3",
                "wording": "Barbour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7485-7085-954a-56e4f18b8315",
            "brand_id": "019f426a-747d-7196-9e7a-1075765e58a3",
            "wording": "Barbour Quilted Utility",
            "brand": {
                "id": "019f426a-747d-7196-9e7a-1075765e58a3",
                "wording": "Barbour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-925d-724d-be25-8800af409679",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Bare Access XTR",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-802a-707f-937e-3464c4020427",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Bariederm",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-802e-7030-94bc-bffc018caf42",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Bariéderm Cica-Crème",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-58f7-710d-ad15-de1a470d0ce1",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Barkley",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5bda-7329-bd68-689df4fec7f3",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Barlow",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-53d0-7334-a844-46b30ccda4cf",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Barnabe",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5850-705f-8a51-0dd2933a63b8",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Barney",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-728a-727d-9e1c-64fb689af979",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Barocco",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5fb7-7011-9a04-936dc077fded",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Baron",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6617-7399-ad24-81e672b52a6b",
            "brand_id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "Baroncell",
            "brand": {
                "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
                "wording": "Mido",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8330-720c-8d31-12141968c10f",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Barres de Son",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9099-7222-b466-494db9f01e28",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Barres Énergétiques",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7353-7181-8cd9-e560ead6bce2",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Barrona",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-772d-7186-8234-23f4cf445baf",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Baseball",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7aa9-7307-b8be-a0b72462b61a",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Baseball Cap",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bea-72cd-9e21-787020a30e0f",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Baseball Cap",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d68-7101-8040-4ac2a91bae44",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Baseball M/S",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-612f-73f5-aaf3-774eeba6e3a3",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Basel",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-91d4-73c5-8e30-305e73e890d5",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Baseline",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7569-70ed-84c8-451749aabb3a",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Baseline Packing Cubes",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7572-7268-9e08-cbdb4887e9ad",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Baseline Spinner",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65e1-7350-9adb-7103310abf2b",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Baserange",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9534-72e6-92d4-e7f814bd3289",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Bash 86",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-913b-73c9-9079-69ee6468aa70",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Basic",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9063-70e4-8e8e-9fc950090b5c",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Basket Tank",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-701e-710c-b5e9-68762b14576c",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Baskets",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7335-7019-8f31-f55403b148f9",
            "brand_id": "019f426a-732b-7122-9a70-9e68239375f1",
            "wording": "Baskets",
            "brand": {
                "id": "019f426a-732b-7122-9a70-9e68239375f1",
                "wording": "Alba Moda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7005-72fe-8eb0-90eac5ad29dc",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Baskets",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4a1a-72b2-93ac-0ce6b7957cb0",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Baskets Curb",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6ad5-71ba-9c3c-a49fdfca393b",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Baskets Good Luck",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6244-7072-8c2a-7aa3e39baf60",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Baskets ZV1747",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-61e6-7088-a9cd-f95840cc161e",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Basses ZV1747 La Flash",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-92ff-703f-995d-6090e9fe49ed",
            "brand_id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
            "wording": "Bat Flip",
            "brand": {
                "id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
                "wording": "Oakley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-71fb-70bd-9ea9-0cdf384cb120",
            "brand_id": "019f426a-71f6-7180-8307-8076065c7342",
            "wording": "Batchel",
            "brand": {
                "id": "019f426a-71f6-7180-8307-8076065c7342",
                "wording": "The Cambridge Satchel Company",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-769e-73bf-9ef5-71e821ba95da",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Bath Mat",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-769b-73e9-8cda-32df59af25e3",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Bath Towel Set",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-82f8-71cc-a312-420d90a74d66",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Batteurs",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-93a8-73b0-815f-0d5b6082821d",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Batting gloves",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-81a7-7222-b3b0-69171cfebed2",
            "brand_id": "019f426a-81a4-70ce-8c58-3655343fb469",
            "wording": "Baume Après-Rasage",
            "brand": {
                "id": "019f426a-81a4-70ce-8c58-3655343fb469",
                "wording": "Lierac Homme",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-51fb-700f-ad59-ddeb82af82f9",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Baume BOIS de ROSE",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8135-70d3-9424-828f8afc01e5",
            "brand_id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Baume Réparateur Crevasses",
            "brand": {
                "id": "019f426a-812f-7248-90f8-485049bd327f",
                "wording": "Vita Citral",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8132-72cf-9943-eb00899267eb",
            "brand_id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Baume Réparateur Pieds Secs",
            "brand": {
                "id": "019f426a-812f-7248-90f8-485049bd327f",
                "wording": "Vita Citral",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80b4-71e5-93e7-d4561018f290",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Baume de Rose",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6c91-7360-b161-a33b166ab3cb",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Baxter",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-68f2-726e-b44a-5c961dc04298",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Bay",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-55c7-7135-8698-5c5d69db1b8d",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Baya",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6af7-723f-aaa8-5d0b56a33430",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Bayston",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6391-70cd-865c-395eb3389478",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Be Crazy",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7adc-73a7-935b-a12e6dd3740e",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Be Delicious",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5c2d-71df-abe1-0b08ae25533d",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Beacon xl",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-71f3-71dc-ac90-781357f942e4",
            "brand_id": "019f426a-71e5-739b-b009-e6c9f9883af0",
            "wording": "Beaded Bracelets",
            "brand": {
                "id": "019f426a-71e5-739b-b009-e6c9f9883af0",
                "wording": "Susan Alexandra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bae-7392-8005-f6e7a57c46b2",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Beaded Necklace",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-71f1-72f5-877e-ac6e3f77c4a0",
            "brand_id": "019f426a-71e5-739b-b009-e6c9f9883af0",
            "wording": "Beaded Necklaces",
            "brand": {
                "id": "019f426a-71e5-739b-b009-e6c9f9883af0",
                "wording": "Susan Alexandra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74ea-70cb-8393-7bdd48661362",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Beanie",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bed-726b-954c-c2eadc15233e",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Beanie",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7aab-7362-a22a-bcbab78a3e3e",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Beanie",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7510-7092-bb33-b6fefe4fe06a",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Beanie Hat",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74d7-7016-9f5b-032886f87a5f",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Beanie Hat",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9457-730e-8517-990e963c0e6a",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Beanie W",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8c61-7055-933d-dba26408e785",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Beard Trimmer",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e92-70a6-8547-f3c875ee1e25",
            "brand_id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Beat",
            "brand": {
                "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
                "wording": "Coccinelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d6b-7216-aacc-53435aedb533",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Beatrice",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7695-7284-a101-f92107d224be",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Beauty",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7f87-7289-97a3-b682a39c4167",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Beauty Elixir",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5395-71fe-8650-e2b8dda524bd",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Bebita",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c8a-71d5-9fdb-bd1e51d64324",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Bedford",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-48af-72a9-a6ed-4c8e6cf95dda",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Bee My Love",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8afc-7233-a9a5-6af2a9c76138",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Beersafe",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-76a9-709c-ad82-159ef1b27b81",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Beetle",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-65bc-7092-a319-2c7ef9a1d828",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Beige",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-65ae-72ba-845f-d3d1fa6e8d8b",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Beige Quai de Seine",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-66e1-7019-8a1b-dd1ae7cbefb0",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Bel Air",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-72e7-7044-8fce-ad64b1b70546",
            "brand_id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
            "wording": "Belay",
            "brand": {
                "id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
                "wording": "ZAC Zac Posen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-52f3-7285-860b-0f17ab1f0f2d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Belinda",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-74a2-7039-9d24-576e27deac63",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Bella",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-775a-7068-aa2a-611923069eb6",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Bella",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8b07-720b-b37b-88bfea720f92",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "BellaVita Coffee Machine",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7550-7213-a3c0-5a61a472cb0c",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Bellagio Spinner",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7600-737a-b9d7-70c16b6c300f",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Bellalisa",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-52ef-71e8-ad88-82305d3467d5",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Belle",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6f08-73d7-b223-8d9a7be8edbf",
            "brand_id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Belle Vivier",
            "brand": {
                "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
                "wording": "Roger Vivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-65e5-7154-b910-b989eabd71f6",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Bellerose",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-760f-722f-b7a0-33dd413d8473",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Bellone",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4958-72d9-97b7-31bb7a38e4b9",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Bells",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6614-72d3-ac5f-7c401ec72775",
            "brand_id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "Belluna",
            "brand": {
                "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
                "wording": "Mido",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5c2f-73df-874c-a7c08041c555",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Belmont",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-752a-7161-bb90-02dfa0502f97",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Belt",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-753e-707b-a143-d27c8cc5a042",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Belt",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-78b1-7226-a2c7-210e41f44444",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Belted Cotton Dress",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6ca4-70d3-8d2c-8771e7f50bc1",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Belvédére MM",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-702c-7368-bd61-3302a5bb31e9",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Benchley",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-580d-70e3-ad56-b35ded4634f4",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Benny",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-79d4-735f-bbb8-3e4cdd775e44",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Benton Springs Full-Zip Fleece",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5320-7324-b60c-fc3696dfdce8",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Berenice",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-591c-707a-8245-c585a18ae4af",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Bergame",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6ff3-7240-a410-e30a914a9e89",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Bergamote Eau de Parfum",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5c0d-7326-8243-cebd96f2324f",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Bergen",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-70b6-720a-871f-ee0dae7f6366",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Beri",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-678b-7275-9e96-d85ad881dcaa",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Bermuda",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-73a5-7345-be88-3a6e5b7ec646",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Bernadette",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6f4b-711f-a041-56668830cd51",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Bespoke",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4cb2-73db-a1e2-0c88ba5c6dea",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Beth",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7d0a-717e-8511-151e40a764ed",
            "brand_id": "019f426a-7d05-718c-835c-0f04779e2708",
            "wording": "Bethnal",
            "brand": {
                "id": "019f426a-7d05-718c-835c-0f04779e2708",
                "wording": "Fiorelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9426-721a-be56-a51beab5414a",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Better Sweater Vest",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5feb-71f9-8172-75c74c720a89",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Betty",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-78c6-713d-94c8-0a474f798729",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Betty",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9022-703d-aab1-82b4e088292b",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Betty",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-76e4-7018-8493-07e7aa41465a",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Bi-Fold Wallet",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8a28-7299-9e2a-e15cf7d06c19",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Bi-Level",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-60a5-7043-99b4-d4e94aba56df",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Bicompax",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-81da-70cf-a438-8c2d5a5a2dd7",
            "brand_id": "019f426a-81d4-7077-b134-45f9f78252fc",
            "wording": "Bien-être et Relaxation",
            "brand": {
                "id": "019f426a-81d4-7077-b134-45f9f78252fc",
                "wording": "Fleurance Nature",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6717-70a7-8782-774c7d363805",
            "brand_id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "Big Bang",
            "brand": {
                "id": "019f426a-6709-73b7-833d-0e3813509c15",
                "wording": "Hublot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-66c4-7240-830f-72e8098f1fbd",
            "brand_id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "Big Bold",
            "brand": {
                "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
                "wording": "Swatch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7eed-7263-95a0-13c8d37fb427",
            "brand_id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "Big Student",
            "brand": {
                "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
                "wording": "JanSport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5f78-72d3-9fd1-184131c52286",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Big TV",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-72cf-708d-b754-de401ffc31f8",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Biggy",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5a5b-73ec-bdd4-149c794feb5f",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Bigkamala",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4c6b-71d9-b8d6-ce5047a53f7b",
            "brand_id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
            "wording": "Bijoux Historiques et Royaux",
            "brand": {
                "id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
                "wording": "Mellerio dits Meller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c69-72d4-90ad-4033ad6a80dd",
            "brand_id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
            "wording": "Bijoux Inspirés par la Nature",
            "brand": {
                "id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
                "wording": "Mellerio dits Meller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c62-7058-845d-aba2f67e28ec",
            "brand_id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
            "wording": "Bijoux Personnalisés",
            "brand": {
                "id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
                "wording": "Augis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c70-7151-8e0b-7bbc5cd90bd1",
            "brand_id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
            "wording": "Bijoux Personnalisés",
            "brand": {
                "id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
                "wording": "Mellerio dits Meller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c5e-73af-b43b-ec6a01426236",
            "brand_id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
            "wording": "Bijoux Religieux",
            "brand": {
                "id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
                "wording": "Augis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c67-71bd-a0f2-3a8c98f097ce",
            "brand_id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
            "wording": "Bijoux de Haute Joaillerie",
            "brand": {
                "id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
                "wording": "Mellerio dits Meller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c6e-703f-9829-8d7ff368ad46",
            "brand_id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
            "wording": "Bijoux de Mariage",
            "brand": {
                "id": "019f426a-4c65-723d-acf9-3112b13c7d5b",
                "wording": "Mellerio dits Meller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d18-73a0-84a7-c1d55011f645",
            "brand_id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Bijoux délicats",
            "brand": {
                "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
                "wording": "Stone Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c60-71da-b7d2-30acbf09501a",
            "brand_id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
            "wording": "Bijoux en Or et Argent",
            "brand": {
                "id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
                "wording": "Augis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cde-70e4-bb6f-d9a2c2f7f93d",
            "brand_id": "019f426a-4cd8-7186-859e-6a420c78a014",
            "wording": "Bijoux en argent",
            "brand": {
                "id": "019f426a-4cd8-7186-859e-6a420c78a014",
                "wording": "Cleor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4ce3-70e7-82b7-c4b448dbbabc",
            "brand_id": "019f426a-4cd8-7186-859e-6a420c78a014",
            "wording": "Bijoux en or",
            "brand": {
                "id": "019f426a-4cd8-7186-859e-6a420c78a014",
                "wording": "Cleor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4ce7-72a3-9c0a-4f6a5d3c2110",
            "brand_id": "019f426a-4cd8-7186-859e-6a420c78a014",
            "wording": "Bijoux fantaisie",
            "brand": {
                "id": "019f426a-4cd8-7186-859e-6a420c78a014",
                "wording": "Cleor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c86-70cb-b10a-0b967a5e8529",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Bijoux sur Mesure",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-907d-7210-a8bd-593a39d51b9a",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Bike Panty",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7cd9-71d7-b344-f5a3370396b3",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "Bike Travel Bag",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7672-7169-bd84-38ed3c240d58",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Bikini Panties",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-57a2-73b9-a30c-aab72348c949",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Billes",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6c47-7180-b191-51c25a45d1de",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Billie",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5360-7175-9845-3f31475b9f03",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Billie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-504a-72c0-bade-af3cd65f2419",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Billy",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7ef8-702b-b798-1562289959f8",
            "brand_id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Billy",
            "brand": {
                "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
                "wording": "Jerome Dreyfuss",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d39-738b-bf17-3424d4974083",
            "brand_id": "019f426a-7d33-7136-87db-90f8d2b47523",
            "wording": "Billy",
            "brand": {
                "id": "019f426a-7d33-7136-87db-90f8d2b47523",
                "wording": "Frye",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d43-7385-8108-1279258c60ab",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Bimini",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9051-7236-b646-dd894759e559",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Bio",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-81f8-7125-95f5-296377c7c7be",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Bio Divine Orchidée",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-800f-70ac-99fa-6c191a04524c",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Bio Enzymes Mask",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8dac-736a-8dd7-af4d2658558e",
            "brand_id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Bioclimatiques",
            "brand": {
                "id": "019f426a-8da2-734a-ba8f-398809cb6407",
                "wording": "Franciaflex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-949b-70e0-9194-c73c909e9e0b",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Biofuse Training Fins",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f73-7370-93c3-cddd4fd070ef",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Biotherm Homme Force Supreme Youth Architect Serum",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5bc2-734e-b113-5afe61211241",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Bird x Louis Louise",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5bd3-7359-bc63-b40209ac0aa2",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Bird x Train Fantome",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-77de-718c-b2fb-0620c2039748",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Birds & Roses",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-54d2-70b7-986e-f042b616d301",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Birdy",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4965-7382-9a85-6d16eeb0baa8",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Birkin",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-71ab-73f7-ad3a-50a7e75f7424",
            "brand_id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Bissett",
            "brand": {
                "id": "019f426a-71a5-728f-84dd-af5a49786b07",
                "wording": "Staud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9121-7011-9868-021b91efd2c0",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Bjorn Borg Track Jacket",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7a19-70c1-b0ce-a2e4e7a7864b",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Black 'Emma",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6565-70ac-bd0b-f994e74a518c",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Black Bay",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-80c8-7272-8c30-8374fbdb1c50",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Black Cleansing Oil",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9424-7251-ad87-f8e1ee9201c7",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Black Hole 32L",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-942d-7244-a334-733e28369836",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Black Hole Duffel Bag 55L",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6416-72fc-9f42-3798cbbec2a1",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Black Label",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-697d-700d-9fa2-4fb33d34722d",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Black Opium",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7228-72c0-a17f-f67c5163cb5c",
            "brand_id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "Black Orchid",
            "brand": {
                "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
                "wording": "Tom Ford",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-79f7-708c-b030-21f2433fa1fa",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Black Pepper Eau de Parfum",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6045-7011-9896-e3e79a32b39a",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "Black Phantom",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7fff-72cc-94e7-750602434e4b",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Black Rose",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8b46-7087-aa42-fc1a6c1393d8",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Blade 4 Pet Dual Battery",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9561-715a-9626-e66f69d9261c",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Blade 98",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9509-7239-97e1-8f09386d011c",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Blade Pro 200 Footprint",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-761b-7258-ad1b-c0edf9f06643",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Blaedillan",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7374-704e-9f3f-91342116ce78",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Blair",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5384-7399-aae9-7ba63ec84843",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Blaise",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-545f-7389-99bd-647d412b2511",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Blanc cassé",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6767-7302-9cf0-ea6dc86727dc",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Blandie",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cbb-73da-94ff-929975c9d2bb",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "Blaze",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-91b4-727c-bdac-fdb862390d13",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Blazer",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6b6d-709c-8fe7-a241abc399ab",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Blazer",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-75a4-733a-a5e2-471e8b66b7e6",
            "brand_id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
            "wording": "Blazer",
            "brand": {
                "id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
                "wording": "By Malene Birger",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6231-72db-8617-d4a9bc14349d",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Blazer Kate",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-730a-73f6-b742-16b2b03038c9",
            "brand_id": "019f426a-7306-7061-8a56-57026329a932",
            "wording": "Blazer oversize",
            "brand": {
                "id": "019f426a-7306-7061-8a56-57026329a932",
                "wording": "8 by YOOX",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72ec-73b0-9b43-f5d8cb55c35a",
            "brand_id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
            "wording": "Blazer structuré",
            "brand": {
                "id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
                "wording": "ZAC Zac Posen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-77bb-72f3-bf62-fbd8bdb845f3",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Bleached Flowers",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8457-7229-b365-c026b35eed9c",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Blender Blend-X Fresh BLP41.A0CT",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8459-735b-8cfd-47a8c530a91a",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Blender Blend-X Pro BLM800BK",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8425-70b4-9bfb-fcd7646de255",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Blender Le Blender",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8427-7002-8f0b-610cd180e9fa",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Blender Power Blender",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b8f-725d-acba-0725542d72ef",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Blender chauffant",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b90-73e8-af30-7f327ec1a289",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Blender professionnel",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84d3-73bb-8eba-3449de996d2d",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Blendforce",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5f3b-7037-a486-441eb0c5141e",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Bleu",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-545c-707f-a05e-81751d3eec7b",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Bleu marine",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7967-730c-a78d-46af50a23577",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Block Heel Pumps",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b30-70cb-9d45-87c94c44ed48",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Block Heel Pumps",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-677e-7269-b906-afc368ef46f5",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Bloom",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7090-72ba-a070-01c18d6e6489",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Blossom",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5b7b-730b-947a-aa9c91ecde14",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Blossom",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-77bd-73a6-bef0-47db021de678",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Blossom Birds",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b22-70fe-9245-32937a25d003",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Blouse",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ad1-7146-a572-74c42d8d6596",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Blouse",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-74fd-70ea-8415-dd90df213cdd",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Blouse",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7519-7104-bd81-c02f3ed48b70",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Blouse",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7cf4-7004-8804-b669a70019e4",
            "brand_id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Blouson Aviateur",
            "brand": {
                "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
                "wording": "Faith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6239-726d-854a-76eca1e6eacd",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Blouson Teddy",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7014-724d-bb25-346002b7d69d",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Blouson aviateur",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8edd-7325-8c0d-35a9d1e21933",
            "brand_id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
            "wording": "Blue",
            "brand": {
                "id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
                "wording": "Lavazza",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4e45-7288-a88b-28d7fb1ecb10",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Blue NEBULA",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7f6f-73f3-93cb-e65f3d3b77f7",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Blue Therapy Accelerated Serum",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-77dc-733b-be04-cd2cdea34ee3",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Bluebell Bunch",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-80d9-7104-96bd-941bfeb75825",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Blush",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4ecf-7298-93a5-867a15024ded",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Blé",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5c68-72fd-a914-385949d2e08a",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Bo Rose d'Or Epicée",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5b3d-71d0-a51e-b990e8362824",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Boat",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-65d5-70b7-a7ea-60d645acc9c9",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Bob",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7e11-7324-a1cc-1466cee0a7fc",
            "brand_id": "019f426a-7e0c-7332-84e4-d954cb74c752",
            "wording": "Bobbi",
            "brand": {
                "id": "019f426a-7e0c-7332-84e4-d954cb74c752",
                "wording": "Guess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7538-7170-89d3-8a852426f51f",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Bobby Bag",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7efa-73a5-a02f-ee2657046596",
            "brand_id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Bobi",
            "brand": {
                "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
                "wording": "Jerome Dreyfuss",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-69a2-7087-9a16-63e0e8373dce",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Body",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-80e9-726e-8ed7-d537c3358ee0",
            "brand_id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Body",
            "brand": {
                "id": "019f426a-80e7-7070-822b-75c13f312f2b",
                "wording": "Esthederm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-809c-71d7-8519-93e291726d0f",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Body Care",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fa1-724b-83b9-0ac5417b10d8",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Body Fit",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81e8-72fa-b032-dbe66413a4ff",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Body Guard",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-75c3-7270-9afa-ea20654602c9",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Boho Beauty",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-563d-70d8-85e6-2bee1e15b2d1",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Bohème",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5e4d-716d-b743-5fd85c7f6b48",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Bois",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7fe4-70e9-b301-6b64c9f53852",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Bois d'Orange",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-74f2-7348-b84f-abf2adb5fb91",
            "brand_id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Bois d'Ébène",
            "brand": {
                "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
                "wording": "Berluti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9088-7381-baec-5165d72fac8d",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Bois et Hybrides",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-909b-7000-8427-f76ddb2dc66a",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Boissons Isotoniques",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6f48-731b-b99e-76d6e17adf91",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Boite à LUNCH",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fd9-70fb-9f9c-1879edcdbccd",
            "brand_id": "019f426a-6fd7-7343-aa43-93e749c237d8",
            "wording": "Bold",
            "brand": {
                "id": "019f426a-6fd7-7343-aa43-93e749c237d8",
                "wording": "Manu Atelier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-75b3-7352-99d3-34c4a0810201",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Bold Move",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7875-72db-868a-45f9089a571e",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Bologna",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9127-721f-abbb-6fb08795d0ed",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Bolton",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-749d-7197-8b1e-1cbb69b56507",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Boléro",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72c8-7053-b234-6ae7b695c060",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Bom",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-780f-7166-beac-6ddaa94092a3",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Bomber Jacket",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7acb-7026-96e3-34c649734392",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Bomber Jacket",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b66-7313-97d1-b499973cb48a",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Bomber Jacket",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7941-73e5-bd72-d3c6198bbfc6",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Bomber Jacket",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6b25-72db-bfd9-40517267ec99",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Bon Bon",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8f08-7167-b277-425c1f7bdc7a",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Bonatti",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92c8-7351-9e48-f33a76c8327b",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Bondi 7",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5080-722e-85f5-5cfd19a93521",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Bonne Etoile baby Dior",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4ed4-723d-a06e-4f2f9d485853",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Bonni",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-719e-72f0-8ab0-b904ab323616",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Bonsa",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6157-7141-b2ca-8d766c1fbaf9",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Book Tote",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d5b-732b-b4ac-c6cd18668f66",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Bookish",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-70cd-73b4-9e35-70de31fd8155",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Boonie",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8fb1-728f-9222-069c44c3de9f",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Booster Elite EVO2",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fb2-725a-91d9-e0c8cabad611",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Booster ONE",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-70ec-7052-b28e-c911dfae2762",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Bootcut",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7652-72a7-9363-00f84d16d9ca",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Bootcut",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7531-7292-8692-52b59187a36f",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Boots",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7cba-7291-9c39-19ee51367773",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Boots",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5a81-70dd-81f9-e41f94d2a142",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Bopha",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7c77-719b-ac70-df9c26b4b1bc",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Bora Bora",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-61b1-728e-b5a0-5837f7eb7a86",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Borderline Bucket",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-75fb-7238-88cd-3a7727efd214",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Borealis",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8f16-700a-906c-e68a7c25a664",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Boreo",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-683d-736d-800c-c5ad8ead2167",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Boris Lawrence Henson",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-76d5-734c-a904-59133a53c666",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Borsa Grande",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75b4-72d6-b2d7-6cde09de58c5",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Boss Babe",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-68ac-705b-a32a-0ac6840f211d",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Boston",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6b8a-70a0-93fe-50ab58f14664",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Boston",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6dec-71ef-b03e-c0dcfa568ba1",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Botte",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7435-711a-9969-ba478bb44ffe",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Bottes",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4c97-7280-8437-bb33bb6bbfe2",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Bottes \"Dicker\"",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cf3-73e5-bff3-645d798a4eb3",
            "brand_id": "019f426a-4cee-7161-803c-0ac72405dea2",
            "wording": "Bottes et bottines",
            "brand": {
                "id": "019f426a-4cee-7161-803c-0ac72405dea2",
                "wording": "Gaspard Yurkievich",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7885-7320-86e7-12e53fb03f91",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Botticelli",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7003-73a3-83a7-d2c8599adcf6",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Bottines",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6242-71ef-bf7b-11c974c113c9",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Bottines Molly",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6f96-7229-8f87-35e923e19abf",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Bottines en cuir",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-701c-70ff-923f-eebdee9ca3dd",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Bottines en cuir",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8564-7130-9bee-934e1b5a6d8a",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Bottom Freezer",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4860-72b9-bcf2-bf765cf5c5a5",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Boucheron Pour Femme",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4c76-7171-b857-a91581637479",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Boucles d'Oreilles",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a55-72df-bd05-decd7c496596",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Boucles d'Oreilles Bohèmes",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4a8e-723e-b3df-a9d998cc2251",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Boucles d'Oreilles Créoles",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4a76-70d6-93f6-2a2198b36040",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Boucles d'Oreilles Dormeuses",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4b1c-733b-9fd3-c568f27d855a",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Boucles d'Oreilles Pendantes",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a93-7220-9811-cae0ba011554",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Boucles d'Oreilles Pendantes",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c4b-7009-89a8-32809cfc7665",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Boucles d'oreilles diamant",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c40-73ee-8bf0-eff669509721",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Boucles d'oreilles en argent",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c39-70f4-a814-70f55258e857",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Boucles d'oreilles en or",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d20-71b0-842c-15fe446d2b65",
            "brand_id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Boucles d'oreilles, colliers et bagues",
            "brand": {
                "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
                "wording": "Stone Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6945-708f-93fc-fa1a0767a617",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Boudoir 70 MM",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-841b-70d2-94f2-edf704b030d2",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Bouilloire Express",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-846b-7236-94e8-48451a398ac0",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Bouilloire kMix SJM610",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b97-72c6-abb9-ddaf6a803613",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Bouilloire électrique",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-82fd-7002-9718-7cecfc93ca97",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Bouilloires",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-49f4-70e7-9892-a4e9e3e9b82f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Bouncing",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6f36-737f-92a5-21848090e107",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Bouteille de Champagne",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6414-73e4-b4be-bcc61ecba4be",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Boutique",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7340-7028-a9f1-c9314e7bc9b4",
            "brand_id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Boutonnage",
            "brand": {
                "id": "019f426a-7337-711a-958e-920485f14fc0",
                "wording": "Alberta Ferretti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6794-71dc-aff5-3409132d939c",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Boutonnage",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6a97-7014-9915-c81ebf0d3a12",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Boutonnage",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-64bc-7343-a880-a6fc56eb4e04",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Bouée RONDE + Drisse",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6ea3-7054-8e52-dca237db04aa",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Bow",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5c0a-734e-923d-2298a1a3df3c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Bow x Le Train Fantome",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e38-7340-8d0c-6b219d2e5a60",
            "brand_id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
            "wording": "Bowdoin",
            "brand": {
                "id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
                "wording": "Hayden-Harnett",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e50-7164-9abb-1de28349d00f",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Bowen Tech",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e3b-727a-9bb8-9430be41d3d0",
            "brand_id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
            "wording": "Bowery",
            "brand": {
                "id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
                "wording": "Hayden-Harnett",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6d50-73da-8ed3-967773d41e17",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Bowling",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f72-708c-ab90-d0fc944b68b7",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Bowling",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6aff-728f-a077-727e2c9c6787",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Bowsworth",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6abd-7174-ac2e-568d8a87bb02",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Box-Trot",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-766c-7095-99e7-cdfec11f52c3",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Boxer Briefs",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-68d3-7179-8489-b6417b095da6",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Boxy",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-690f-71bc-922e-0309f6f5a6cd",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Boxy Cut Away",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5c31-70fd-91b5-b19d73ab7cfc",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Boyd",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7cfa-7272-aac4-b37190b4ec6c",
            "brand_id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Boyfriend",
            "brand": {
                "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
                "wording": "Faith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8a6f-7179-8f42-5017400f2111",
            "brand_id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "Braava 240",
            "brand": {
                "id": "019f426a-8a65-718c-97ba-329682898047",
                "wording": "IRobot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a6e-72c4-ad88-15a578453199",
            "brand_id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "Braava 380t",
            "brand": {
                "id": "019f426a-8a65-718c-97ba-329682898047",
                "wording": "IRobot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a6c-72db-affb-68b94061fec3",
            "brand_id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "Braava jet m6",
            "brand": {
                "id": "019f426a-8a65-718c-97ba-329682898047",
                "wording": "IRobot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-76f8-72d8-92f4-ab0c8c429e70",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Bracelet",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4b30-7222-94df-406b79b6fa1d",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Bracelet Chaîne",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b2c-71c9-afd0-e73ae91b024f",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Bracelet Jonc",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cce-731c-a870-ab6163155233",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Bracelet M'ama Non M'ama",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cc3-724c-91a4-a9a6bc097c2b",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Bracelet Victoria",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c7f-703a-9642-8bd1233b77d9",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Bracelets",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7545-70e1-b497-4b2754722ad5",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Bracelets",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4a73-71a0-85d9-2f72b595ae57",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Bracelets Charm's",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4aa8-72b5-8a07-e001278a732c",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Bracelets Manchettes",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a48-705a-a89e-b713a8eb8343",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Bracelets Multi-Perles",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4c44-70af-8d4d-deb6dfed523c",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Bracelets en argent",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c37-71bc-a643-fa59959972ee",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Bracelets en or",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7b84-7263-864f-aec8d8b98928",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Bracken Jacke",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-72bf-7305-88c2-a6959bb1db03",
            "brand_id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
            "wording": "Bradley",
            "brand": {
                "id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
                "wording": "Want Les Essentiels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-66d1-7080-b4f5-8d4f1dbaebcf",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Bradshaw",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-94ee-70b3-b51d-ea7786fb1efd",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Bradstreet Chukka Boots",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7622-71ce-ae05-5acdba8c3b2e",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Bragion",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-55ac-728c-9f61-1313bfebf7a0",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Braille",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7670-702e-b229-89cb04debcce",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Bralette",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75f6-72b6-88d4-1fbaf187235d",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Bralicia",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77b4-7317-9a98-f4aeeb6567f0",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Brampton Rose",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-70f9-732f-be53-d7d792b321ba",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Brea",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6849-72e2-afc3-da9937a94310",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Break Sugar",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7ccc-738f-abfa-14367b5ef433",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Breathe",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6802-73cf-80aa-ec66475c0274",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Bree",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-877d-727f-9a69-e86ebee527b9",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "Breeze BR71_BR30",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-762f-7007-9741-ac2f8a847fed",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Brelanger",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7628-71bf-8140-e2c424cd2fa1",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Brelea",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5723-72dc-8407-239663101927",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Breloques",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7638-7065-92a7-cf1e42a75adb",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Brendall",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-763f-70c9-94c9-0a263fda35a3",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Brendis",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7736-7097-a312-de8c2901534b",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Brent",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-950c-7060-aab6-2e1d1c146ecc",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Brenta 30",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5b1a-7089-a856-8d1661e102fd",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Brentwood",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6ef3-729a-b686-97df4cf92679",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Brera",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7418-708d-bc89-4ea6b24c86a3",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Bretagne",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6dc6-70e0-bfd4-f9118e9316bc",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Bretelle",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9000-7227-83a8-3f47474e7f5d",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Breva",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6d22-718d-86ed-930cdbfd6126",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Brezza",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7646-71f3-acc2-ada33e0edd51",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Bricardo",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-49c2-73fd-bc7d-fb311d4bbd59",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Brides de Gala TARTAN",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-499f-72aa-951a-0c98148df66f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Brides de Gala et Chaines",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-766f-717b-86bf-68e0f55f33bc",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Briefs",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6856-718e-ab7e-91cfa4e723f8",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Brigitte Coureur",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-82c4-71ae-8509-7d54bb5f84d0",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Brillance des Andes",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7608-73a8-b0a2-db77438fe85d",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Briradda",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c6e-71fc-a35a-892897d13be0",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Brise",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-70d1-73ed-905e-813abfe21016",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Brise-Tempète",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5b46-7246-8d1c-274f26445a89",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Broadway",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4c83-7048-981e-c6ebd45bad11",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Broches",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a7e-7243-a32f-87b033fc8343",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Broches Fantaisie",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6319-70ae-bb4b-1507efc74dcf",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Brodés",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7615-730d-be24-9a3d68c357f5",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Bromarco",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4fc3-705f-8043-f035095c2ca2",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Bronze",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5e08-734e-9de1-48b1bcdcc462",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Bronze 13cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e0e-70af-91aa-35c08a6036c2",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Bronze 17cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e00-71bc-9338-fadd91fb4c9e",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Bronze 9cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-742e-702c-a687-8e090d5a2668",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Brooke",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5b59-726b-8801-ebc03e2f3951",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Brooklyn",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d65-70e0-9669-2c280e402924",
            "brand_id": "019f426a-7d5e-717d-b460-7757ff76f29a",
            "wording": "Brooks",
            "brand": {
                "id": "019f426a-7d5e-717d-b460-7757ff76f29a",
                "wording": "Garrett Leight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5b37-70b8-9fc5-a5285fc4cb25",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Broome",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5856-72b4-9b2d-1ff79aafc262",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Bruce",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7076-7171-b53f-108042136b6b",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Brulant",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7c69-7096-ad76-06265726aa0c",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Brume",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-81f1-7211-9d9e-0df428480027",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Brume d'Ambiance",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5570-73b5-95b6-6ebadeb5c7c3",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Brune",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7884-7009-813d-acee4e349a9d",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Brunelleschi",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-50fe-73de-9aaa-3aa79d7b55e9",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Brut Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5143-71c1-9086-5f1fc6e9ec7a",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Brut Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-745e-72f3-b218-f95a641399c0",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Bryant RFID",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7368-71a8-9760-3439c3312e65",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Bryony",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-90e0-70e7-89c0-0584c4667927",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "Btwin",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7df3-728e-a92e-337d6a2ccded",
            "brand_id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
            "wording": "Bucket",
            "brand": {
                "id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
                "wording": "Grafea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6efe-7002-bdec-c69422e7bd5b",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Bucket",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a7b-735b-b5be-abadb1da7995",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Bucket Bag",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7956-7298-881a-141bcdc5286f",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Bucket Bag",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-67a7-7119-9832-c63f6275acc9",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Buckle",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78fa-722b-9b16-08c10ee1c54c",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Buckle Waist Belt",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-54d3-7144-83eb-c7cba4bd49dc",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Buena Ventura",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-79cf-7283-ac2d-cca169b99219",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Bugaboo II Fleece Interchange Jacket",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7997-738a-bde0-b0929ea6432e",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Bugaboo Interchange",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-941a-719d-9ee3-a36721d5c745",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Bugout Gaiters",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5c6a-7062-9158-1daaad4ca863",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Bulles Ensoleillées",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9559-704a-a4cc-04a6bd57f16e",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Burn Pro Arm Pads",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9557-72aa-bfb3-2479c066d1ba",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Burn Pro Shoulder Pads",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9554-7302-a81e-9d75a72a859f",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Burn XP-D Shaft",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8cfc-73c2-afbd-e835088da085",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Bus et autocars",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-582a-70f7-b040-810aec303d61",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Buster",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-77c0-7369-884d-d2bc3fa0728b",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Busy Bee",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-765d-73fd-ae4f-8f0741e1e5cb",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Button Down Shirt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77b3-727d-9117-54879fb19315",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Button Spot",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74dd-73dd-bad9-7eb6898a67cb",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Button-Up Cardigan",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8036-70da-9f6e-5d4da94119ba",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Bébé",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-818a-7304-8ad3-844f00d53466",
            "brand_id": "019f426a-8189-7363-93e6-15e1783a6be6",
            "wording": "Bébé",
            "brand": {
                "id": "019f426a-8189-7363-93e6-15e1783a6be6",
                "wording": "Mixa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8217-719f-8184-8ebe3f853187",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Bébé et Enfant",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5481-702f-b61f-eeee0f734d8d",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Bélize",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5594-73d9-9691-274a607fb149",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Bérénice",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-78a8-709d-8d76-4e070c3fd2e0",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "C",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78d8-7367-b8f4-093cb6d54c2c",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "C Coin Necklace",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6e76-705d-94cf-13cb89fb28c1",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "C-1 MOD",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e85-7312-b4bd-6100ce2539e8",
            "brand_id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
            "wording": "C-Buster",
            "brand": {
                "id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
                "wording": "HUGO BOSS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-62ae-7323-bf99-f257f9942679",
            "brand_id": "019f426a-62a7-7375-89b7-55bd27fe9447",
            "wording": "C010.BLACK",
            "brand": {
                "id": "019f426a-62a7-7375-89b7-55bd27fe9447",
                "wording": "Jaz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62b0-7060-b2b3-06e2a7cc56fb",
            "brand_id": "019f426a-62a7-7375-89b7-55bd27fe9447",
            "wording": "C010.SILVER",
            "brand": {
                "id": "019f426a-62a7-7375-89b7-55bd27fe9447",
                "wording": "Jaz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-67f8-7160-9904-29ec15d662bb",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "C201",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-89c3-70df-a1e9-ccc28b47aad2",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "C21B25",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89c0-73a8-b909-8e20e97bf870",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "C21S21",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89c1-7198-aa21-2bc5d721475e",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "C26T05",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6827-70f5-a35f-c49aa5ac4bc2",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "C301",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9324-70ea-b70f-96dc92abf270",
            "brand_id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
            "wording": "C5 Bib Shorts",
            "brand": {
                "id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
                "wording": "Gore Wear",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9321-72fd-a123-0c99eb4d5e96",
            "brand_id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
            "wording": "C5 GORE-TEX Shakedry 1985 Viz",
            "brand": {
                "id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
                "wording": "Gore Wear",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9322-7244-bae7-b1335e09fd4b",
            "brand_id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
            "wording": "C5 GORE-TEX Shakedry Thermique",
            "brand": {
                "id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
                "wording": "Gore Wear",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8497-702e-9875-fc201898f0a7",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "C9GMXA",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87ab-72a7-afb9-bf107fa50ab6",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "CA-3V-265X",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d0d-70f2-a063-b500d505e5e1",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "CAM",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5cbc-732a-b6e3-6734f6189167",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CAMERON",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4da3-72b8-81d3-544793ff22df",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "CANDY",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-62f0-7205-ab61-f84f28af772b",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "CARBON",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-693f-72d2-854f-b6a3b7e9f44b",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "CARGO",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6e75-70c7-8a65-7c776f1e1673",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "CARGO",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5cb9-72d6-95cb-1005d999f7fa",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CARIMA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-591d-728d-bb00-d784dea800fa",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CARL",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5cb6-70cb-9869-2612d89ec78a",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CARMELA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6941-722e-ac7e-dedfd93a07e3",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "CASA 110 MM",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5d36-7228-86a5-4b6b74784e68",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "CASABLANCA",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8ca6-72c9-bd61-24de930793e2",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CB 426 000",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ca3-7142-b858-a45e3e1453e2",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CB675GBS1",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ca1-70d8-ad30-fc79ade9b75d",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CBB675E5",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-87db-7253-8ddb-d983f2563177",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "CBNPbs 3756",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87dd-715b-84bc-83aecf33fa9e",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "CBNPes 5758",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7cd7-722c-902b-936c1311b3dc",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "CC",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-80c3-73a6-a5d1-47015e2a0fa5",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "CC Crèmes et BB Crèmes",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8766-705b-8d78-15ae37343f2e",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CCTOS 542XH",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8770-7023-bd1c-0841a26d46c0",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CCV 5523 NX",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-876c-7394-8c9c-aeac6202148b",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CCV 5524 NX",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6162-7128-8aa8-9d336311a2ee",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "CD Besace",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-617a-7179-9721-bcda6963dbab",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "CD Jolie",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6180-70f2-b077-27e2fd9ff8a3",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "CD-Baroque",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8775-70e2-9eb1-460437c9da84",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CDIN 1L360PB-80",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8773-7243-88be-96ae931f149c",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CDP 2L1049W",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8777-70cf-9e00-35a54ed71faf",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CDPN 1L390PW-47",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8ca7-721c-9ce1-0d19122fca22",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CDS 390",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a74-7292-99d5-2ec032ea94f0",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "CE340A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8be0-7264-adba-244ffcb3d73c",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CE4480 Squissita",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8be4-707b-9af8-924b867f68b1",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CE4482 Squissita Touch",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8be2-7174-b7f7-cc02df4d005a",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CE4552 Squissita Intelligent",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a76-70d2-9866-c3a46283fab5",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "CE540A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a73-727b-909d-7d85694427c8",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "CE837A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d45-7291-9e45-ef2863c5ef37",
            "brand_id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
            "wording": "CEW6MW",
            "brand": {
                "id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
                "wording": "Listo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-853f-724a-becf-273dace39548",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CF2112C0 Boucleur Elite",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-853d-7024-beef-7112ace60881",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CF3710C0 Boucleur Automatique",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e6a-71e0-9c9c-5533bb845ab4",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "CF410",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8542-735d-987f-fe17a2fb105d",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CF7830C0 Boucleur Multistyler",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-854f-72cf-9304-d41c0eea5383",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CF9520C0 Brush Activ Nano Smart",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87a9-7135-97eb-9a5b746ec040",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "CFB-900AX",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d39-7006-9542-1b2de48951b7",
            "brand_id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
            "wording": "CFE10L",
            "brand": {
                "id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
                "wording": "Casselin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-87ac-73ff-8ddb-98677125fb91",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "CFI-4G-380L",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88d5-727b-8ff2-c9c18e560ca8",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "CFX Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-89ad-71eb-80af-de180e453ca7",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "CGG 56 AN",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89ab-7027-b09d-cb689696f013",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "CGG 60 AN",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-62aa-7206-9270-1dc5097ab90d",
            "brand_id": "019f426a-62a7-7375-89b7-55bd27fe9447",
            "wording": "CH010.BLACK",
            "brand": {
                "id": "019f426a-62a7-7375-89b7-55bd27fe9447",
                "wording": "Jaz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62af-735b-a4d5-e57b4a868de2",
            "brand_id": "019f426a-62a7-7375-89b7-55bd27fe9447",
            "wording": "CH011.BLACK",
            "brand": {
                "id": "019f426a-62a7-7375-89b7-55bd27fe9447",
                "wording": "Jaz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62ab-7037-99b0-804389852f21",
            "brand_id": "019f426a-62a7-7375-89b7-55bd27fe9447",
            "wording": "CH011.SILVER",
            "brand": {
                "id": "019f426a-62a7-7375-89b7-55bd27fe9447",
                "wording": "Jaz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7149-72a7-acb5-e7caea69710d",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "CHALET HERO",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6dd3-70aa-b7f5-16a4ee85df52",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "CHAMPAGNE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5cd7-72e1-8516-1d86ee137c66",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CHANTAL",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5cb4-715a-8c0c-ca957a844f38",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CHARLEEN",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-59d1-7040-bb07-effca339317f",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CHELSEA WOODY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d60-7316-9650-b07596c3ddd5",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "CHOPOVA LOWENA",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-59fc-7147-85dc-e83d0d7a1b95",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CHRIS",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5cd9-7191-9a27-591c5d98681b",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CHRISTY",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-62b9-710e-bf2f-80f998f2abf7",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "CHRONO",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-595e-73bc-bf2e-307ed6f44604",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CHUCK",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59d2-7230-9946-c48cca5cf753",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CHUKKA JOHN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8d10-7254-8508-acfe246f2833",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "CI+",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6df9-721f-a2c0-cf72d06202f8",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "CITY PACK MINI",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6dfe-7376-80fa-ee9bda4306a3",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "CITY PACK S",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7692-71e3-871b-9a2094a464c3",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "CK One",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8ca9-717f-a5c8-fa9ecc1053cd",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CK645002",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-59f1-72bf-86fc-568ebc9ad435",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CLARENCE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6dd7-70d4-a171-216095923f7b",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "CLASSIQUE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5cdb-708b-810a-3d4febb15a23",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "CLAUDINE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8e98-7005-ab02-af47c044ec99",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "CLIMA2000",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5977-7042-a6c5-227a9e33a6e3",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CLIVE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6dcd-715a-93b1-ce08e9cae659",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "CLOCHARD",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8fd1-713a-b330-a78d9dabacb6",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "CLR 900",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e8c-7399-97d9-251e7d960e48",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "CM350",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8925-73b8-b5db-75bb33a63262",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "CM55BMF",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8764-721a-bf13-b084fba3f67f",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CMCL 5144W",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-84ae-700d-9f72-f5186e458604",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "CMS6451X",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87f9-71b4-a9c9-11661c5bfc43",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "CN 3915",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87f5-726d-863d-e7aa6ac5cbcf",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "CN 4315",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8606-7051-918b-7723871753d5",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "CN158230X",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87f7-720f-93f7-b193f9422989",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "CNEF 3515",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87da-732d-a456-af6a057066a4",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "CNPesf 4313",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8ca4-707d-b242-409944f1bcff",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CO501M10",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-492c-704a-a6dc-7b9a87c346da",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "COEUR",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5cdd-72e9-9a55-53ab1636ceff",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "COLETTE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8e99-7274-b103-b19d9fc8aacf",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "COMFORT400",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-76d0-73e5-9b1b-17b40b4af14f",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "COMPACT",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8ea0-73d7-bf6c-8b55eef659e0",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "COOLAIR300",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4934-739c-addd-89ac28846ae9",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "CORDONS",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-59f9-72d6-b507-92cf9ebf7868",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CORNELL",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5965-7343-999b-430ad59c3a10",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CORY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-76d2-737f-aab6-d54d9b41e90a",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "COZY",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-874e-712a-9cfa-12109034750d",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "CP 98 SEA SP X/HA",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e81-737d-8d6f-6120a2828a47",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "CP450",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8bec-722a-a4f3-6929a87f8676",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CPB6100 Optima Power",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bef-72e1-bd63-ba9813861a10",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CPB6101 Optima Perfect",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d38-71cc-abce-48f8f7201777",
            "brand_id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
            "wording": "CPC100",
            "brand": {
                "id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
                "wording": "Casselin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-849a-7273-8b7e-620acea122db",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "CPF9IPBL",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-89ae-7257-9f85-2588a44c9322",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "CPG 60 AN",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d3b-7290-8111-69acd4445e2c",
            "brand_id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
            "wording": "CPGV",
            "brand": {
                "id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
                "wording": "Casselin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6e0e-71c1-843e-09df35293319",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "CREATIVITY S",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-58a9-73fe-a452-82dbf708d3c0",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "CROSS",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9396-71e7-92aa-ec201ed1be0b",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "CS-130",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a96-72c4-8e55-83046e9d50a1",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "CS4",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a93-721b-9cbe-d7363b70ec38",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "CS5",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a94-716c-8d82-e5d97c476a14",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "CS6",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-62ee-72f9-9592-5e2d0c466942",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "CST",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8fb7-7294-a337-343f02c69465",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "CSX",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-881f-70ba-b17d-85f1fe451f9d",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "CTEC51BK",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-881c-700c-a975-cf1e5f47009c",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "CTEC51IX",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8821-7178-98f6-17605ea6f991",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "CTEC51WH",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-869d-72af-b381-6ba37ad2dd5c",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "CV-2P10SC",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8730-736a-8f5e-f33dfa2ec6fb",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "CV-940Y",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-869b-70d8-b01d-3aa1c4ca4133",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "CV-P10NC",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8731-715b-ade4-cbf7d81fb8e5",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "CV-SU23V",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8733-712a-a40f-9dc08fef7f0b",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "CV-W1600",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-854b-7342-9dc9-f05239f513c1",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CV5090C0 Infini Pro Elite",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8535-7218-ab4b-a1e157ab08b5",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CV5090C0 Powerline+ Pro",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-844d-72e3-88b8-e3aac1fe8a93",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "CV7812 Silence Respectissim",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-854a-7058-a87e-12976377f7c9",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CV7812C0 Silence AC",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-844f-7206-9620-60de7f558410",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "CV7920 Silence Respectissim",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8532-70a6-9cf7-a83c1597972e",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CV7920C0 Silence Respectissim",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-844c-72f9-bfb7-f212b64fc060",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "CV8528 Respectissim 2300W",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-853a-721a-aa0b-e786d22df5a5",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "CV8732C0 Premium Care Pro AC",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-876e-73fb-9421-cc0933723343",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "CVG 64 SPN",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8bf1-719c-aaca-71428306bb35",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CVG9500 Perfect Steam",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bd9-7376-b590-eebd1aaa1952",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CVG9600 PerfectCook",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bdd-72c9-9425-6d13c002bcfe",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "CVG9612 PerfectCook",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cad-7139-9867-605d016ea519",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CWF14M34",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cb2-7333-a723-1ac9559ce133",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CWK4A102",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cae-73c2-9fc4-947cf2c3d72d",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CWK4G102",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cb0-720d-acff-ea152f998243",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CWK4W102",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cac-7256-a673-3a0ad626dbc6",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CWK6L34",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8caa-7255-99af-1a4af7e75db7",
            "brand_id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
            "wording": "CWK6P34",
            "brand": {
                "id": "019f426a-8c9f-70c5-9c37-bf618efde5a0",
                "wording": "Constructa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e7e-7249-b2c7-c283b5e904eb",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "CWU",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6965-7066-9adf-201b327ef6c9",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Cabas",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67ad-70ca-bf4c-07f4c92a965a",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Cabas",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-68a7-72d4-a3d6-ded9952caa13",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Cabas",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4a21-700d-a90c-f96a9b53773e",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Cabas",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-745b-72cb-9b12-79b27106fdee",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Cabas Avenue",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b2b-7030-a8ac-046ff476fe85",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Cabas Avenue M",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4a03-7284-9425-286d9b48bded",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Cabas Pursangle",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-69d3-7399-88bd-d0d006a40f0e",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Cabat",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7b87-71b4-9de9-fc785196871d",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Cable Knit Sweater",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ee0-73b7-8815-f2dde9132d4e",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Cabotin",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-903c-7355-bf5e-7377edd9be13",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Cacahuète",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6270-723a-a571-f93dc0f89350",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Cacao",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7d8b-7349-90d8-1d5fd26b1854",
            "brand_id": "019f426a-7d81-701b-9410-4b6b46fa8540",
            "wording": "Cachemire",
            "brand": {
                "id": "019f426a-7d81-701b-9410-4b6b46fa8540",
                "wording": "Gerard Darel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-717b-7157-b35f-2be2ada26060",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Cactus",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-62b3-7101-8b99-f02047b0b8a4",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "Cadran ouvert",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4b09-7019-a4f3-5ee13d33ede3",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Cadre Photo Oh de Christofle",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6a7f-7277-a622-7d284ea977f6",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Cady",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8b99-7286-bb05-17998a02e16a",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Cafetière",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8321-72bb-9b36-0d33c91f2227",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Cafetières",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82fa-73c9-8f89-75d8cc7b0034",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Cafetières",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8bd6-70f0-8fbb-f0e8b1bd42e0",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Cafetières programmables",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4955-718e-862a-b56e74d9a03e",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Caftan",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6886-721c-936d-04fd86156e80",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Café",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6b97-7363-9d32-2b8d998d85ba",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Cage",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7e79-715d-a46e-c2f0bc00b1b5",
            "brand_id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
            "wording": "Cagefighter",
            "brand": {
                "id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
                "wording": "House of Holland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6475-72db-8741-e6e63643f558",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Cagoule",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7455-723f-b016-a021f640ea70",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Calais",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-706a-72d0-9c7d-7326f4e63b3a",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Calandre",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6656-726f-82f6-0d7c6d173a7c",
            "brand_id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Calatrava",
            "brand": {
                "id": "019f426a-664a-7284-9d69-a75dee56956e",
                "wording": "Patek Philippe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-637d-73d2-888e-fc19cd5e8f2c",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Caldwell",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-66a3-70af-8a2d-47a16d306b16",
            "brand_id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Calendrier Perpétuel",
            "brand": {
                "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
                "wording": "Citizen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6c39-7333-b93a-74e63ab1b0a7",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Calfskin",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-917d-71f9-a3cc-87915ef49f7c",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Cali",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4840-7110-93cc-d346f825e8fb",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Calibre de Cartier",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-761d-73ab-a079-1c1dac733cad",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Calillo",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6d18-7322-b741-3f97c25de895",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Calino",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7430-7281-9059-af3ad8cc0616",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Calioppe",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7623-7190-8495-1da3f844153f",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Callister",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75f8-72f6-909f-372dc46078ef",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Callwood",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c5c-7132-b2b2-23748773fc1b",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Calypso",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-54fd-71fe-8da1-3ee69871ce9e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Calypso Agate",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6376-7369-bfeb-ef2027f21a8d",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Camacho",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7609-71d4-ac4a-a1a496a2635f",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Camalia",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7617-7225-ac8a-62331d1c2319",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Camardello",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d86-7365-be02-0f9c90515238",
            "brand_id": "019f426a-7d81-701b-9410-4b6b46fa8540",
            "wording": "Camel",
            "brand": {
                "id": "019f426a-7d81-701b-9410-4b6b46fa8540",
                "wording": "Gerard Darel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8194-708a-a27c-f5ea47335f0d",
            "brand_id": "019f426a-8192-70da-b75c-eaa48af00b37",
            "wording": "Camellia & Rose Gentle Hydrating Cleanser",
            "brand": {
                "id": "019f426a-8192-70da-b75c-eaa48af00b37",
                "wording": "Pai Skincare",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6165-71e4-be7d-ff6ec8cf0133",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Camera",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7e09-70fa-b1ec-0ddbebcff510",
            "brand_id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
            "wording": "Cameron",
            "brand": {
                "id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
                "wording": "Gregory Sylvia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-66b5-73e1-9f44-1812df1acc21",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Camilla",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-54b9-7285-8003-ac7cc79159f3",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Camille",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8cfb-70db-ae19-10d32906e552",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Camions légers et lourds",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7b25-71ea-b8e8-7ba282322bf8",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Camisole",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6a50-7174-85bb-76e48acbc8df",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Camouflage",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bec-7303-ac2d-6bfacc45a913",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Campgnatico",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7bf0-72ba-af35-6206ac6e6593",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Camping Shelter",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8a21-72ad-b995-922b3b90ea15",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Campo",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9511-7194-a148-1edb7cfa9dfe",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Campo 3P",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8a26-7229-bb4e-3e81e595cf73",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Campo II",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7d37-7014-b13a-4f600b9e1b86",
            "brand_id": "019f426a-7d33-7136-87db-90f8d2b47523",
            "wording": "Campus",
            "brand": {
                "id": "019f426a-7d33-7136-87db-90f8d2b47523",
                "wording": "Frye",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5ee0-710a-8b14-842b139d20a1",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Camélia",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7171-7250-8208-c9f3178a3a52",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "Caméra Joan",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-69ef-735f-8180-02f395b692bd",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Canalazzo",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5fc3-727b-80e5-ec5b494935d9",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Candide",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-798a-70cf-b113-fd04b6a46ac0",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Candles",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4ddb-71de-a4c9-6a6e3b850e16",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Candy",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8599-729a-af8a-592331083a16",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Canister Vacuum",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85b8-72aa-aa03-c0d414f0c293",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Canister Vacuum",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-63e2-7071-bd9e-05d5de15469a",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Canoe Olympique",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-50f5-73d5-983b-716670441c6e",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Cantra Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-66eb-70b3-ae42-4d87a2fe2499",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Canvas",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7bda-7221-8487-68748f7906cc",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Canvas Slip-ons",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-743c-71e6-85b9-7aa6663ab4a7",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Canya",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4d6d-7396-8594-dd4e0b2ae1f7",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Cap",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d79-7054-a180-71ca0720d5f7",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Cap  Camarat",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-76ae-7362-ab97-8a20c4676480",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Capas",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-942a-7151-9b32-13f936530a73",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Capilene Air Hoody",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9429-7286-87fd-39c7dcc2202c",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Capilene Midweight Crew",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8203-7146-90a5-64b544e034b4",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Capillaire",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81d2-729a-bc22-5235dadc434a",
            "brand_id": "019f426a-81cb-71b1-8022-f2c4314b1048",
            "wording": "Capillaires",
            "brand": {
                "id": "019f426a-81cb-71b1-8022-f2c4314b1048",
                "wording": "Christophe Robin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-803a-712b-bcfb-f2f76839a2bf",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Capital Soleil",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7896-715e-b4a2-41a854d5de98",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Capri",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7555-7110-9995-08807a5b7a80",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Capri Tote",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-73e4-7101-931c-af96861e62f8",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Capriccioli",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5ff8-71c0-9c09-0167cf7d75e4",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Caprice",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5100-726f-bbfe-617b8f1cd892",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Capsule Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-513a-70c0-b2f6-5e84189faa1f",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Capsule Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-73c9-7000-8898-d49d563b800c",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Captivantes",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c31-7227-a2f2-0715f72f0a47",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Capuche Lombardy",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7142-722a-84d0-7400111218df",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Capuche Opside",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4b67-7228-ac2b-fafa72dda22e",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Capucines",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-75fc-70aa-8c9c-ce28c576a116",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Caracon",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-65ec-70e7-a7e6-982cdc458651",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Caramel",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-552d-7104-a9a6-a4c4b8e54cda",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Caramel de RIO",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-788e-739a-b0f9-a206c706aa4d",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Caravaggio",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c79-706f-a5de-f085b6c6ac59",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Caraïbes",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-93b8-71b2-8999-71c49a7d3875",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Carbon 14",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93b7-7225-940f-201588a00197",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Carbon 14 S",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8f84-7388-8f59-c98ca99fca69",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Carbon Flex",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f31-72f0-b7e0-511433651ac8",
            "brand_id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
            "wording": "Carbon Flex Jammer",
            "brand": {
                "id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
                "wording": "Arena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92d4-733f-9d93-50902d64c78c",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Carbon X 3",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ad4-737b-9e4e-7db06a16e901",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Card Holder",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7598-738c-8d89-232ac935e5ce",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Card Holder",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76eb-721a-b284-506ae1007645",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Card Holder",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a7f-715a-973a-d3cdeb3871c7",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Card Holder",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-75a9-7382-a67c-ed6e54a753d4",
            "brand_id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
            "wording": "Cardigan",
            "brand": {
                "id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
                "wording": "By Malene Birger",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5806-71d5-a779-1ef4ee656cae",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Cardigan Alessio",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6eb5-712b-bc47-553cf956d4e7",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Cardinale",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-88a4-71a7-b322-90d574171b1d",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Care Kit",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-683c-71ff-bf67-c63be1eadc5e",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Carey",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-69a7-72bd-9218-ebe32b30cdae",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Cargo",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7950-71db-8ce9-4194f8058b3f",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Cargo Pants",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d44-73d0-9053-7e3ced1ebf9b",
            "brand_id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
            "wording": "Cargo Rovic",
            "brand": {
                "id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
                "wording": "G-Star RAW",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d1e-7074-9c08-25ccf8657cc1",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Carino",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5515-72d9-9019-67c64706c5a8",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Carioca",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4db0-730c-9dce-d566257e584e",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Carissa",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-54ca-7179-bb63-35e50f8cb7d9",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Carla",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-66b2-723d-81b1-9931cd8640f7",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Carlie",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78cb-70a5-b0c2-331c54fb697e",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Carlina",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-92ab-7010-9d82-3072eeaaa2a8",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Carline 200",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5327-71ee-8bb2-a4d606be3e00",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Carlota",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-72b3-71fc-9158-f4a817b37ba3",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Carly",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b17-71b0-b49c-8c77cb44db12",
            "brand_id": "019f426a-6b11-7019-bbec-da98c9ee1478",
            "wording": "Carmela",
            "brand": {
                "id": "019f426a-6b11-7019-bbec-da98c9ee1478",
                "wording": "Chloe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5578-7257-8d3e-67b857963856",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Carmen",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7467-706b-94f4-606cdf0cda3d",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Carolina",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6fc1-7248-8317-57cf88e13cc1",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Carolina Herrera",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7d21-72a2-ad42-a0fd27ff3c8b",
            "brand_id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "Caroline",
            "brand": {
                "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
                "wording": "Frances Valentine",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c01-7050-b5da-1ffc827ce622",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Carolyn Bag",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6556-7134-aed5-797de7abaea5",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Carrera",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7602-71d7-a8a0-cfd3c61cc6c7",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Carresen",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6df0-71e0-9199-4f411494c6a0",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Carré",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5497-73a5-9310-40efaf7108e4",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Carré",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-496d-7375-88e1-5712b1b3078f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Carré Hermès (Foulard)",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6467-7213-b807-9f6b1c4ffbd9",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Carré d'or",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6d23-73a7-a309-5d2cfaec94fc",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Carrée",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f0e-72b5-9142-bebbaabfa1a3",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Carrées",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7113-721d-afa7-5638851477c2",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Carter",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9347-72a8-b4ea-48a43d0ccd04",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Carver Nubuck",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-56e3-730f-b29d-37bdb6d97e74",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Cascade",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-503b-72f9-817b-9c8ac54cec52",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Cascade Gila",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6bce-7191-aacd-ecbf362d8a6e",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Casentino S270/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7433-7166-b265-c762c19fa1f6",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Casey",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a56-71bd-9043-71e02ab1fa2e",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Cashmere Blend Scarf",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bca-7158-a202-061025f407fd",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Cashmere Pullover",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7580-7088-a3b2-a87242934a13",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Cashmere Scarf",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7577-708d-9b95-83e4608b9191",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Cashmere Sweater",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7589-735b-aa2f-c1495a76514b",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Cashmere Throw",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76bc-718d-a6b3-03b5c54369e2",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Casi",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-668e-72e5-b0bf-6fa082287aca",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Casio Timeless",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-93a3-72b4-8c28-2ea04c410358",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Casques",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93ac-717e-ac9f-f6d772dc2b59",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Casquettes de cricke",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7361-71bc-a54b-5974145db900",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Cassedona",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-89c8-70ad-8bfe-45f23fd91b48",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Casserole avec Couvercle 20cm",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-69da-704e-b53a-17ab21d7119d",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Cassette",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-743e-7086-a8ed-59511ce5f602",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Cassie",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-71b5-730d-820f-9275029ffb58",
            "brand_id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Cassie",
            "brand": {
                "id": "019f426a-71a5-728f-84dd-af5a49786b07",
                "wording": "Staud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c4f-721b-a698-fee171675be8",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Cassiopée",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d44-700a-b4cb-a5122eb32c16",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Castagna",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6be2-70e4-ba05-fbbe829688ad",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Castalia",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-75dc-7014-80d4-5e927b9e0e22",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Casual Cool",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9075-7075-a2f3-ec2f76455fad",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Casual Shorts",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-767f-706b-9e79-bcc33d72464c",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Cat Eye Sunglasses",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77ac-7338-ad78-00086d4057c7",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Cat Eye Sunglasses",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b09-71d6-8fd8-8aafb1647e2d",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Cat Eye Sunglasses",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-792d-704d-8436-30249ecffd7c",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Cat-Eye Sunglasses",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7958-7087-9e2f-c37323e4577e",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Cat-Eye Sunglasses",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e60-721c-888a-a8a39a247cbc",
            "brand_id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
            "wording": "Catherine",
            "brand": {
                "id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
                "wording": "Hobbs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5495-721e-963c-790b67d4894b",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Cauri",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-831e-70a6-9105-2dff1c4abbc8",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Caves à Vin",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6f26-72e6-aa87-4886db6455dd",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Caviar Rhin",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-762a-7068-8276-c1bdbe4154c1",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Cayci",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7631-72c2-a48a-5ac923420db1",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Caysie",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-61f2-7319-9e7f-80283b635805",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Cecilia Caprese",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-64c0-722d-9b26-672edf2946f4",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Ceinture",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4971-735a-86f5-024584381e8d",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Ceintures Collier de Chien",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-90ae-73ec-af5f-60779d993d7e",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Ceintures et Genouillères",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5308-7368-812d-0c1b27e182e3",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Celine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-81c6-72ce-b1be-7ba1ea76d898",
            "brand_id": "019f426a-81c3-72f0-82d5-da896ae60738",
            "wording": "CelluGel",
            "brand": {
                "id": "019f426a-81c3-72f0-82d5-da896ae60738",
                "wording": "CelluBlue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81c9-7280-9964-494467ed8037",
            "brand_id": "019f426a-81c3-72f0-82d5-da896ae60738",
            "wording": "CelluOil",
            "brand": {
                "id": "019f426a-81c3-72f0-82d5-da896ae60738",
                "wording": "CelluBlue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81ca-71c5-81e0-27932b7f3679",
            "brand_id": "019f426a-81c3-72f0-82d5-da896ae60738",
            "wording": "CelluSculpt",
            "brand": {
                "id": "019f426a-81c3-72f0-82d5-da896ae60738",
                "wording": "CelluBlue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81c7-70ab-8b8e-0fcc3e0e8bef",
            "brand_id": "019f426a-81c3-72f0-82d5-da896ae60738",
            "wording": "CelluStick",
            "brand": {
                "id": "019f426a-81c3-72f0-82d5-da896ae60738",
                "wording": "CelluBlue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-80ff-721c-a6a5-a63d0c794796",
            "brand_id": "019f426a-80fe-70ac-8078-326a880c7810",
            "wording": "Cellular Anti-Aging",
            "brand": {
                "id": "019f426a-80fe-70ac-8078-326a880c7810",
                "wording": "La Prairie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8300-72d7-885b-16c7ffca0644",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Centrifugeuses",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5fae-714c-96ef-2fc443be71de",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Ceramic",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8c63-71cf-b4b0-900335af930d",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Ceramic Ionic Round Brush",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5370-7309-ac83-c3e2c5995996",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Cesar",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7a44-701d-b1ba-7888f3ea7b78",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Cezanne Tote",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-69e8-7039-affb-6292ac50094f",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Cha-Cha",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5ba5-726c-be16-1264741914ee",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Chabada x Christine",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7844-71c0-bf89-edf252df79d4",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Chain",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78f8-7271-9af1-91ad7d69c21d",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Chain Belt",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-795b-705d-a429-9ea52f6cfc50",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Chain Belt",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77ab-73b2-9906-7d124b88d6e9",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Chain Belt",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e7c-7035-8643-79b54e1153b5",
            "brand_id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
            "wording": "Chain Mail",
            "brand": {
                "id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
                "wording": "House of Holland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7a88-73c1-ad53-6502303e5bcd",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Chain Pouch",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7287-70a8-9497-f9b5ac73f1ec",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Chain Reaction",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7921-721b-a1cc-d9c1dbca3080",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Chain Strap Clutch",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4f91-711b-b5f2-6683d2da75e5",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Chaine",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-54da-7317-b183-594775a0b594",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Chaine Paloma",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4988-72dd-9167-17aaba056208",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Chaine d'Ancre",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-92ce-7288-aa56-f7bdc54a70e1",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Challenger ATR 6",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8dfc-71f7-b3b3-c8380c2de106",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Chamane",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8195-706b-a8cc-f49fee7a5832",
            "brand_id": "019f426a-8192-70da-b75c-eaa48af00b37",
            "wording": "Chamomile & Rosehip Calming Day Cream",
            "brand": {
                "id": "019f426a-8192-70da-b75c-eaa48af00b37",
                "wording": "Pai Skincare",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9016-706a-ad26-8a02bfca10b4",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Chamonix",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-56de-736d-82cb-fddf3f4e4cc6",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Champ de Blé",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-744a-7174-b3d8-79189a44a84d",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Champagne",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7431-736a-adae-cf87f58b11eb",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Chana",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5064-71ac-a005-f71e1e35b4b8",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Chance",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5f19-71ad-8e43-aaf4cbd863f0",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chance",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f1e-70d4-bec8-d43eea44c556",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chance Eau Fraiche",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f1c-729d-a747-51c6b8f25fe3",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chance Eau Tendre",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f20-7360-bd34-3d03056ab6bf",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chance Eau Vive",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-48bc-711d-90b2-d1586dcf7579",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Chance of Love",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5f54-7287-b740-8a3130132ee2",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chanel Boy Bag",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f57-7019-a413-fc319cfdfdfc",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chanel Coco Mademoiselle",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f56-725b-89ab-70a8af3ba89d",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chanel J12 Watch",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f4d-707f-9cde-0587c1070c59",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Chanel N°5",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5b3f-73a3-9c8c-dd1ea72d50fc",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Chant",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-52e7-7185-9375-58f06c050d79",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Chantal",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-935f-7032-b392-f9d75932e14f",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Chaos",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91bb-7298-812c-e7202a46bcc2",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Charged Bandit",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5042-730b-b616-b4d286cd0f1f",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Charles",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-549e-7348-99e8-6f66a6e8a756",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Charlie",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-580a-714f-83cb-744f4d0bb100",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Charlie",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5b13-7080-b3cf-c65f01fcba5a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Charlie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-53fb-7028-a559-5bc88eae676b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Charline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dcb-72ec-9344-52296c8933d9",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Charlotte",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7e07-7200-b651-a0ec0f019ba8",
            "brand_id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
            "wording": "Charlotte",
            "brand": {
                "id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
                "wording": "Gregory Sylvia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7749-7231-96a4-6392707366ed",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Charlotte",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-53d8-709b-9e0c-2700ff11521a",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Charly",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4e2d-73fa-9dc0-55b2d7d00a7e",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Charme en Cristal",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6ae4-731a-aca5-241820fcca12",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Charms",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-487a-716a-90d0-b8bbc1bad912",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Charms",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-487d-73f2-a5d1-be8ef95e0835",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Charms Extraordinaire",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6829-71e9-9ca1-49b575dcce81",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Charter 7",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7723-7219-9b4b-01668cee32ff",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Chase",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7cb8-707a-a84b-a15ee44e550c",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Chase Hawk",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6f2c-7125-89cf-bc227d908684",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Chat Sauvage",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f3a-7191-86e9-cf3c7880f68a",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Chateau de Conte",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-48b6-70ab-a328-db64f53dd593",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Chaumet",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-90cc-7184-bdb6-e61dfa7fda3e",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Chaussettes de Sport",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9094-73b9-ab22-ce53a30b922d",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Chaussures Imperméables",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9096-7161-8f55-a5adfb4873db",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Chaussures Respirantes",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4cf1-718d-bd18-0cf8a73b6dc7",
            "brand_id": "019f426a-4cee-7161-803c-0ac72405dea2",
            "wording": "Chaussures à talons originaux",
            "brand": {
                "id": "019f426a-4cee-7161-803c-0ac72405dea2",
                "wording": "Gaspard Yurkievich",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8cf5-7058-9a12-c1cc0c6e80b3",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Chaînes hi-fi",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-68cd-7224-bd7b-cc086a283a28",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Check",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-81e0-72e0-b7d1-692031f38acf",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Check Matte",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7b67-7252-b0f3-0fc7ef786669",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Checked Shirt",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8454-715d-8d6e-61c63b8905f0",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Chef Titanium KVC7305S",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6c7e-7112-a70c-3c6fa90079fe",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Chelsea",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-683a-7211-9070-babdae68f8d4",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Chelsea",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7cef-72d6-a971-d2a6c40a2522",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Chelsea",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-70fb-710f-8f9e-e16e2cf0d860",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Chelsea Astra",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7b3a-72a3-8811-d4ad3ecd4b1c",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Chelsea Boots",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bd3-70c5-8e1d-250ea6895616",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Chelsea Boots",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b72-70c3-9aa8-0cf760ae10e7",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Chelsea Boots",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-61d0-73ae-b916-61c10345c97f",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Chelsea Ride",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7b4f-706f-971d-56a659cdcd66",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Chemise",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6b70-70fc-833f-dfcf211fbed6",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Chemise",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7195-70da-b51d-717161ad8f8d",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Chemise Colombe",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-623c-71b1-a40c-7d5e81835b04",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Chemise Joe",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7eae-7104-858b-0a5b7b7c1b8a",
            "brand_id": "019f426a-7eab-7093-8dc6-3dc871422580",
            "wording": "Chemise en jean",
            "brand": {
                "id": "019f426a-7eab-7093-8dc6-3dc871422580",
                "wording": "Ikks",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-730b-7222-9eea-76b3e40a15a2",
            "brand_id": "019f426a-7306-7061-8a56-57026329a932",
            "wording": "Chemise à col mao",
            "brand": {
                "id": "019f426a-7306-7061-8a56-57026329a932",
                "wording": "8 by YOOX",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7301-7107-a52c-e59ea7b9cdce",
            "brand_id": "019f426a-72fb-7219-909d-45d63631e250",
            "wording": "Chemise à manches longues",
            "brand": {
                "id": "019f426a-72fb-7219-909d-45d63631e250",
                "wording": "3.1 Phillip Lim",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6adb-718b-bc93-79520e6986e4",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Chemises",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a20-73d7-8dcc-944e4c8fa491",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Chemises",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f9e-70ff-9840-3a50b4ca69e6",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Chemises",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-700a-711b-a996-592309943e7c",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Chemisier à col",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ea9-71ab-a78d-402faff44534",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Chemisiers et tops",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5c59-723b-b324-120dae68d284",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Cherry",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-68e5-70d0-93c8-61aca071c56c",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Chess",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-915f-72d3-bb09-975e52c3e519",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Chest Zip",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5b85-7167-ace8-08178ce36cf1",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Chester",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-63db-73f0-a491-17d676e21938",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Chevalier Templiers",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4f55-72f4-96f7-fe5af2ea40d4",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Chevalière signet déchainée",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-822f-73f4-8e09-1d3d90395a0b",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Cheveux d'Ange",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8275-71d5-ba6b-fea56a1c508b",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "Cheveux d'Ébène",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82d4-70ce-841c-7fcec857bed3",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Cheveux de Provence",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5bf5-7322-9951-0f2030c9adce",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Cheville Allen",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-951a-73ed-ace3-86bb00536637",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Cheyenne 700",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-495b-7333-9f8e-c993c80d78bc",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Cheyne",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-784a-7118-bf38-6968db1bdb5a",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Chiara Suite",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75ba-71a4-8a55-476b9997ca9d",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Chic Essential",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6f3f-7276-9107-99bf1823e6d8",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Chien de Majesté",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6bf1-737d-ad79-917f61eef8b2",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Chiena",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7394-7247-a3c4-998ed4ae9f93",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Chika",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7eb1-7127-8610-9cb9639da5c0",
            "brand_id": "019f426a-7eab-7093-8dc6-3dc871422580",
            "wording": "Chino",
            "brand": {
                "id": "019f426a-7eab-7093-8dc6-3dc871422580",
                "wording": "Ikks",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7dfc-71ea-a505-042969adca6d",
            "brand_id": "019f426a-7df7-72e6-b700-f56e04794297",
            "wording": "Chino",
            "brand": {
                "id": "019f426a-7df7-72e6-b700-f56e04794297",
                "wording": "Green Coast",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-74e5-725b-bf93-c63422895701",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Chino Pants",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7150-7395-9de2-418c92d4e158",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Chino Technique",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-695e-7175-9f55-6a627b2931fe",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Chips",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d46-727c-a564-5b43f40ff84b",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Chiquito",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-68f8-718c-ae6e-43a8bb246d9b",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Chisel",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-495f-70de-9292-7c5d43b1d52d",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Chivor",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-774d-73a6-9ba6-f36682c3fe63",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Chloe",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-54bd-70e9-a1c4-f94375656ddf",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Chloé",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-78ca-73fa-abb8-cadae959e070",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Chloé Ballet Flats",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78d0-70b3-aaab-98acc8887e48",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Chloé Eau de Parfum",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78d4-71ac-969b-42ab0e995c5f",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Chloé Love Story",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78d2-700f-9962-27ea25bb2111",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Chloé Nomade",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-905a-720c-b9d1-6103d62d6c44",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Chocolat",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-627e-7107-ac35-e01f5370a5c6",
            "brand_id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Chocolats",
            "brand": {
                "id": "019f426a-6279-719f-9f35-d5110387906b",
                "wording": "Michel Roux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-94eb-7258-a2f3-b2a879b7b2c6",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Chocorua Trail Hiking Shoes",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-63d7-71dc-8392-6db981705dde",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Chopin",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8fae-7216-98fa-ecd0d7c159a1",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Chouka",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5fe5-7102-9a54-aecf86e5756e",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Chouquette",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5082-710b-85ad-de7fa7cca39d",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Chris 1947",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4e57-71e0-9f60-0d59b041ddd4",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Chromata",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5e06-7075-aa37-0a6840df38d6",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Chrome 13cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5dfe-719a-9c38-12127b47f72b",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Chrome 9cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7b10-71eb-8dd6-0a8dd4e6baf2",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Chronograph",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-63d2-732d-8929-e8c8491a8ce1",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Chronographe Sailing",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-658c-7053-bf4d-c163c29724c0",
            "brand_id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "Chronomaster",
            "brand": {
                "id": "019f426a-6589-721a-ac98-72c09b6dc291",
                "wording": "Zenith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6701-7059-9c78-c563912bc322",
            "brand_id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Chronomat",
            "brand": {
                "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
                "wording": "Breitling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6c93-72f2-84ab-85a42dd40781",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Chrystie",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7936-7379-9ac8-0f0072ea9b69",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Chunky Sneakers",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5f5a-723f-910c-7c5290e6ea33",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Churchill",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-49df-726c-b741-0dc94dcdb4ef",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Chypre",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-741a-7219-bf49-9cb04b232f43",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Ciago",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7413-7269-b626-ad515776c3c1",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Ciane",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-812b-721a-bb74-c30a878922d7",
            "brand_id": "019f426a-8125-7158-91db-f5e5d523d7b7",
            "wording": "Cica",
            "brand": {
                "id": "019f426a-8125-7158-91db-f5e5d523d7b7",
                "wording": "Topicrem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f60-726b-bc9d-69176a036c8b",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Cicabio Crème",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f47-71d7-a001-474de4931202",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Cicalfate",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f51-727d-bcb6-8b2ec98f6298",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Cicalfate+",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6a8c-7349-9f2c-256a45afd6ae",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Cigarette",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8faa-712c-9c6c-66b2c9e1693f",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Cinetic",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-86ce-70a3-973d-25e519c85dde",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Cinetic Big Ball Absolute 2",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86f3-70d7-92b4-0ebb707e0338",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Cinetic Big Ball Animal",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f9d-7112-b0dc-725a971499cf",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Cinetik",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7dbd-72bd-ac6c-fc75ace131df",
            "brand_id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Cintré",
            "brand": {
                "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
                "wording": "Giorgio Armani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-887c-73a5-9418-921f004b9d2b",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Circle",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-82b1-728e-8fb9-9c34a7ddfdf0",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Circulation et Jambes Légères",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81f6-7350-8a52-6ae68e6c4cf0",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Cire Orientale",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7611-703b-a99a-2b5f2fe6ff11",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Cirella",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-940d-71d5-b2e4-bd9fe4658b09",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Cirque Pants",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9012-720d-8fdc-5989c9d87314",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Cirse",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7436-71e7-a670-83a2b0e98915",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Ciry",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6c9c-7180-85d2-a3251f865155",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Cisalpin",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4d8a-70a2-89dd-02fc22496957",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "City",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-75b6-7359-9d55-70f1650466ef",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "City Slicker",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-69ba-7037-88e3-0ec727a19271",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "City Sport",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5fbe-7320-8a91-e552a97cd844",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Cityline",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5818-70b8-8d66-221a7ede223c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Claggan",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5444-7018-88ae-5b08d4bcfe38",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Claire",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52d0-7105-84fe-43ca835d2913",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Claire",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-656c-7018-b546-3188398b5c67",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Claire de ROSE",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5393-710c-afc1-3e93ef2c7ddb",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Clara",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5c36-714e-a55e-b72829a743f8",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Claremont",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5bf9-7293-955a-ae9f90bbbbaa",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Clarendon",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e4d-702d-991a-262d31206c3e",
            "brand_id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
            "wording": "Classic",
            "brand": {
                "id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
                "wording": "Herschel Supply Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7ca7-73fe-afcb-1e67fccdb7af",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Classic",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-62c1-708e-893a-949578581b80",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "Classic",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7d2c-72e3-9a39-c9a54672b5cf",
            "brand_id": "019f426a-7d29-71a5-920d-8c161765a592",
            "wording": "Classic",
            "brand": {
                "id": "019f426a-7d29-71a5-920d-8c161765a592",
                "wording": "French Connection",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-670e-715c-b916-62bf86822b64",
            "brand_id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "Classic",
            "brand": {
                "id": "019f426a-6709-73b7-833d-0e3813509c15",
                "wording": "Hublot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7eba-7243-98b7-676fbe1884d0",
            "brand_id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
            "wording": "Classic",
            "brand": {
                "id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
                "wording": "Il Bisonte",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-75ce-73ad-b77d-bdc5af96695f",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Classic Chic",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75bc-73e6-9777-8b1a93c1499e",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Classic Elegance",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7cc5-728f-816a-0a5ddc2f6f10",
            "brand_id": "019f426a-7cc1-70b1-a38d-317738454f29",
            "wording": "Classic Fit",
            "brand": {
                "id": "019f426a-7cc1-70b1-a38d-317738454f29",
                "wording": "Eton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7669-730e-972c-8d94405ab9a6",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Classic Fit Suit",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6715-7175-92f7-98718f148e7e",
            "brand_id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "Classic Fusion",
            "brand": {
                "id": "019f426a-6709-73b7-833d-0e3813509c15",
                "wording": "Hublot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-77ed-7133-9a11-ae39447c6a3f",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Classic Jersey",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91ed-73c0-9ac1-4a2a79ea10cc",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Classic Leather",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-77a7-704c-8826-0dcad5b88e75",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Classic Leather Belt",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7255-7074-bef0-7653e88ef438",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Classic Short",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7258-7133-86d0-167ff0579faa",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Classic Tall",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a20-7133-a005-47203430517b",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Classic Tote",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7813-7371-a0e4-7f819290844c",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Classic Twill",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91fd-7069-93ad-1b6ab8a3f804",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Classics",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6ce3-7009-a3b4-0117c161c4f7",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-540c-73cf-a483-936bb85f0eed",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7d8e-715f-a608-52e103aa0bb6",
            "brand_id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
                "wording": "Gerry Weber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d97-71c9-bac1-92894cd8dec2",
            "brand_id": "019f426a-7d96-72f2-910b-87836a11bb0d",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-7d96-72f2-910b-87836a11bb0d",
                "wording": "Ghibli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6459-72e7-83ce-361e47d871e1",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4d8b-7293-b487-fb9a7a940141",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-71f9-73b4-9821-1a457b94504c",
            "brand_id": "019f426a-71f6-7180-8307-8076065c7342",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-71f6-7180-8307-8076065c7342",
                "wording": "The Cambridge Satchel Company",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-640f-728e-b7b5-60c79d7de8a0",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4e6f-7063-a074-f2c54d8d7aa0",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Classique",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6e41-7188-8f1f-69bf33be2b9b",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Classique XL",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-632b-721e-9c09-b760f306792b",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Classiques",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7d74-7258-be47-51ca78ae9bef",
            "brand_id": "019f426a-7d70-7140-8e84-7122a6b6e1d3",
            "wording": "Classiques",
            "brand": {
                "id": "019f426a-7d70-7140-8e84-7122a6b6e1d3",
                "wording": "Genny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6dbb-7007-8adc-4bdcfff9f229",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Claude",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7f25-72aa-89b4-5faaa3114743",
            "brand_id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
            "wording": "Claude",
            "brand": {
                "id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
                "wording": "K-Way",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-73af-739f-9cd1-11438658ef6d",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Claudia",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-709c-7178-8f76-abeb39317918",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Claudie",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-763a-703d-a6c4-8c58836d6273",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Clavey",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7f44-71fd-9309-315973155358",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Cleanance",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5281-7276-a7f3-02acc8c78d28",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Clemence",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-78c1-71ea-984a-65674d24ca6f",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Cleo",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5b1f-72fe-8394-69285a420eff",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Clifton",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-92c6-73f6-917d-39cd18a15d42",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Clifton 8",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d6a-7049-83dc-930e114a5989",
            "brand_id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
            "wording": "Cliky",
            "brand": {
                "id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
                "wording": "Gedebe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8836-72de-8f86-b780c954ac23",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Climatiseur mobile",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8837-7071-933b-d3f377053d42",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Climatiseur mural",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8839-728d-97fc-c7c2f354d059",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Climatiseur split",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7641-73e7-84ac-de8e5c8ba8ef",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Clissoria",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6901-71ee-b3ee-45e062a3a166",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Clou",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5742-7183-b2b4-2b2c5eb04bbd",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Clous",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6a6c-73b6-ace8-d1f90ab9983f",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Clous de Roche",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6e9e-709c-82a4-edcf6314d091",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Club",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-924c-7029-8852-68b298f96658",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Club",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6072-70f0-9fe3-3c74745232ab",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster CHIC",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-605f-71b1-a9f7-037ef48cb1a4",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Classic",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6084-7102-8e89-e9b5bc4c289b",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Diver",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-606e-7042-b132-c85265126cb9",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Elegant",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6079-7196-816f-73ab1442082b",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Iconic",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6077-7120-ba61-49ef3222a8a7",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster LADY",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6069-70fb-a5bf-1c58615cf2ca",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Outdoor",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6065-721a-8ea0-d17f4e157fa8",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Sport",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-607e-73a5-bdba-9e879d0c9123",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Clubmaster Traveler",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7648-72fa-aa6b-000455986fd8",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Clurin",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76df-7362-9e8b-9415998c1a50",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Clutch",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b3f-70c9-b74b-60321cd70468",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Clutch",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7594-71a6-bc17-adc815dda238",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Clutch",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a78-7039-8836-0918119143d0",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Clutch",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-91c7-7162-908d-ecdd889ebf43",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "ClutchFit Force",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5bdd-73ca-9324-1294564d6354",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Clymer",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4e84-7202-90ec-e8b14e3ae4b7",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Clé Diamant",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6daa-7333-bb66-41a28b80ef23",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Cléorée",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8dc7-7138-a6a7-c51cf30b4c46",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Clés à molette",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-77fb-72e8-bbd9-b4a5c57682fb",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Coach Jacket",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-680c-72af-916b-5167a2c7f256",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Coachtopia Loop",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-752c-716c-8f37-412cbfa572d9",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Coat",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4e55-702b-b3d9-d6a97f32f851",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Cobalt",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-69d8-726d-a79a-c1687d2e699d",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Cobble",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8f2c-7247-93f9-b682a2d9e8f4",
            "brand_id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
            "wording": "Cobra Ultra",
            "brand": {
                "id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
                "wording": "Arena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5ef6-72a1-b83d-c53e009fbd3f",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Coco",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f13-73ce-874a-251ad9d15490",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Coco Mademoielle",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f21-7196-8dcd-901a189aa078",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Coco Noir",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ed0-7125-81c4-9f301856d7fe",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Coco crush",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7cae-72c3-a510-3d82d3340b67",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Cocoon",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6920-7307-a2e0-09dd73a96e50",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Cocoon",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-82eb-726e-94a1-768a896d4200",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Cocotte-Minute",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-743b-7256-a269-4ce10f345f1b",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Coda",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6667-73a7-b728-0fed73237e2b",
            "brand_id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Code 11.59",
            "brand": {
                "id": "019f426a-6658-730b-8c56-248220cc560f",
                "wording": "Audemars Piguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5f06-71b7-be39-5241d60f1d41",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Code Coco",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4f86-7135-943d-3b927d4d9ec0",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Coeur",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-54a5-7213-9deb-904d391faf08",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Coeur",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4d56-73a5-b38b-e4579b11fc8c",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Coeur",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6456-7324-b2a0-fdc83817fab1",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "Coeur",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-488b-71b9-a955-4504fbfa6f92",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Coeur",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4bae-72ef-9d9c-53ad34bfbb1b",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Coeur Battant",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5bb2-73b1-8cd5-580d2fbd932a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Coeur Brisé",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4e8a-70e3-8752-fbc11c25055b",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Coeur Chanceux",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6f45-73b4-98d4-4fac7d18b343",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Coeur de Rubis",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7ffa-7203-83b3-2ca359b641f5",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Coffrets cadeaux",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7a1d-716d-8f93-993a919e7bee",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Cognac 'Tabby'",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-92fc-72ed-82d2-cd3aa9331f45",
            "brand_id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
            "wording": "Cognitive R",
            "brand": {
                "id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
                "wording": "Oakley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7a80-739e-a53f-1493d427969f",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Coin Purse",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5e6b-7059-a780-f8c797f81f1e",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Col",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-93f7-7331-8559-963df47b376d",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Col Becchei Pants",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7c1b-73d3-a3ac-9e6802f58634",
            "brand_id": "019f426a-7c18-7265-b209-86636ee9beaf",
            "wording": "Col en V",
            "brand": {
                "id": "019f426a-7c18-7265-b209-86636ee9beaf",
                "wording": "Elisabetta Franchi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-686d-72af-8fc9-73a8ae5d779c",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Col noeud",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9057-70b0-9860-9a3403da764e",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Cola",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-801f-7054-af19-06bd3129996a",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Cold Cream Marine",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-91d3-73a4-85ab-b37f610f5eae",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "ColdGear",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66db-72b5-9b89-1cb41966798e",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Coldy",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9026-7255-848b-52be1e69271c",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Cole",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-53a6-710f-b76d-8e259a2a2884",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Colette",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4c8a-7130-8a17-5ce11d046e70",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Collaborations Spéciales",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cfb-7237-b677-5cab9774e890",
            "brand_id": "019f426a-4cee-7161-803c-0ac72405dea2",
            "wording": "Collaborations créatives",
            "brand": {
                "id": "019f426a-4cee-7161-803c-0ac72405dea2",
                "wording": "Gaspard Yurkievich",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-811a-711e-be42-bc5e1f9967dd",
            "brand_id": "019f426a-8113-7385-9a93-7939bb111740",
            "wording": "Collagène",
            "brand": {
                "id": "019f426a-8113-7385-9a93-7939bb111740",
                "wording": "Resultime",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4d43-70e9-8e79-0c48fb05c915",
            "brand_id": "019f426a-4d35-7179-8891-12edb0723d80",
            "wording": "Collection AK",
            "brand": {
                "id": "019f426a-4d35-7179-8891-12edb0723d80",
                "wording": "Akillis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c1a-725b-82fd-a514d2936525",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection Antifer",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a86-7325-80d8-1479b3979856",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Collection Automnale",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4b42-71eb-8cfc-70aebfe784c3",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Collection B Blossom",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c1e-72d5-9907-78c79bf8b46d",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection Berbère",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d32-7043-8077-11679913b85d",
            "brand_id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Collection Bohème",
            "brand": {
                "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
                "wording": "Djula",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cd4-7306-9776-0572caabbe29",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Collection Capri",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d3e-71ba-9b6c-1535fd3f8e79",
            "brand_id": "019f426a-4d35-7179-8891-12edb0723d80",
            "wording": "Collection Capture In Motion",
            "brand": {
                "id": "019f426a-4d35-7179-8891-12edb0723d80",
                "wording": "Akillis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d2f-73e1-898c-c745aed0c99b",
            "brand_id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Collection Clou",
            "brand": {
                "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
                "wording": "Djula",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b4e-7034-84fa-1edcb8a608e8",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Collection Color Blossom",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d40-721b-b3ea-0ef80c75d25d",
            "brand_id": "019f426a-4d35-7179-8891-12edb0723d80",
            "wording": "Collection Electric",
            "brand": {
                "id": "019f426a-4d35-7179-8891-12edb0723d80",
                "wording": "Akillis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b4a-7339-8763-e3ab2a7d5055",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Collection Emprise",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b46-7224-bf0e-4ba5d69c34d3",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Collection Idylle Blossom",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c2a-7174-8566-5f8be1951203",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection Lateral",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b0d-7133-bb65-bcc9a71c15d6",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Collection Les Classiques",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b54-73f1-8a89-7fb8beb2adcb",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Collection Lockit",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b59-7041-96c8-dbdeda5716d3",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Collection Monogram",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d24-726d-9ba5-3a6ffc896503",
            "brand_id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Collection Nudo",
            "brand": {
                "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
                "wording": "Djula",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d29-73c6-b44f-ebab0d3d47ef",
            "brand_id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Collection Nœud",
            "brand": {
                "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
                "wording": "Djula",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c28-7130-840f-341d504078d2",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection Ophydienne",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d3b-7308-a954-983b4964ea6a",
            "brand_id": "019f426a-4d35-7179-8891-12edb0723d80",
            "wording": "Collection Puzzle",
            "brand": {
                "id": "019f426a-4d35-7179-8891-12edb0723d80",
                "wording": "Akillis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d38-7226-8dfb-818455a587bc",
            "brand_id": "019f426a-4d35-7179-8891-12edb0723d80",
            "wording": "Collection Python",
            "brand": {
                "id": "019f426a-4d35-7179-8891-12edb0723d80",
                "wording": "Akillis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c2c-7119-8d11-93a0a16af984",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection Repossi for Zadig & Voltaire",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d26-73c0-91ab-f55ec825a28c",
            "brand_id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Collection Rock",
            "brand": {
                "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
                "wording": "Djula",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cc7-7136-98d2-1e64d8350c80",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Collection Sabbia",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c16-7361-82b8-7fcbf3acf4e6",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection Serti Sur Vide",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cbf-72ed-8a17-9b607f7a90d2",
            "brand_id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
            "wording": "Collection Tango",
            "brand": {
                "id": "019f426a-4cb9-711a-9c88-2ff7812fec54",
                "wording": "Pomellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c23-7234-9bb4-011f81578f71",
            "brand_id": "019f426a-4c14-71ab-8130-ee482283bb1b",
            "wording": "Collection White Noise",
            "brand": {
                "id": "019f426a-4c14-71ab-8130-ee482283bb1b",
                "wording": "Repossi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7325-7253-8200-54a31514aa2a",
            "brand_id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Collection de maquillage",
            "brand": {
                "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
                "wording": "Aerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4d2c-72a0-b2de-e21fd446f0ca",
            "brand_id": "019f426a-4d23-7168-b2df-c59c547f1a65",
            "wording": "Collection Étoile",
            "brand": {
                "id": "019f426a-4d23-7168-b2df-c59c547f1a65",
                "wording": "Djula",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7714-73f0-af13-677f1a23c27d",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "College Sweat",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4ad9-727a-823b-35a4a8a12b17",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Collier Médicis",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b24-73ec-8b6c-6d326b032c4a",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Collier Pendentif",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c7c-70ae-af44-0460bab93e7a",
            "brand_id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
            "wording": "Colliers",
            "brand": {
                "id": "019f426a-4c73-73ea-9cb4-2c58d4ab2ca8",
                "wording": "Yvonne Léon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a4d-727a-8f12-2f8e015b4bc9",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Colliers Coquillage",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4a7b-72d2-bdb5-f79dde0ff607",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Colliers Plastron",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4c49-707e-aab1-92c448cc3d57",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Colliers diamant",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c3d-71bc-8505-309d3f56b3d4",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Colliers en argent",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c35-73fb-9505-caa0535adeef",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Colliers en or",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6bda-7025-b18a-2dc30806c039",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Collodi",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-81d0-72ff-84f9-4d291f9b7e92",
            "brand_id": "019f426a-81cb-71b1-8022-f2c4314b1048",
            "wording": "Colorations Naturelles",
            "brand": {
                "id": "019f426a-81cb-71b1-8022-f2c4314b1048",
                "wording": "Christophe Robin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7807-7113-9476-9d002fcd494d",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Colorblock",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78df-724f-9d9e-c5a9de0a7969",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Colorblock Shift",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5b2b-7255-9ca2-d7613e75458d",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Columbia",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-799d-7119-8419-b922b573b5c3",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Anytime Outdoor",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7994-7351-b527-48caa1d22d25",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Ascender",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a8-721a-a29f-befde46545be",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Bugaboot Plus IV Omni-Heat",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79b2-7160-a0fc-a2109a3623a8",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Cabled Cutie Beanie",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a7-7018-b4ec-03767d58d605",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Caldorado III",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f96-73df-b972-2961fbdb7f36",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Columbia Canuk Titanium",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-79aa-7065-bf19-da7e66dcc9bb",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Fairbanks Omni-Heat",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79bc-71e7-90db-c96d54adbfe8",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Fall River Instant 10-Person Cabin Tent",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7995-714d-b3f7-a0a160fd68b4",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Glennaker Lake",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-799a-7163-ae30-cb2225be6d1f",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Heavenly",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79ac-70d9-9bdd-ac2ecf53c680",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Liftop III",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79b8-727d-822b-de9a4a3f39c9",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Mammoth Creek 10-Person Cabin Tent",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a4-73ff-88bf-cc1cdad5bb4b",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Montrail F.K.T",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a0-707c-9f6d-fbff352dc5e8",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Newton Ridge Plus II",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a3-73d3-91b7-ddfdfbeb5553",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Peakfreak X2 Outdry",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79ba-7306-a47c-c7b222bf0a88",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Pinewood 10-Person Dome Tent",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a1-7199-bd7a-326a49679395",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Redmond Waterproof",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-799e-73ba-b904-62ebcfbc04ca",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Saturday Trail",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79ad-73d8-a9f2-e356e59e9865",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Tamolitch",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79b3-7151-998c-5fa9c649fa27",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Thermarator Gloves",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79b6-7135-a2a2-7031266b82fb",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Trail Shaker Neck Gaiter",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79a6-7202-99cc-ed4be4e71ef0",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Trans Alps F.K.T",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79b1-7305-b0a0-188bc27f249b",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Unisex Bora Bora Booney II Sun Hat",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79af-7368-94ee-02f568d133dd",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Columbia Zigzag 22L",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8b11-73f6-aca2-0da2b80220eb",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Combair SEP",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b0e-7348-acd5-1250328bbb7e",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Combair SL",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b10-71e7-bfa4-762f293a3b37",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Combair Steam S",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-91fb-7216-90f5-f8b6bf9bdaa6",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Combat",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7b70-7368-9ca7-63d9f9b82dd4",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Combat Boots",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-796f-7068-8c80-3897276c0706",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Combat Boots",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-882a-7389-b1bd-2d89289b4a21",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Combi Réfrigérateur Congélateur",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6b72-7211-8a38-b776ec3b1889",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Combinaison",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8b15-73fc-a9df-0438aa776c2b",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Combino CRSP60",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b17-71f2-9ae9-90580273ad81",
            "brand_id": "019f426a-8b0c-715d-ab45-59186b2f827e",
            "wording": "Combino CRSP90",
            "brand": {
                "id": "019f426a-8b0c-715d-ab45-59186b2f827e",
                "wording": "V-Zug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9463-7362-9385-4be63a0c3f4f",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Combo Clava®",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92f4-72bc-91a9-a581882a5e37",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "Comete Ultimate MIPS",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9502-713c-9cbe-4da2751cf8cb",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Comfort 10 Double",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7d4f-7055-8951-930db4179020",
            "brand_id": "019f426a-7d4e-734c-804a-09dc46656020",
            "wording": "Comfort Basic",
            "brand": {
                "id": "019f426a-7d4e-734c-804a-09dc46656020",
                "wording": "Gabor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d56-7263-b808-58772dc17397",
            "brand_id": "019f426a-7d4e-734c-804a-09dc46656020",
            "wording": "Comfort Fashion",
            "brand": {
                "id": "019f426a-7d4e-734c-804a-09dc46656020",
                "wording": "Gabor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d52-7269-8efa-d4857eca4b59",
            "brand_id": "019f426a-7d4e-734c-804a-09dc46656020",
            "wording": "Comfort Sport",
            "brand": {
                "id": "019f426a-7d4e-734c-804a-09dc46656020",
                "wording": "Gabor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-661a-720f-8481-11cda92eb398",
            "brand_id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "Commander",
            "brand": {
                "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
                "wording": "Mido",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6123-7000-a70f-1aeff8e7ca10",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Commando Chrono",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8916-70e5-a02b-80947dd10883",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Compact",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-842d-7354-b1ed-aa8759427a65",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Compact 3200 XL",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-843d-7026-8753-f6bf50d22440",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "Compact Power Cyclonic",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-73cb-733c-aef0-33c0746d1804",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Compensées",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-90b8-707a-ab78-ba1e072a59da",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Completes",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7fd3-71db-a076-d7927ca425b1",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Complexe 5",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5187-72f9-96d7-9a6e823ab0b3",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Complexe Energisant",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-82ab-73a8-946d-3fc1fa231b88",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Complexes",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-664f-718a-b5c8-d1399533519e",
            "brand_id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Complications",
            "brand": {
                "id": "019f426a-664a-7284-9d69-a75dee56956e",
                "wording": "Patek Philippe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-81d5-70d3-8a09-92aadf9a5e53",
            "brand_id": "019f426a-81d4-7077-b134-45f9f78252fc",
            "wording": "Compléments Alimentaires",
            "brand": {
                "id": "019f426a-81d4-7077-b134-45f9f78252fc",
                "wording": "Fleurance Nature",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-909f-72d5-861c-eea96418e900",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Compléments Alimentaires",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9080-7224-b4e0-8e22bd3af0a7",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Compression Bra",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5ef1-72d1-a5a7-c2e610fefbe0",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Comète",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5edc-726b-a420-f6a190136e36",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Comète 1932",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-51ce-710a-9b95-4f57e9b0ffd8",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Concentré Energétique",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-63df-72c9-ade1-723b0b27afba",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Concept Anubis",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63d9-7382-ab67-2742eb00e08a",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Concept Samonrai",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5f8b-714e-b27e-2e9b2a2c8b85",
            "brand_id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "Concorde",
            "brand": {
                "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
                "wording": "Pequignet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8345-7171-8ae3-2572e7861cc8",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Condensation",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-51f7-7159-8fb6-665c1cdcfcdd",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Condition Naturelle",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-777f-73ea-a806-ae5d0271e28b",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Congratulations Confetti",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8349-728a-80b4-ce0bb33046e4",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Congélateurs",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-831c-7346-a80a-b8dc1cd098ef",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Congélateurs",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8358-7371-af63-d353d196395c",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Congélateurs",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7a00-7083-9978-fdbcfae560ea",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Conkca London - Black",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a05-73b3-ae5d-6fb6abaa944d",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Conkca London - Olive",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-655f-7343-bfd8-2b152b4b7985",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Connected",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6724-7039-b597-125768e1e6a5",
            "brand_id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "Conquest",
            "brand": {
                "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
                "wording": "Longines",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5b9f-7127-90e2-f2ef60ba9714",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Conrad",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5520-7338-9b42-effb93bd7c88",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Constance",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4969-704c-9cea-967abe290fd1",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Constance",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6645-73de-8fd8-853747de0c66",
            "brand_id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "Constellation",
            "brand": {
                "id": "019f426a-663f-7380-94b2-06517b63aa0a",
                "wording": "Omega",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-632f-7137-a388-c9f57ad277ab",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Contemporaines",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7cc3-7350-8098-d744dbceb4d5",
            "brand_id": "019f426a-7cc1-70b1-a38d-317738454f29",
            "wording": "Contemporary Fit",
            "brand": {
                "id": "019f426a-7cc1-70b1-a38d-317738454f29",
                "wording": "Eton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8fa6-7021-b4d9-bc7e01a472ef",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Contest Junior",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fa5-7306-967e-220e3e7d3964",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Contest Vision MIPS",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6c9e-711d-8150-f6d9ee9238dd",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Conti",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-71d0-7224-8245-404e23fd0725",
            "brand_id": "019f426a-71be-7236-924d-06e425f6b806",
            "wording": "Continental",
            "brand": {
                "id": "019f426a-71be-7236-924d-06e425f6b806",
                "wording": "Stalvey",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7273-7396-94ef-f7fc62735f4d",
            "brand_id": "019f426a-7268-7054-a610-0474d39467f1",
            "wording": "Continental",
            "brand": {
                "id": "019f426a-7268-7054-a610-0474d39467f1",
                "wording": "Urban Originals",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-740c-7304-9701-35f48faea535",
            "brand_id": "019f426a-7407-70b6-8efb-908eeb5e778e",
            "wording": "Continental",
            "brand": {
                "id": "019f426a-7407-70b6-8efb-908eeb5e778e",
                "wording": "Aspinal of London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8248-732c-9b9c-dd5eab4087b9",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Contour des Yeux Anti-Cernes",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5116-722e-b71a-52f46b2e4641",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Contra",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7140-7274-bf07-d3e2daf6e087",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Controle",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7db2-71e3-9e2a-2243b51d4999",
            "brand_id": "019f426a-7dab-7302-a31e-9b10153c2998",
            "wording": "Convertible",
            "brand": {
                "id": "019f426a-7dab-7302-a31e-9b10153c2998",
                "wording": "Giani Bernini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7a8f-73bd-8fbc-a57eb53109bc",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Convertible Backpack",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-745c-7206-93bf-e385e84fea06",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Convertible Naples",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9235-72e3-83fb-4365a70a9fa2",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Conviction X",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8431-70ff-b3b9-260ab18a5487",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Cook Expert",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8452-70aa-882a-5330a1de92dd",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Cooking Chef Gourmet KCC9040S",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-88a1-728e-9946-ed41edd2df7c",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Cool Control",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7b5e-7037-a075-bf5f61c5376e",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Cool Guy Jeans",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-88da-7342-a9a7-77dbbe4dfa51",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "CoolAir Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88d7-7147-84b7-f4a8fecf160e",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "CoolFreeze Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88e3-7105-9a8b-5e1dc708e122",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "CoolMatic Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6c84-715b-91c6-22fc168c6d18",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Cooper",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-918f-7220-a284-0cfb3ffae1eb",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Copa",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4953-7083-8e98-04cc83570e4a",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Copacabana",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-714e-72ef-8907-6495b491fc7a",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Coque",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5708-713a-b491-59489d7216b6",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Coquelicot",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7260-70c1-834b-7fe2112ed87a",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Coquette",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-56a4-7151-b719-31cc2933b83a",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Coquillage",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-54a1-70f8-981e-e906e42a0712",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Corail",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4fde-703e-ab33-d7d1721812b1",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Corail",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-56a9-72df-82c9-e770cde38177",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Corail",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5317-7205-a915-da13440f8335",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Coraline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-56b2-7184-be9f-58481d1bf0c3",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Coraux Asymétriques",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8f0e-71c0-bf65-52286e9f125d",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Corax",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5364-72b9-b2e2-609918da355b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Corazon",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8594-709d-9536-042ef668dd72",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "CordZero Stick Vacuum",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8c5e-72ea-962a-1670bdf531d7",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Cordless Clipper",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8918-71a9-a327-7bd0247ad86a",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Core",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9220-7223-a2f0-efcad9907913",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Core",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-932f-70a9-aaea-cfc6851c95cb",
            "brand_id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "CoreFusion",
            "brand": {
                "id": "019f426a-9329-7339-9d07-2b866765b6d6",
                "wording": "X-Bionic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6bf6-7273-9406-49dec28a562d",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Corella",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f38-726a-b1e9-f39bdf6860f2",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Coromandel",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9163-718f-9f41-52e6d8b5c3bf",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Corpo",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8206-72b9-ba17-fc52a3945a81",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Corps",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81c0-700f-943e-a8bf091a308d",
            "brand_id": "019f426a-81ba-714e-a280-ee8776b414cc",
            "wording": "Corps et Cheveux",
            "brand": {
                "id": "019f426a-81ba-714e-a280-ee8776b414cc",
                "wording": "Ricaud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-72f6-712c-be35-09dd71e2fad2",
            "brand_id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
            "wording": "Corsage",
            "brand": {
                "id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
                "wording": "Zimmermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a98-73de-8b8a-9580d34da210",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Cosmetic Bag",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-92ea-725d-ac05-0d5d4ee42170",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "Cosmic Pro Carbon SL UST",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92ec-726c-a6fe-ad3ff81747a9",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "Cosmic Ultimate",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6292-722d-b3f1-2c25b9fb966b",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Cosmopole",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-82b3-726d-9440-f128da1ec315",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Cosmétique Bio",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81d7-7144-b24b-32a07fd53566",
            "brand_id": "019f426a-81d4-7077-b134-45f9f78252fc",
            "wording": "Cosmétiques Bio",
            "brand": {
                "id": "019f426a-81d4-7077-b134-45f9f78252fc",
                "wording": "Fleurance Nature",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6fb6-718e-bbe4-e5eca014c65a",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Costume smoking",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fb9-73ed-8fc8-70f55ecfe698",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Costume tailleur",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f9c-7364-bb6a-3cbca3e003d4",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Costumes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6784-70fa-a357-c1767cf2162a",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Cotele Epais",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-77da-72d7-a585-e477eaf0a142",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Cottage Patchwork",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7697-7312-8641-5a1da2d15cbd",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Cotton Sheet Set",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b98-73f9-b223-bb7cdc3dc92c",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Cotton Shirt",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a70-71e4-a509-568fd3dca245",
            "brand_id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "Cotton Shirt",
            "brand": {
                "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
                "wording": "DAKS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7af2-7041-a883-db3142229708",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Cotton T-shirt",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5f82-7015-8a8a-8c71aa107c2e",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Courage",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-76bd-70d1-9133-87b15ff0f31a",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Courb",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-94e9-7270-85ee-22e159a3cbe1",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Courma Guy Waterproof Boots",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-924e-70fa-aee8-8a87ee88edb6",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Court",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9239-71ae-8cac-89aa74525576",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Court FF",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7b2f-736f-b100-1fd966194e96",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Court Shoes",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6af4-70ed-aea6-c38e2bea02d7",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Court Sport",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4dbe-7274-91e7-460413bf08e2",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Cousine",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b73-7137-8d3c-408f8f1ca0d0",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Coussin",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6625-72e2-8843-1754939076f6",
            "brand_id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "Couturier",
            "brand": {
                "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
                "wording": "Tissot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4af3-72c4-a1f5-4c4627a1c124",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Couverts Modèle Albi",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4aee-717c-9a91-dc02d8c28e74",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Couverts Modèle Marly",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6b5c-7186-b8fa-9c2b5eb689fe",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Covelly",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6918-725c-a42d-2da7d7239238",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Cover",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9545-7340-b683-e866539be340",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Covert QR Edge Stick",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-954b-7195-b31c-30531f663014",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Covert QR Pro Skates",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-77d3-70fb-a9a6-1c00312144e9",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Cowboy Patch",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7102-714d-b892-183dc1a1ab1e",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Cowboy Rb",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7cb7-7015-a63a-cab5e7198fff",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Crank",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-748d-7052-b6e5-3117e73bc690",
            "brand_id": "019f426a-7487-73c5-a937-82a7cfd87012",
            "wording": "Crayon",
            "brand": {
                "id": "019f426a-7487-73c5-a937-82a7cfd87012",
                "wording": "BCBGeneration",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6aa1-7019-b975-0c9f22341ca2",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Crayon",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6396-7229-a427-cf135087bd86",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Crazy Flower",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-76f0-724b-9500-670a00f3fd53",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Credit Card Case",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8eda-7293-ab58-96cecaf483e0",
            "brand_id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
            "wording": "Crema e Gusto",
            "brand": {
                "id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
                "wording": "Lavazza",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5171-708c-a2d9-ac44926bb732",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Creme régénératrice",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f22-725c-b769-c84d8fff5a63",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Creo",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5486-73a1-941c-6eb7beb42ad1",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Creoles Cléa Camée",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5489-72c9-8930-35f8d086b947",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Creoles Cléa Losange",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5483-708e-aba4-4af3bd8510a4",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Creoles Cléa Perle",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6a81-70e6-a63a-16728b754134",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Crepe",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6dc3-70b7-81dc-f79608413763",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Crepe Georgette",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e47-72f0-9df6-83e6cf590824",
            "brand_id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
            "wording": "Crew",
            "brand": {
                "id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
                "wording": "Helly Hansen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7657-715a-a96f-f8d0ad186289",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Crew Neck",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74db-725b-951e-beed06c180da",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Crew Neck Sweater",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-781b-7117-997c-fce51e39a10a",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Crew Socks",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9072-71f9-bd10-6cae89f9a703",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Crewneck Sweatshirt",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-73d7-73c5-9a42-c84d21945054",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Cristal",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5de3-70c4-8233-c9423c625fd4",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Cristal",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5ff5-700d-b1fd-f0b48262e5d7",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Cristal",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6a5a-7385-9c73-af53dcf7db1f",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Cristal",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f2f-7084-a671-e558259b799e",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Cristalle",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5fc5-7190-9bc1-4cb8e6fbce92",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Criterium",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7dcb-707a-9c25-ab80046187f0",
            "brand_id": "019f426a-7dc3-7321-bc6a-60d33157644d",
            "wording": "Crochet",
            "brand": {
                "id": "019f426a-7dc3-7321-bc6a-60d33157644d",
                "wording": "Glamorous",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5764-7248-9141-d43a80fc2b9e",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Crochet Fine",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-72dd-700a-87ff-0c0db6c4dfd5",
            "brand_id": "019f426a-72d6-71f8-b00a-12873bdb434e",
            "wording": "Crocodile",
            "brand": {
                "id": "019f426a-72d6-71f8-b00a-12873bdb434e",
                "wording": "Zagliani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5711-719d-bc8f-ff0d6ef1c155",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Crocodile",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-693c-70af-a4ad-2a8706d2e795",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Crocs",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7dc0-70c5-b168-5b75ddeb4f82",
            "brand_id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Croisé",
            "brand": {
                "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
                "wording": "Giorgio Armani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6c4c-707e-8706-5c99d5f86cc7",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Croisées",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4d54-7008-bb30-0c48aed32e75",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Croix",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5493-71fa-b293-de4b2fb26789",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Croix",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54f1-7192-b174-76820c0d714e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Croix Nacre",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8f18-736f-a3d9-9e16c49cb9ad",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Croll",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5fc9-733f-8c81-d117d6fb1b30",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Cronos",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-77ff-722a-a675-f7648b8ed648",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Crop Hoodie",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7518-71ec-b43f-f022f300c53d",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Crop Top",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c3c-73e8-a729-aeb72cb7b1cf",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Crop Top Agata",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7809-72dd-8f71-e284ebe4e5ac",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Cropped Logo",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7acf-7173-889a-f3e3c4d6335f",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Cropped Trousers",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4edd-72a4-a304-1e000f07cac4",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Cross",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-768a-71b0-8e54-39fb1a0646a4",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Crossbody",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ba5-7093-9971-8f7f289c5ef1",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7abc-7022-90b9-4e338728a303",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-74f8-7192-871e-ca888592e7ab",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7591-71bb-9068-4d6cd1a36cae",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b3d-736a-a225-fc058199490a",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7954-70f1-af81-77ad72d0c8bb",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7be8-7103-a68f-99cad14fce56",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7522-73d7-8005-7b3d730ccc9e",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Crossbody Bag",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-76dc-73a2-93f9-08b181976e8b",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Crossbody Satchel",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-57e7-70f3-889b-8f421a26d43a",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Croute",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7f21-7155-aea0-ac7b9a53b40f",
            "brand_id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Crown",
            "brand": {
                "id": "019f426a-7f17-735b-b944-c2b58be34b83",
                "wording": "Joules",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6951-70f3-b7e5-34c0e70d0249",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Crush",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7d6d-7328-a6d5-c0fbdc5ef390",
            "brand_id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
            "wording": "Crystal",
            "brand": {
                "id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
                "wording": "Gedebe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8e3e-73b8-8b2b-c29d9f2e9a12",
            "brand_id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
            "wording": "Crystal",
            "brand": {
                "id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
                "wording": "Airstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7b00-728b-bf43-e2b2437b67ab",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Crystal Embellished Heels",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78fc-7326-9eb8-68f23b6f1f43",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Crystal Embellished Pumps",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-859f-71e5-9b46-43f88cfefefa",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Crystal UHD AU8000",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7916-737b-a412-b45d26a5a71b",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Crystal-Embellished Blouse",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7924-7080-827a-8afc8a3acf0a",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Crystal-Embellished Crossbody",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7931-7184-9bc9-10f6f8b2be7e",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Crystal-Embellished Pumps",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-792f-7132-ac2b-bb0ab8bd3aec",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Crystal-Embellished Shades",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4fd0-73da-ab0d-cfcf7fa48862",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Crème",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8175-72d4-9bbe-c3f421c40d3b",
            "brand_id": "019f426a-8171-726a-a030-2570fad0321d",
            "wording": "Crème Fondante Hydratante",
            "brand": {
                "id": "019f426a-8171-726a-a030-2570fad0321d",
                "wording": "Akane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8134-7175-a7dc-78c0465686b1",
            "brand_id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Crème Gommante Mains et Ongles",
            "brand": {
                "id": "019f426a-812f-7248-90f8-485049bd327f",
                "wording": "Vita Citral",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7ff9-718c-a980-4298dab06942",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Crème Magnifica",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8131-7207-b999-9c27b12a1962",
            "brand_id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Crème Mains et Ongles",
            "brand": {
                "id": "019f426a-812f-7248-90f8-485049bd327f",
                "wording": "Vita Citral",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fa6-738c-9af4-e27303062870",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Crème No. 2",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8138-7146-a84c-d6071b06bbaa",
            "brand_id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Crème Protectrice Mains et Ongles",
            "brand": {
                "id": "019f426a-812f-7248-90f8-485049bd327f",
                "wording": "Vita Citral",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-51d2-706c-9a6e-103018bfe9b5",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Crème aux Fleurs",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-81b8-72ff-904b-6013138c77bd",
            "brand_id": "019f426a-81af-7125-a055-22e2aaff2c80",
            "wording": "Crème de Jour Anti-Âge",
            "brand": {
                "id": "019f426a-81af-7125-a055-22e2aaff2c80",
                "wording": "Ixage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81b4-73b5-b512-c52aab182c7f",
            "brand_id": "019f426a-81af-7125-a055-22e2aaff2c80",
            "wording": "Crème de Nuit Régénérante",
            "brand": {
                "id": "019f426a-81af-7125-a055-22e2aaff2c80",
                "wording": "Ixage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-51d9-700f-b2dd-8057d3425d8e",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Crème de Soin à l' amarante",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-90a7-700a-9810-3a06c4a7a54b",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Crèmes Solaires",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8108-7315-9d1b-ec57163cc08b",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Crèmes Visage",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-90a0-70b2-9ec2-947c9dbd9c1a",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Crèmes de Récupération",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-816a-71c6-87a5-58e432828f73",
            "brand_id": "019f426a-8167-711c-9789-8705d8b5fc78",
            "wording": "Crèmes pour le Visage",
            "brand": {
                "id": "019f426a-8167-711c-9789-8705d8b5fc78",
                "wording": "L'Erbolario",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5746-7207-afc7-79d7c5665f9b",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Créole",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5029-7140-84af-e93760d49a3d",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Créole Speeding Motorcycle",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5035-72cc-af76-60a4afe1b49b",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Créoles",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4b1f-702b-94b3-5ef19ccf9f01",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Créoles",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5474-7278-a877-36d224647584",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Créoles Ava",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4f5c-70be-b02f-1eb8b6a31e0a",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Créoles Botanique",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-560e-705d-b63d-6db2b507052a",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Créoles Gabin",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5479-72c9-b8e9-959fa614033c",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Créoles Mini Perla",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54c6-7117-aa9c-44f85b646a03",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Créoles Torsadées S",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-560a-7059-b5a1-b01a49e67fb3",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Créoles anatoline",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4f59-7270-b8b5-51a729cafaec",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Créoles vertigo",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8e3a-71b5-b9ed-08bd0fdb6a44",
            "brand_id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
            "wording": "Cube",
            "brand": {
                "id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
                "wording": "Airstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6d29-7093-a925-9dd216cce501",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Cubisto",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6d26-73f9-833e-1b1c27b8281a",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Cubo",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7583-713d-a865-5ad8c7221802",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Cucinelli Loafers",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4f1f-71e4-8f91-323c07ab1442",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Cuerpomano",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8b83-7048-8e87-7dd0b6ff98be",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Cuiseur Vitacook",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-842f-7245-aee0-4ba87d11b851",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Cuisine Systeme 5200 XL",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8369-729d-894c-b23ebe3c547a",
            "brand_id": "019f426a-8367-715e-aa0e-0097f389b4a4",
            "wording": "Cuisinières",
            "brand": {
                "id": "019f426a-8367-715e-aa0e-0097f389b4a4",
                "wording": "Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-834b-710b-80fe-03167aa6cf5e",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Cuisinières",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8cec-72f1-887c-2007949efc88",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Cuisinières",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-830c-7268-91fd-ef84e34f478d",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Cuisinières",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82f0-72a6-a0e0-1a483a558e1a",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Cuisinières",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8351-7045-9323-ff503a9a6a5a",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Cuisinières",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5e03-71cc-ae88-3f9d1e3d6710",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Cuive 13cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e0b-7350-b323-794e88dbc2dc",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Cuive 17cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5dfb-722e-8b0f-9bb459467a5a",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Cuive 9cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7b2b-7306-9add-aa703c1f78c2",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Culottes",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8056-71d1-9ac8-6c86a0a14ae8",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Culture Bio",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6c57-7326-8a63-4b4c5f2d1f37",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Cupid's door",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-91c0-73f7-8990-e091f8d077ac",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Curry",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-70c4-72d4-8e6f-6d1a58286534",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Curve W",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70f2-70eb-b345-ac08e0e5c25a",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Cut Off 4",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6bc4-710d-8f47-09ecee196c60",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Cut Out",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6997-7184-8eee-29a9db21fe78",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Cut Out",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7914-7131-8e43-7df1f07171c9",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Cut-Out Midi Dress",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9368-7219-9dfb-424299e9b94a",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Cyborg",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8fc4-7037-98d5-0da56ce1d0cb",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Cycling",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9102-7115-937a-d80b8fddef01",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Cycling Jerseys",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9103-73f0-814f-b78f2fb8bc3d",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Cycling Shorts and Bibs",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-80ec-71af-abca-7391dd0e5f73",
            "brand_id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Cyclo System",
            "brand": {
                "id": "019f426a-80e7-7070-822b-75c13f312f2b",
                "wording": "Esthederm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-86f5-7238-8bdf-603a44e1167c",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Cyclone V10",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-70a8-713f-9428-79d1003fdcf4",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Cymé",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70b0-7339-a906-5f6718d7efc0",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Cymé MIni",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7fe9-72cb-922b-53bde149ea3f",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Cédrat",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5fda-71b7-a929-9f36bf506346",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Céleste",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e2e-7167-b4fc-13c51e00f8c1",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Célébration",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-73bc-7103-88fb-b368aafbbc33",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Céruléen",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6d92-708f-91be-09243a02bab0",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "D'OISEAU",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b7d-734d-b88f-d4f4b76f61ed",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "D'Orsay",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6845-7221-a359-9486b706b682",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "D'enveloppement Floral",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7dfe-7225-a4bc-810f9f9a55e5",
            "brand_id": "019f426a-7df7-72e6-b700-f56e04794297",
            "wording": "D'été",
            "brand": {
                "id": "019f426a-7df7-72e6-b700-f56e04794297",
                "wording": "Green Coast",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-617f-72d7-b58d-b5ccd3f71532",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "D-Backstage",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-48e0-712a-9147-2cdceff9cfe1",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "D-Barry",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-616d-72fb-bf1f-5c604c54cd0d",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "D-Joy",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-615a-71cb-a894-8e0287a62302",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "D-Lite",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-615e-71f4-bc85-5e2b4eb5dec0",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "D-Sire",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9192-72c1-9f96-30c2b93cdf48",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "D.O.N. Issue",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8cb9-7160-be48-bb78316b7979",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "D876",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-63de-7035-a5ea-7fba01bcbfde",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "DA VINCI",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-60d6-7360-95e2-4c17eb9266ba",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "DANDY Mansart",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5cae-7104-a56e-cfe01b721f2d",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "DARLA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5fac-7299-b607-67dffb1b1c28",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "DATA",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5cb1-72d5-adbe-1365d0a8c5e4",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "DAYSI",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6350-7291-9d22-0e1c13e2f2f0",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "DB EIGHT",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6348-73ed-957c-4c10eb889c68",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "DB25",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-634a-72e7-aef5-2c4230e76d16",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "DB27",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-633c-7395-b7ca-e88f6be8fa6f",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "DB28",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-634e-70e1-a6a4-fe0571989602",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "DB29",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-633e-7297-8d1c-5b219f67a214",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "DBD",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8e7a-7101-9ae3-f85ca55b6085",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "DC230",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6431-709e-b627-44980587d664",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "DDF12-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-642f-7099-b0e2-8a871741ce27",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "DDF6-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8ddc-72b2-855a-d0f96594512e",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "DDH20",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-59f7-7301-a679-410645339bb5",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "DEAN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8e62-7390-aed1-5655e4f9ed9a",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "DELICIA BM250",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b6a-7149-9f37-8e40d4035fea",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "DEN38530X",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-49da-72d1-b57d-25e6d7c8b46c",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "DESTIN",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-598a-7177-898c-45ba1704e6fe",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "DEVON",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-89a7-7272-b72f-d215568870b1",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "DF 302 W",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89a5-720b-a286-ca8a85146077",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "DFB 186 A+",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-849f-7028-a68c-30f3e718b5ad",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "DFD13E1X",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b68-71c2-877d-ef1ad507f335",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "DFN 28432 X",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b6b-7294-9ba4-cfff48a051e2",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "DFN16420X",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-860d-7297-a5bc-f95d17200cde",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DFN28430X",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-861c-7178-859c-86beeda7c364",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DFN39432X",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83f4-71da-b252-84115fcd58e7",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "DFP 27T96 Z FR",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-89a9-7259-9055-be2c47733f6d",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "DFXA 219 A+",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8445-7016-89aa-7c4725218b1d",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "DG7623 Compact Steam",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8442-717b-aa50-74484bf50275",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "DG8962 Silence Steam",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8dde-70d7-962e-69129d71dc7e",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "DH20",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4f16-70bb-a956-0eef8dda3974",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "DIA",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6764-7337-87eb-81f2b6b46b67",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "DIANA",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5587-70f1-8b86-22a1287eec9c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "DIATA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-860c-7353-89f5-d4ef83d97b8d",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DIN15X30",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-55d2-7288-84d4-4dc47316da4b",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "DINA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-574d-722d-9f48-01efaf829a0d",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "DISQUE",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-611b-71c2-9e8a-73a31884b87d",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "DIVER PRO DESTRO",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5988-73a6-a058-ac61de556897",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "DONEGAL",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5ce1-707c-aaa1-9ef4f7fefb88",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "DONIA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5547-72a4-ac69-a4853717961b",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "DORESS",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-59e4-73a6-9d43-dc2905441f79",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "DORIAN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7fb9-73ec-86f0-fe23d4b83e7f",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "DOUCEUR MARINE",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6dcb-72c5-90df-c1968f42ca51",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "DOUX",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-864d-7170-afcb-a1187389a473",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "DP-UB820EB",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-864f-7004-b2d8-3292a8fe9c62",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "DP-UB9000EBK",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5d2d-72d7-9803-a89a6cdf4f98",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "DRIES VAN NOTEN",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6ecd-7298-b553-0eabde8ce16e",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "DRUNKEN",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-85ff-7202-933a-c7fccaf10d5d",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DS7331PA0W",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8604-710c-91f2-a26ba4d07b41",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DS7511PA0W",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8601-7289-ba74-e2296976654a",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DS8412GX0",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d07-73ce-bc5c-54dad4097056",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "DSI810",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d09-7081-863c-9a7de8b9119d",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "DSI830",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d0b-7329-b39b-922a558850e0",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "DSI860",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5d72-730f-bbee-f76c7a7fb02c",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "DSQUARED2",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-83f5-70d3-8fe9-7ef06a76755e",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "DSR 26B16 A EU",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83f2-7311-8d69-02086b3ec71d",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "DSR 57M94 A FR",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9384-7263-8112-ea2eebf8b194",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "DTS",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5cdf-72d6-b12d-18f257f2515c",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "DULCIE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4913-72bb-83c4-bba6901dfeb8",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "DUNE",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-704b-738c-9979-d583cd1584f3",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "DUO",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4936-72db-8a06-b6d76d4e4fb6",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "DUO",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8651-738e-a21a-272f6407bec4",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "DVD-S700",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-860f-72a1-b9c7-34b0cb091397",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "DVN05C20W",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8929-72e0-9ff2-395566abe602",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "DW 121",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8928-7181-ae49-37127efbfb54",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "DW 486",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-850d-7338-bfb9-646c38afe5ac",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "DW5080",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8436-729f-b6bd-9837c2927c6e",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "DW6010 Eco Intelligence",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8438-71d7-9326-2a0688167981",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "DW6015 Eco Focus",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8435-70bf-83ab-83cf92572ae5",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "DW9240 Steam Force",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9549-71bb-8d72-8e9cdfd3d80e",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "DX Elbow Pads",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9548-7368-8e55-00fac5e6c959",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "DX Pro Gloves",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9543-70db-a025-7b109dbc6e4f",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "DX Pro Stick",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9546-723f-b267-b42ca33e0ac5",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "DX Shoulder Pads",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6746-7142-a734-28e2ea40d6f2",
            "brand_id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "Da Vinci",
            "brand": {
                "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
                "wording": "IWC Schaffhausen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6ea1-70cf-ab96-1365cde605cb",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Dahlia",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7c84-7271-bf4c-b49cb27a3e25",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Dahlia",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6c8d-7131-8cd9-d00833816949",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Daim",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8f91-73d5-9cc5-741dda1b2d80",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Dainese Solarys Air",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6861-7049-ba98-dfb06e7c5913",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Daisy",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7266-73e6-a113-0e7476f4bb60",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Dakota",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4eaa-72fe-b4a6-49d28472b536",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Dali",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-529d-7185-8c43-1c99b3065dd6",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dalida",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9193-7095-a3b5-cf11783ccd50",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Dame",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7796-7184-990f-673a99efa491",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Dame",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7066-73f8-8384-53162d463ed3",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Dame Million",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-62d2-7193-8335-a1d96fb37cba",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Damenuhr",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4b80-7335-b3b0-dfb5d9501f2f",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Damier Ebene",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-74a3-71f7-b120-2337169c0377",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Dana",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-48b3-73d5-9da2-de67f2a43946",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Dandy",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5420-7162-8be3-d30e19bbc3ad",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Daniele",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-58f2-7335-a3c0-b7d39e1828ed",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Danny",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5e29-708f-9158-e919aec9125f",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Danseuse",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7881-7224-8ec6-98b04a660e6c",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Dante",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5717-73e4-a5ad-75c7ad12bce2",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Dantelé",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-78d5-7325-b077-537347af9e99",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Darcey",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7797-72df-8d48-b6b6372273ea",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Darcy",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-94ad-728b-bcc6-13fb26ebd72a",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Dare GTX Jacket",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6b4a-7117-bf47-137da8d2b2c3",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Darley",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c6a-71a4-aca3-3d54d33caf82",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Darren",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-78ab-71d7-bb64-2ae5e62dac3f",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Darryl",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-895b-70f4-9c06-949f0aa19f67",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Dart 1",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8958-70a0-aec5-691604968926",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Dart 2",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7ddb-700b-92c9-283806753739",
            "brand_id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
            "wording": "Dash Mini",
            "brand": {
                "id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
                "wording": "Go Dash Dot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7dd5-7018-8bcf-5665dba1b7c8",
            "brand_id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
            "wording": "Dash Pack",
            "brand": {
                "id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
                "wording": "Go Dash Dot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-668b-705d-a431-b1f742fd938c",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Databank",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7604-70d1-98a1-8d12645038eb",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Datarawen",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-662f-70db-9f25-864d3930f7c5",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Datejust",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5700-73ce-9c95-d30f2b9e1f17",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Dauphin",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5f5d-70f2-b744-a50f263ab55b",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Dauphine",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-761f-70a4-afbd-3976bf8526ed",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Daureon",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6202-7046-b44b-1f06e8d3803e",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "David Cuir",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-788c-7351-8b0e-bb3010d2e120",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Davinci",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5c33-7171-93ae-0f2f29720705",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Davis",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-94ef-72b4-ad01-88fabb1dc134",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Davis Square Sneakers",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8ff8-7130-80d6-a122f819ead6",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Davos",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-933d-7156-8cb7-aecbc6c40c70",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Dawson Jacket",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-662a-7115-b773-211700d73571",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Day-Date",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b06-70e5-a2b6-af5e2264a370",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Daymaster Sneakers",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7be2-70d2-9f55-1890850b9eda",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Daypack",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-662d-7338-b273-2c0d6a3f2f54",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Daytona",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7137-718c-a596-9cdded274693",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "De Ski",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7139-736a-998b-fa9e3ed89deb",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "De Snowboard",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6644-724e-b858-e5a9c0006327",
            "brand_id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "De Ville",
            "brand": {
                "id": "019f426a-663f-7380-94b2-06517b63aa0a",
                "wording": "Omega",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9524-732b-a828-59032ae1a915",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Deacon 84",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7618-71be-bf3f-3c409f51d776",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dealian",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b82-70b6-9fb7-c947614d5641",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Deck Shoes",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-90ba-7234-819a-758471ae9f19",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Decks",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4e3a-7110-90ed-b83463e0b4cd",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Declaration",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6d6f-7024-b83f-2726b392447f",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Declencheur",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-798c-73bd-9d92-80434b64183a",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Decorative Objects",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-769f-7216-97c9-81d3ee3e4a3c",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Decorative Pillow",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8e33-7356-ba75-aedbc5602edd",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Dedica",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8416-73f3-bb52-49bd30823882",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "Dedica Style EC 685.M",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6637-7064-b090-f447002647f1",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Deepsea",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5b9d-7013-9d72-2203c18015dc",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Deer x Lucille",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-80f6-7129-9d15-19db9cc89308",
            "brand_id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "DefiLift 3D",
            "brand": {
                "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
                "wording": "Gatineau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6592-7337-8b62-fa70060e02e7",
            "brand_id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "Defy",
            "brand": {
                "id": "019f426a-6589-721a-ac98-72c09b6dc291",
                "wording": "Zenith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-54e3-7130-82f4-fbe8dd71494b",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Delhi",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52a3-70b3-8ae4-be682cdc36eb",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Delia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54b1-735e-85d1-68661f940908",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Delia",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-72cd-70d7-96d8-7c82c054f2bf",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Delila",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6853-72f2-9da2-d9ba1d33e0ea",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Della",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-49aa-72cf-ac79-5b8da3ac93c3",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Della Cavalleria",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5334-706f-8b82-d472629a7783",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Delma",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-760b-7166-bbbf-8898bf61d99f",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Delmio",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5312-73dc-9218-db561bd01318",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Delphine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-75fe-720e-8690-1702ea2eaef0",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Delsiane",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d48-70b9-9e88-f6a08d040c0d",
            "brand_id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
            "wording": "Demi",
            "brand": {
                "id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
                "wording": "Gabriela Hearst",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c9e-72ca-a6a9-1e49ab7e412d",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Demi",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6fe0-73c2-9a80-2dff1692ba98",
            "brand_id": "019f426a-6fd7-7343-aa43-93e749c237d8",
            "wording": "Demi",
            "brand": {
                "id": "019f426a-6fd7-7343-aa43-93e749c237d8",
                "wording": "Manu Atelier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4fbd-7366-b489-4d0673631714",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Denim",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-678e-739e-b5d5-e9b91a7a249a",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Denim",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7dfa-7038-9fd1-078200c39983",
            "brand_id": "019f426a-7df7-72e6-b700-f56e04794297",
            "wording": "Denim",
            "brand": {
                "id": "019f426a-7df7-72e6-b700-f56e04794297",
                "wording": "Green Coast",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7943-7378-94c4-aea5f8705e0f",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Denim Jacket",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b64-71fa-85da-61e97d222fcd",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Denim Jacket",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78bb-71c5-ba96-2a46b93818a2",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Denim Jacket",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5419-7083-8f73-6cef1c687e79",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Denise",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53a9-7140-8dc8-630d08a83457",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Denista",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4d0c-7129-b434-6b58bb234d9e",
            "brand_id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Dentelle et broderie",
            "brand": {
                "id": "019f426a-4d01-738d-9cda-a38d664e6506",
                "wording": "Maison Guillemette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4a2c-71f1-90ae-7840dc8e109f",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Derbies",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6f77-7282-97ab-e4232439538e",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Derbies Wingtip",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7b76-72d5-8f4d-071a81fcb20c",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Derby Shoes",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-763c-7374-9be7-f43c6d7293f2",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Derlan",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8040-716d-bebe-220ad4eb6615",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Dermablend",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-92df-7064-97df-201a7a14cb95",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "Descender",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4d1b-70b8-9dff-dd673dce4afe",
            "brand_id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Design épuré",
            "brand": {
                "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
                "wording": "Stone Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-74a9-70f3-b8e8-c337fca328c2",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Desta",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-770b-70f7-9785-6e06106969c3",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Detroit Jacket",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74f0-7330-b817-2ab5eaa3c9b1",
            "brand_id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Deux Jours",
            "brand": {
                "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
                "wording": "Berluti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-54af-71e8-9355-609e0aa70642",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Deva",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-916d-705c-a832-5244a6f80141",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Deviate Nitro",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-734f-7310-a8f6-6572f7ae5a69",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Devobanna",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7af5-7168-8966-aa8e931b3c84",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Devotion Bag",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-762b-711e-b222-97a571e058e9",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dhalian",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6c05-7076-b7a4-6b199fa053a6",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Di MELOSA",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-524b-70b8-a2b8-f8172e941c17",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8093-720b-95fe-c4457d89e205",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Diabolique Tomate",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9441-7119-996e-d0319b16e35c",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Diadem Extreme Sleeping Bag",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6d5c-7259-b93f-e13ead3369f4",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Diag",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7643-73a4-843e-c30f1a153d50",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dialan",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4e6a-700c-89e0-53943a9bf404",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Diamant",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e92-72ff-ab86-1d2f8f7d1c9b",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Diamant Amoureux",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6b39-723f-9acf-bb80824df38b",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Diamant Lumière MAXI",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4fea-736e-890a-96c14b1ba8a8",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Diamants Blanc",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-506c-7004-8c75-339cc97e5d00",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Diamants Citrine",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4e13-72c7-a526-c2f6f546d0d9",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Diamants Elisabeth",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e0d-73c1-afb1-88f459e2f10f",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Diamants Madame",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e16-707e-a992-3fc5cfe59fd1",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Diamants Mademoiselle",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e0b-718a-a782-ae08e885f3fd",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Diamants Thelma",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cec-7339-81a6-34d04894a908",
            "brand_id": "019f426a-4cd8-7186-859e-6a420c78a014",
            "wording": "Diamants et pierres précieuses",
            "brand": {
                "id": "019f426a-4cd8-7186-859e-6a420c78a014",
                "wording": "Cleor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d1a-7121-a3e0-ce5da28915ee",
            "brand_id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Diamants et pierres précieuses",
            "brand": {
                "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
                "wording": "Stone Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5069-7121-af7d-ae137b8eaa61",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Diamants nacre",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4ff4-70fa-b829-f0fa4a391af9",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Diamants poire",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5061-7343-a24a-82df8297b373",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Diamants sertis",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-88c5-73cc-bd0b-24cf2a375d8e",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Diamond Blender",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-764a-72ec-873f-9bfcb0b9f27a",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dian",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7479-7348-97ce-daabfec16e5d",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Diana",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7092-71eb-bfc8-b2d3143c7fec",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Diana",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5592-711b-9e01-6443007462c3",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Diane",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4cab-72c3-9477-bf4cb49f9efe",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Dicker",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-815e-7011-93aa-1bd086d56cf0",
            "brand_id": "019f426a-815b-711a-b5ad-0909f1c1a547",
            "wording": "Diffuseur de Beauté",
            "brand": {
                "id": "019f426a-815b-711a-b5ad-0909f1c1a547",
                "wording": "Galenic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5afc-714a-9e25-206d95a2c4ac",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Dil",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a5f-7268-b0f2-57291b21ebcb",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Dil 1",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-560c-734e-8531-73e53c16f231",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Dina",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7794-70e2-9ea3-4f91ffac10bd",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Dina",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-48d5-731e-b0b7-cd55c5ff4a64",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Dinh Van x Parmigiani Fleurier",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7e87-722a-b460-1553f3eca447",
            "brand_id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
            "wording": "Dinoma",
            "brand": {
                "id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
                "wording": "HUGO BOSS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-676c-7297-b73f-aa044d06fdc3",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Dionysus",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-50a9-7215-84a7-ebbe37df9a37",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior 2005",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50a7-72b2-a569-3e034960d26d",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior 2011",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50ac-708c-afaf-e59dc4435e90",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior 2020",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50ae-708c-8a0b-0f7e1d04fc99",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Cologne 2007",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50b1-7265-a1b4-8b21c19a18fd",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Cologne 2013",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50b5-71e0-9ae7-374c461a0b33",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Cologne 2022",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5084-701b-a767-9d81fe2faa57",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Dior",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50b8-7049-89ae-4f6fe2249d4a",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Eau For Men 2014",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50ba-7334-80d4-ea43b4a90ce3",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior INTENSE 2007",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5087-7244-bda7-195614643e10",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Me, Dior Me Not",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-508a-7052-b144-92029f393f09",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dior Star",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-508e-71ed-8592-143fa06c722a",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Diorama",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5095-73d3-8186-3b46991edfe1",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Diorella",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5098-7006-afbc-859383fb27c1",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Diorever",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-509b-72d1-839f-2213eaf3b634",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Diorissimo",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-509e-70f7-9826-6b755c2e02a3",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Diorling",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6f22-70fc-a06e-58ac9be04e9a",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Disco",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5519-7152-8e5b-a85f32d8f913",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Discrete Fleur",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-910d-7114-a843-5a86329938bb",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Disruptor",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-908b-737b-b165-c548405ad07e",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Distance 100",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-936e-7182-ab74-4bd2a6ccbdc7",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Distance Carbon",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6cdf-7338-a0d5-1f7ec09f97df",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Distinct",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8e2c-70cc-972a-d7afda7e8b3e",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Distinta",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-77e0-72f5-b496-c9fc4cff4ee7",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Ditsy Dogs",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c16-7175-a27f-1a2f5a2148ba",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Diva Wallet",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6f2e-70f7-b2e1-20c42e29e247",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Diva du micro",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-677c-703a-9e1e-5c87c8e58ecd",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Dive",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4948-724b-b89f-14e82cd54211",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Do Brasil",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-498b-715e-9bb2-ee2f1ecaa6e6",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Do Ré Boucles",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-71c6-7140-a363-d73ee428d7f8",
            "brand_id": "019f426a-71be-7236-924d-06e425f6b806",
            "wording": "Doctor Bag",
            "brand": {
                "id": "019f426a-71be-7236-924d-06e425f6b806",
                "wording": "Stalvey",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-718a-72b3-86d7-33fbc083d1eb",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Dolce",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8505-705d-8a3b-56a0aee85f47",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "Dolce Gusto Genio S",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-840d-7056-bfa0-d9887d545bd8",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "Dolce Gusto Infinissima KP1705",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-840b-71f0-8dc3-fc0439b90604",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "Dolce Gusto Mini Me KP120H",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-50a1-73f0-b39e-5262f29d50da",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Dolce VITA",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7c7a-733a-843f-da7fd059409f",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Dolce Vita",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7823-724b-968e-7f3417c584c4",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Dolly",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7833-7233-ad0f-40cbf5d94596",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Dolores",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6cfb-712e-8701-4a01d91ab67f",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Dome",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9152-73f0-9dba-251a666e3454",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Dominant",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6363-70db-a3a8-2a53db9353b1",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Dominicana",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7890-7214-9b84-2fd352d6304e",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Donatello",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7249-73c8-a292-a6302dd674c7",
            "brand_id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "Donna",
            "brand": {
                "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
                "wording": "Trussardi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6871-7361-bdfa-1d688436f4eb",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Donuts",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7612-726d-9bd4-823272fb5c97",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dorevia",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-53e1-70c0-9558-633ffb38125a",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dorian",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7625-7190-8499-8fb35200a4d6",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dorien",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-72cb-7335-95a3-2b59040dd8ff",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Doris",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-75f9-725b-bd5e-f194d5a1cd1f",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Dorlan",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-573c-722f-8a9f-114dc7d84d3f",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Dormeuse",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7c19-7155-922a-b46f68fb4a11",
            "brand_id": "019f426a-7c18-7265-b209-86636ee9beaf",
            "wording": "Dos Nu",
            "brand": {
                "id": "019f426a-7c18-7265-b209-86636ee9beaf",
                "wording": "Elisabetta Franchi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7e74-7322-b769-eb680db37491",
            "brand_id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
            "wording": "Dotty",
            "brand": {
                "id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
                "wording": "House of Holland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6d2c-73b9-905f-0fee066666a8",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Double",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-79de-72dd-ae3a-6afbd0eed298",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Double Breasted Coat",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4f4a-7295-9e77-ca858e691a7d",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Double Drapée",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7f91-72dc-b104-a7f24fd5765c",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Double Serum",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-691c-732b-86c8-2d06dd2ecdb4",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Double Sleeve",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cce-7272-83ed-803d4dcc4643",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Double T",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5018-70b1-9f46-28caed9eb110",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Double doigt Forever",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5014-729d-b63a-d79c260b83ee",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Double phalange Vortex",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8220-7090-ae8b-c2b2199bb52f",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Douceur Amande",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82d6-73f6-b1d1-bb0794daa0d0",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Douceur Provençale",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-51a6-717a-82fa-bef7c7cc4441",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Douceur Végétale",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8222-701f-871d-38071d8551c1",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Douceur de Vanille",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8290-70f1-b84d-6b3b6c2e3bf1",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Douceur de l'Amandie",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7135-7375-a8de-13363bad307a",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Doudounes",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5372-7241-882e-b14134a8b8aa",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dounia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8239-724a-a228-795792a4cc5e",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Doux",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-769a-71fc-89af-a191da9c088c",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Down Comforter",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9447-7138-8d87-0c2dd144b1fe",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Down Jacket Val d'Isere",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7507-7095-b2b4-1994b3169a0c",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Down Parka",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9428-7225-a3d4-f025d04fa6b4",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Down Sweater Vest",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-75b0-72ad-9776-4567a77f3d4c",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Downtown",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a23-7359-8a0e-ef337385e282",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Downtown Crossbody Tote",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-73ad-7095-8e88-baec68b544ef",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Doyen",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7fad-7265-bc3a-bea55428db44",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Dr Payot Solution",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-717f-706b-8781-b12d51f2d80b",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Dragon",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7633-716b-9e04-3bfa97671292",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Draman",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ecc-7155-9396-f98c7411918f",
            "brand_id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
            "wording": "Drapey Crepe",
            "brand": {
                "id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
                "wording": "J.Crew",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4f45-7303-99e3-a371bda0965a",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Drapée Simple",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7a90-71e3-a517-4c15f6abea44",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Drawstring Backpack",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7afc-722c-9a37-da4f5becb874",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Drawstring Bag",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7819-706f-9970-2cc533026d32",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Drawstring Bag",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75d4-7211-8cd2-466f7e709eb8",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Dream Big",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74fe-7172-900a-7bbaf4e9ccf5",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Dress",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-75a6-7274-a9b7-345796c2a559",
            "brand_id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
            "wording": "Dress",
            "brand": {
                "id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
                "wording": "By Malene Birger",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-765b-721b-9981-0ab4039c919a",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Dress Shirt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78a2-734d-a6e1-6a6ead4741e2",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Drew",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76b4-7167-9a9e-f7c951174f61",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Drift",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5b0c-715c-bceb-90ecd434b4ef",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Drigs",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-70e6-71bf-9088-4e367af4e900",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Droit et Mince",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6a2a-7118-85c1-f5603d964a18",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Drop",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8878-7051-8276-1f49547d6e83",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Drop",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5b05-713f-ba2b-f5138cc26bed",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Drop",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7bb4-73c0-aa82-58c7bcfd678f",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Drop Earrings",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-940f-7188-bb51-0782f404d207",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Dry Summit Pack HD",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88d0-7201-bc75-7d3c3f44ca83",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Dual Convection Countertop Oven",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8589-7169-8d8a-30d21a938689",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Dual Inverter Air Conditioner",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b49-72d9-b7ce-a085f1bfe80b",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Dual Power Max Carpet Cleaner",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-76b1-7068-8d3a-941d54353a59",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Dub",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-66e2-71ac-9c84-9e9bbac03e57",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Dubai",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6f31-739b-91be-4c562f72dc4f",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Dubai",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8f4c-7378-9326-22f0edc43ef1",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Duffel M Classic",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9035-71bb-9e00-45c55b518705",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Duffle Bag",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7702-7037-b082-822f3c7f96b0",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Duffle Bag",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5369-708e-860f-0ba21eed2bbf",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dulcina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53c5-7147-b62b-013d129bb0a8",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dulcini",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5357-73f6-86c5-e1c76d90a451",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Dulcy",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9029-7175-9e10-1bd772d99cf4",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Dumbbells",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8956-717b-8c16-88804bec3829",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Duo",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-674e-72aa-a479-9b4960bd8f4e",
            "brand_id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Duomètre",
            "brand": {
                "id": "019f426a-674d-7327-869f-6e3c527d4081",
                "wording": "Jaeger-LeCoultre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5a44-71b1-873c-28a550e6a3b5",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Durga",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6889-702b-9fb5-ac46affad834",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Duvet",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7698-7106-9218-8fe5a56c9228",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Duvet Cover",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9078-72a0-b9de-64d8c9407e57",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "DynamiX Bra",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f85-71c8-bab3-c195f2983449",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Dynamic Impulse",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-90f4-71f6-ae58-d4af455c332c",
            "brand_id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
            "wording": "Dynamic Series",
            "brand": {
                "id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
                "wording": "Raidlight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-484e-7186-b5dd-f3ecb723f42a",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Déclaration",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6c2d-700c-b69d-24c3787ea845",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Découpée",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6275-7028-8132-aa486d9aba18",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Découverte",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8243-718e-851b-cf8f1c973663",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Démaquillante",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-810b-711e-a73a-a1c625d14132",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Démaquillants",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6d65-73f8-a2ed-8fa54b4bf273",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Démarrer",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-63f7-725f-ae6b-5b3511aa62cd",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Déminage",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-81ad-70cc-812f-fc15cf4428b8",
            "brand_id": "019f426a-81a4-70ce-8c58-3655343fb469",
            "wording": "Déodorant Anti-Transpirant",
            "brand": {
                "id": "019f426a-81a4-70ce-8c58-3655343fb469",
                "wording": "Lierac Homme",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81ef-7295-a2aa-637fb9ff3db4",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Déodorant Roll-On",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-820c-70bd-b8be-05713fe114fe",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Déodorants",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6805-710a-b580-b144e16e1c5a",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Dépareillées",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8066-70c0-bf82-ec7b876e0bb7",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Déridium",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6399-701d-a05d-aafb3563a64d",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Désir de la Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-92ed-7352-915c-2c2dc4fe9c5f",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "E-Deemax et E-Deemax S",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-886c-71e1-8a91-e7e96d1a6eab",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "E.ion Nautilus",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7e1c-702d-b6d3-dcba1cc5f48d",
            "brand_id": "019f426a-7e1a-730a-86e3-053b3333b87e",
            "wording": "E1",
            "brand": {
                "id": "019f426a-7e1a-730a-86e3-053b3333b87e",
                "wording": "Haerfest",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e1d-71e1-a09a-ab13792e51b6",
            "brand_id": "019f426a-7e1a-730a-86e3-053b3333b87e",
            "wording": "E2",
            "brand": {
                "id": "019f426a-7e1a-730a-86e3-053b3333b87e",
                "wording": "Haerfest",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e20-7065-8981-afe4d392cd1a",
            "brand_id": "019f426a-7e1a-730a-86e3-053b3333b87e",
            "wording": "E3",
            "brand": {
                "id": "019f426a-7e1a-730a-86e3-053b3333b87e",
                "wording": "Haerfest",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e23-73e5-a2df-ee5955fbfa32",
            "brand_id": "019f426a-7e1a-730a-86e3-053b3333b87e",
            "wording": "E4",
            "brand": {
                "id": "019f426a-7e1a-730a-86e3-053b3333b87e",
                "wording": "Haerfest",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e25-72bd-8df0-563fe6533bf7",
            "brand_id": "019f426a-7e1a-730a-86e3-053b3333b87e",
            "wording": "E5",
            "brand": {
                "id": "019f426a-7e1a-730a-86e3-053b3333b87e",
                "wording": "Haerfest",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-889a-73b3-b47c-16b10280f81c",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "E6",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8894-70f3-ab8e-ca89bb574c5d",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "E8",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8503-7162-869c-091d04d5ca53",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "EA8108",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8eb9-724b-ae1d-068d14abd8bd",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "EASY BOX",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d23-70b0-bf1f-de28e322f16e",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "EC612E17X",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-840f-7062-b92e-111abafc7b16",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "ECAM 22.140.B",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8410-71b6-be4e-b2e8c4bb6c9d",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "ECAM 23.460.S",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8413-7210-9168-c17c4b5565f5",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "ECAM 350.75.S",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8f98-7226-a753-66b19b30edca",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "ECCO Exostrike",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5e66-7208-b6e1-b1961d71be7d",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "ECCOLA",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-84b0-707c-86da-1cf29d6608f0",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "ECF01",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84b1-73aa-be45-db92bad9e5ec",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "ECF01DUEU",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b3a-7110-9533-b3f3ca9f1048",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "ECTM 8145 PT",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4f50-715d-adee-9bbf4ef48722",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "EDEN Pinki",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-596a-71e3-bdba-df1bcefcd084",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "EDERN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5933-7204-b177-65f91b7fdcd6",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "EDO",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6578-70bf-8b39-c1ca2bc54464",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "EGERIE",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8b36-7075-ae94-fe32a6bbdb57",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "EKCI 8140 IN",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-49d2-71e3-8d5c-6ed86be08a72",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "ELDA",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8e9b-7309-afcc-c1ad06628071",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "ELEC100",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6412-7295-a996-5f80a1037991",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "ELEGANTE",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5946-7361-9fd3-2bbd0c066628",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ELIN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5cac-72e6-8783-3e3ea3c33dcb",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ELINE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d67-71a0-a3ae-dba909a995d3",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ELLIE MERCER",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-59ba-71e0-bb00-47ccd0077b11",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ELMON",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5930-7368-928c-cae79820f7b8",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ELVAN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e05-7056-bd83-d2776c27b9b4",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "ELVIN",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e09-70e6-92ea-d518b44a83a6",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "ELYSIA",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8b38-7271-8f39-7e48e979ecd6",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "EMPK4 7645 PT",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8898-722c-a049-fe20870257e4",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "ENA 8",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8405-70e7-b6b7-8b781ce969eb",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "EO12012.W",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e29-7116-9fcc-21b83a84ec78",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "EO241150M",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8407-7351-bc18-e0d100f98bd2",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "EO32752",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e28-704c-b2b5-09120b1f5349",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "EO32752",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8402-728e-bbd6-63f91382262f",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "EO3285",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-854d-72bb-8891-6464d6f210a4",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "EP5660C0 Forever Smooth",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6ab7-738e-9237-ae8320971f09",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "EPURE",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f97-7361-b07b-f764e669fc3a",
            "brand_id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "EQUUS",
            "brand": {
                "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
                "wording": "Pequignet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6e8c-7260-997a-cf6c9c1f2c12",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "ERA",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5caa-7363-9da7-aedd8ea0a077",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ERIN",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d4a-7056-bc42-1cccfd27f0a0",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ERNEST W BAKER",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8699-7165-8449-563b7e0bb48c",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "ES-HFD8145W3",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-62f9-7113-999d-02162b393bfd",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "ES01",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62fb-732a-b102-61d16076cbb4",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "ES02",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6343-7294-bf49-9c0d8b40baec",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "EVERGREEN",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6d83-70aa-8ccb-88f2fbd97e0b",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "EVIE À FLEURS",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-83d6-705f-bb06-f4b6a174dc89",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "EWC 71252 W FR N",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-59f4-716d-8aa6-f244e66c611e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "EWEN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8a05-720b-83bf-50ce1ac965a5",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "EXP440",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6526-72eb-a983-94db4784fabb",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "EZM 1.1",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5022-7359-8d35-75daef6d1154",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Earcuff",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-528b-72c4-be03-c0e23b12d78f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Earcuff Delos",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5288-7366-ada6-88920efc39c1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Earcuff Hesta",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4ef6-7165-895d-475ebe4ab439",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Earcuff Mirada",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5258-70b2-a396-d271a71a45e6",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Earcuff Warren",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-522b-72a3-863c-3b9b5e831b30",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Earcuff isaac",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-76fd-7049-9614-31daa9c77c70",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Earrings",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a59-7356-8ec5-4db8ad5cb02a",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Earrings",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7543-7129-8248-91c0385f306b",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Earrings",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7b47-7015-a204-e5d20286bbd2",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Earrings",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-72e6-7062-bd9d-82cbc54060a1",
            "brand_id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
            "wording": "Eartha",
            "brand": {
                "id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
                "wording": "ZAC Zac Posen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bba-73a2-9cd9-d50e86228bea",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "East Bangle Set",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ba3-7019-87b0-113b33a51ad6",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "East Clutch",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-721e-73da-bbea-798520de5709",
            "brand_id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "East West",
            "brand": {
                "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
                "wording": "Tiffany & Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6167-7170-8466-34fb4add7184",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "East- West",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6bb4-739c-989e-1362506a39de",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "East-West",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7eb9-700a-bf8c-b2c6d8eeb1d0",
            "brand_id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
            "wording": "Easy",
            "brand": {
                "id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
                "wording": "Il Bisonte",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-84ef-70a6-ad77-e617fd141b6a",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Easy Fry Precision EY401D",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84f4-7298-a802-6a1a6922475c",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Easy Grill & BBQ GC712D",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84e4-729b-a14c-e1fc89723a16",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Easy Pro",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7504-70e0-a97d-50333c3ee63d",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Easy Rider",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-86b7-72ff-928c-9ef4eee5ccfe",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "EasySpeed Plus GC2042/40",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7fa2-7055-8394-9f32fb8801a5",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Eau Dynamisante",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8006-7370-aa16-8481c38b790b",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Eau Efficace",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f40-7372-bc59-628b648598bb",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Eau Thermale Avène",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8028-727b-b8d1-65fcfa961f16",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Eau Thermale d'Uriage",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-797b-72ea-ab3c-65baae50fdd5",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Eau de Parfum",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-81ee-7154-b4df-88dc5c65c321",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Eau de Parfum Absolu Tiare",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7f83-7049-a900-978d08c5c005",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Eau de Raisin",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8090-72f6-96ae-6e5461108302",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Eau de Sourcellerie",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-797d-730d-ac35-532aeec43605",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Eau de Toilette",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6810-70d0-aa4f-1335222d8afb",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Echangiste 20",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6003-73be-9ddf-83bdb20d294f",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Echo",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-51f3-71af-be19-a2586bccf4a1",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Eclat Nature",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8871-7134-8337-34beeab02a1b",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Eclipse",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6451-7210-8925-6dc14c383273",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "Eclipse OR",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-77f4-72ec-86bb-ae9ccab2bc56",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Eco Fleece",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6699-70b0-b517-aa3713f2abd7",
            "brand_id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Eco-Drive",
            "brand": {
                "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
                "wording": "Citizen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7bde-71dd-be31-610c4b5164d6",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Eco-friendly Backpack",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bef-73f0-96cc-3cf7e80a2a1d",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Eco-friendly Tent",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8be9-703b-a2dc-7192db9fe067",
            "brand_id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
            "wording": "Ecogenic AA3400",
            "brand": {
                "id": "019f426a-8bd7-7079-b11a-8e1a7fc0acba",
                "wording": "Solac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8000-70fb-b8ae-8c25325b4e37",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Ecological Compound",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-65ef-71fd-a772-12d2cee61a7c",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Ecru",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7c5e-70b3-be17-8c5ca7d0e210",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Eden",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5e4f-731e-8840-8d0c070d33ca",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Eden",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5852-73d9-8564-b8293d9fee47",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Edgar",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6c54-7348-87cf-2770f031927d",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Edge",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c65-706e-99dc-c8294d84c6a0",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Edie",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6ec3-7215-ac69-0df29b1a3229",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Edie T",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6681-72aa-b852-1fa9e235d059",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Edifice",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-74ac-7252-951f-287e1ef6dce1",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Edith",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-52a9-72f2-a5c3-8fe581df1ed4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Edith",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5f6c-7112-81d8-f6ab5bfb70cd",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Edition Limitée",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-58cb-7140-ba93-722e2933cd7d",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Editions",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5422-7194-8466-384437689123",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Edmond",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5b88-7268-bf4f-76fcef22394d",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Edmund",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-55c5-729f-9af0-cdd4b1a04f02",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Edouard",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5873-70b9-80bd-444cd1be53a0",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Egeo",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6593-7115-8446-d5e3f864edcc",
            "brand_id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "El Primero",
            "brand": {
                "id": "019f426a-6589-721a-ac98-72c09b6dc291",
                "wording": "Zenith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7c89-73c7-a8b1-1f7d7fd5f77a",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Eleanor",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ac9-711d-9572-f6846b374104",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Eleanor",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7167-7209-886e-5903a73cd4ab",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Electra Boot Bag",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8c79-7278-89d6-4940f07da9d8",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric CP-D80DW",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c7a-7312-bed7-efd4992b6bd6",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric CP-M1A",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-85ab-722d-80ad-2e07b6cd8d3c",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Electric Dryer",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8579-71b4-853f-0494aa6f1212",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Electric Dryer",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-89d7-7225-9e6d-4ceec142268e",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Electric Kettle SK2-35G5",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89d9-73e8-8d1f-38098418b485",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Electric Kettle SK2-35G8",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89d4-7064-a17b-1673acf805b9",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Electric Kettle SK2-45R3",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c73-7038-8742-04396a53325b",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MA-NX33C",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c77-720e-8d71-9aaf008929ae",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MA-NX35C",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c75-70ed-a3e8-76cf62f81579",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MA-NX58D",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c70-71bc-9f6e-0f3df4c4e7f7",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MR-CX402",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c72-7367-bd9a-a8c9832b705a",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MR-EX655W",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c6f-720d-9375-9215c46c92ec",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MR-WX71Y",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c6d-7124-a52a-e049d2cc1371",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MSZ-FH25VE",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c6a-72b3-b0d5-104b44e8ede2",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MSZ-HR35VF",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c6c-7171-a932-46fd21b70bae",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric MSZ-LN25VG",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c7c-72e6-9181-a4043b9dc885",
            "brand_id": "019f426a-8c68-7138-885c-30b1b19fb825",
            "wording": "Electric NP-TH1",
            "brand": {
                "id": "019f426a-8c68-7138-885c-30b1b19fb825",
                "wording": "Mitsubishi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4d97-72a3-8d43-0cb8386bf908",
            "brand_id": "019f426a-4d93-727a-80b5-7dc484f67f19",
            "wording": "Electric Night",
            "brand": {
                "id": "019f426a-4d93-727a-80b5-7dc484f67f19",
                "wording": "Tomasz Donocik",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-89d1-73eb-8da6-2a79dc0a850f",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Electric Oven XYB60-3",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89cf-7262-8fcb-cc3c0e5e3df7",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Electric Oven XYB60-8A33",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89d2-7343-b448-b1057ec41537",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Electric Oven XYB60-9A3",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-75c6-73a2-b7a8-958d0f364df6",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Elegant Essentials",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7772-724d-aa28-793af42f3dab",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Elena",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6d08-7076-bfa9-e4fded993189",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Elephant",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8e32-717c-9722-900d9ae9e3c7",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Eletta",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8414-712c-9098-92cf396c2e8e",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "Eletta Cappuccino ECAM 45.760.W",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9411-71da-93f7-118abb396863",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Elevation Tote Pack",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-77c3-73e3-ab8a-ba4f4bb83a6d",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Elgin Ditsy",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-737f-72ce-a1b0-890e4025376b",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Eli Press",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8a35-73c7-b6f6-59feccc5a9f9",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Elica",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-529a-71df-afa7-85a85a521667",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Elina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-58f0-736e-8fdd-1448ea5f081c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Elio",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8c9a-725c-a879-4ab7148314d5",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 31G648",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c9d-70e0-b003-1ade1cb16b42",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 51G943",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c95-70f9-9340-1f163c101cf5",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 52EX443",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c90-71db-ad35-19d41929a666",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 55A445",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c87-71f8-8848-fb5630130899",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 55X444",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c8a-735f-b21a-5e4e071a3e83",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 55X448",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c8d-71f0-a74d-af7a0f7cd6d0",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 58G443",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c8e-702a-a31b-5c008e26847c",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 58G841",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c8b-718d-b5e6-02cf4b2a6fbf",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 60X848",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c93-70e2-89dd-ac988a076457",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 62EX447",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c92-71c9-8acb-97d15819d83d",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 62EX863",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c98-7349-8cac-c7fd132048d8",
            "brand_id": "019f426a-8c85-7162-b021-b69440357994",
            "wording": "Elio 91D544",
            "brand": {
                "id": "019f426a-8c85-7162-b021-b69440357994",
                "wording": "Elba",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-52b3-70b2-a55a-bb1b225791ca",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Elisabeth",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5457-70e9-838f-2038422445ad",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Elise",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5379-72f5-98a8-9062e1cfae47",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Elise",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-890f-7190-8b00-6643b6f6f9d9",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Elite",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-658e-728c-8a14-ba088ca6e62c",
            "brand_id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "Elite",
            "brand": {
                "id": "019f426a-6589-721a-ac98-72c09b6dc291",
                "wording": "Zenith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-94a6-7153-a2d5-542e1da120f9",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Elite Pullkick",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-804d-7060-a397-c6e512dc8107",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Elixir Jeunesse",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-828b-72e5-964a-334caedddd8b",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Elixir Précieux",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6acc-73d1-a349-a3e7217ababc",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Ella",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b88-7114-9d2a-516172b56841",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Ella",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7c2a-7077-8cb6-d5c9574bcf53",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Ella Clutch",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7cea-7064-9ec7-8aa43a01ecdc",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Ellie",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d4b-73d0-bbff-435a0c7740ab",
            "brand_id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
            "wording": "Ellington",
            "brand": {
                "id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
                "wording": "Gabriela Hearst",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5847-7093-95f4-8447b53c0407",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Ellis Flanelle",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-710b-7134-b71a-6f119f54f052",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Ellis Slide",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6dc1-73f5-8a3f-3387367064c5",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Elodie",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7c93-7178-9b2f-78439ab0ce64",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Eloise",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-90dd-7170-80f0-f09cb5418453",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "Elops",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6b79-728e-bdbe-919503f6035c",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Elsa",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7c83-738a-9be0-6b9e1f8880eb",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Elsa",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-721b-721c-bdb5-e669163b458b",
            "brand_id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "Elsa Peretti Diamonds by the Yard",
            "brand": {
                "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
                "wording": "Tiffany & Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65d4-71ec-b06c-0dc9beee33b8",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Elyane",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-53a3-721f-b38c-5f084a27e022",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Elyas",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6b77-7262-ba89-878af27cfd00",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Elyse Veuve",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8f7f-7028-81fc-bb541b75e287",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Elysia",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5faa-72b4-b7c4-f41c7efe7997",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Elysée",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5d96-7279-9e72-ac55ed8247d2",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "Emanuele Bicocchi",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-795f-725c-97cd-cb6445ade0af",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Embellished Belt",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77a1-71be-88f7-2436e1bfd842",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Embellished Clutch",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78eb-73a4-916d-016a74a6b13e",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Embellished Clutch",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78dc-73b4-88cf-ac136f2407ce",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Embellished Jacquard Dress",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7910-71f2-a7c6-c4568b7cc06d",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Embellished Mini Dress",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a8a-71e8-97b6-0d0bc373aaa5",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Embellished Pouch",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7af1-733a-80cd-ad3f7d921606",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Embellished Top",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7928-70e4-9483-4407ac7ffce9",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Embellished Wrap",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-94da-7216-b9bc-2f28a0ffab84",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Ember Mid",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-94dc-7036-947d-8ee1ab183406",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Ember Moc",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-91c1-7121-bb4c-c041c516d730",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Embiid One",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6cb4-73a0-bdd2-b456ba8cad71",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "Emblème",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-78f7-7371-93e9-cdbe8a51c3cd",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Embossed Leather Belt",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7904-728a-88f9-53f87527a9d3",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Embossed Leather Slides",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7923-713a-a553-9a7c341e0682",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Embossed Leather Tote",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7937-73d7-a4dc-f287287317b3",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Embossed Leather Trainers",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6792-7107-b0a2-7b996baa89a0",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Embossé",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7050-71eb-8958-3152ac5b3267",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Embossée Palmette",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7814-71d0-9f8e-37118e8303f9",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Embroidered Logo",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78b6-7378-99ce-9d23fc403100",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Embroidered Top",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b92-737e-ba25-8c13f71a91ed",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Embroidered Tunic",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78e1-709c-94be-e850115b6838",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Embroidered Velvet Jacket",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5315-72aa-94d4-b54910deacc2",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Emeline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4e3f-7243-a94e-8324e6d974b7",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Emerald",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5b32-73f5-9544-da67cb4ca3d4",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Emerson",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4eef-7033-9d1c-aac2aabafe24",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Emile",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-720e-73dc-97e8-08cf3ac9aae1",
            "brand_id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
            "wording": "Emily",
            "brand": {
                "id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
                "wording": "The Kooples",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7744-7336-97dc-de5f629175f3",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Emily",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5ba2-7063-bcf4-e63a087a5b5a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Emily",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9017-7113-b9c0-638af3f56ac2",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Emma",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-54fe-7197-b9ff-466364840949",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Emma",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7752-70a5-80a7-0d8d560b7b2b",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Emma",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4de7-7330-b586-345be25aee82",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Emmanuelle",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5e50-73ba-8a26-07f5fad5d84b",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Emotion Coussin",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e52-7290-9ade-52bf2c0d54a5",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Emotion Poire",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e54-704b-a0c4-801e12d593af",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Emoton Ronde",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4aa0-710d-b9ed-11bc9aef13dd",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Empierrées",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-66e6-7151-a334-2b17261acf19",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Empire",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5675-70cb-bb89-8c21712cde83",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Empreinte",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4994-70ae-87e8-64cb57fb704f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "En Désordre Finesse",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7d99-72dc-836d-30077e612803",
            "brand_id": "019f426a-7d96-72f2-910b-87836a11bb0d",
            "wording": "En cuir",
            "brand": {
                "id": "019f426a-7d96-72f2-910b-87836a11bb0d",
                "wording": "Ghibli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-71fd-7280-9f01-b5b7a87f1f00",
            "brand_id": "019f426a-71f6-7180-8307-8076065c7342",
            "wording": "En cuir Perforé",
            "brand": {
                "id": "019f426a-71f6-7180-8307-8076065c7342",
                "wording": "The Cambridge Satchel Company",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7208-731a-9f78-2e28201df7c7",
            "brand_id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
            "wording": "En dentelle",
            "brand": {
                "id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
                "wording": "The Kooples",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4eff-7200-bf9b-f736855f163b",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Encanto",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-90b1-71be-adb8-f29cf783daee",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Encas Protéinés",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-834e-7248-9019-aa0474ff6e2f",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Encastrables",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-835e-70f3-9232-989fac5566f8",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Encastrables",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8333-7010-a1c6-16c12c673051",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Enceintes Bluetooth",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-75e7-71c2-b873-2bd66f5a966b",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Enchantment",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-659f-73a6-8756-3eae5b5fa186",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Encre",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-948f-7194-b6db-8d96cb7485a7",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Endurance+",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-932b-7088-a718-7e039d916610",
            "brand_id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "Energy Accumulator",
            "brand": {
                "id": "019f426a-9329-7339-9d07-2b866765b6d6",
                "wording": "X-Bionic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9047-7167-b2bc-acf0588af9ab",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Energy Drink Citron",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-90c0-71f8-a325-57845c888e12",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Enfants",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5146-7158-abc0-add566b765af",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Enfold Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-9418-727a-a45f-48fb1b82dff5",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Enigma Half Zip",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6fb8-7243-9735-7cd1fe4497f7",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Ensemble jupe et veste",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fbb-73fa-9c4c-3091d15c3e26",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Ensemble pantalon et veste",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ead-727b-9218-2f1275e8dc6f",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Ensembles coordonnés",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-90c9-72a0-b18f-e73c060165f7",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Ensembles d'Entraînement",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-71cb-7132-af71-0b5439ac5844",
            "brand_id": "019f426a-71be-7236-924d-06e425f6b806",
            "wording": "Envelope",
            "brand": {
                "id": "019f426a-71be-7236-924d-06e425f6b806",
                "wording": "Stalvey",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a81-70dd-9a22-3e4a983394ed",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Envelope Wallet",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c62-71a2-813c-053901ae244a",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Envol",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5fee-70c2-8f9e-f184308b4b90",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Eolia",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-75ed-7267-aadb-a2755b3419f7",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Eowendan",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6789-72da-9e5e-ef709708574d",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Epaisse",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-716e-7016-81fb-506ace0311e8",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "Epaule Hana",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-716f-7274-a921-39ea7a7d99a4",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "Epaule Joan",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4faf-73ee-bea2-fe2b4213c908",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Epis de Blé",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4d88-705a-863f-764937c536fd",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Epsilon",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63ed-710d-a9c5-5e73ffe1960c",
            "brand_id": "019f426a-63e8-73d1-9810-140a85db596d",
            "wording": "Epurato",
            "brand": {
                "id": "019f426a-63e8-73d1-9810-140a85db596d",
                "wording": "Anonimo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4867-71b9-9bfc-136d72de0144",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Epure",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-84ff-725e-beb8-73f38a7fc31e",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Equinox 2 CM300811",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4d70-7169-b880-85b377827a8a",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Equinoxe",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6101-7232-b2c3-519ddaeddbf9",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Escadron",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7c75-722f-ada6-5890d3996ddd",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Escale",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7333-7391-8d1c-b86ba846ceea",
            "brand_id": "019f426a-732b-7122-9a70-9e68239375f1",
            "wording": "Escarpins",
            "brand": {
                "id": "019f426a-732b-7122-9a70-9e68239375f1",
                "wording": "Alba Moda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6366-737f-a48e-f84c7bd15b4f",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Escurio",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-65f9-7173-bb88-cb2a7e1f8732",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Escuyer",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-581d-72a8-af20-2d097b241482",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Esher",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-62a2-7399-a6aa-3e437ef9a33e",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Espace UN",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-66f4-71ea-b71d-80d892042b2b",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Espadrille",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7ff4-7106-b288-c3fe4bcd0894",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Essence Merveilleuse",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cd3-7025-b8d0-519749721b90",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Essential",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ae6-72d9-960e-2d7b49df7120",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Essential",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5fa8-703e-9517-88fe2bcceb34",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Essential",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7ca9-7392-9a32-212a00c10b10",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Essential",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-62df-702b-9e77-6c6dcc0923d8",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "Essential 2",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9225-70b8-be78-4b404b3bb01a",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Essentials",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6e83-72fb-ad88-ad8b7995161a",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "Essentiel",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ce1-705f-be88-082d4c09bce3",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Essentiel",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6809-70e5-98ed-b0ce5cb77800",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Essentiel",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-82a9-7390-b09d-94db7956b4a6",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Essentielles",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6b51-7288-bed4-22f8a977e1a2",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Est-Ouest",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-74b8-7003-9d49-9c37308546fd",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Esther",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5ed5-73ab-bf57-a545ea583f06",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Eternelle",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5efe-70a6-8a8b-30b6294d6da9",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Eternelle N5",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-768e-702d-a9e3-3273310b1bbf",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Eternity for Men",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-582f-7031-a116-dc6abab88f47",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Ethan",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6afa-7142-bfed-d3626b18615c",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Ethan",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-614d-7281-9a5a-f1a259e86186",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Ethno",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-53c1-7041-8bfe-02489f52c720",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Etienne",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-48c2-7151-8c59-222ce39788dd",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Etoile Divine",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4bd7-727d-8de8-ed7fb9da457a",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Etoile Filante",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5ee6-7399-9a05-0f4bcda96aa8",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Etoile Filante",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e4b-734e-b50e-6ade479f2a1a",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Etoile de Mer",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-62a5-72c1-85aa-189ae1c637f3",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Etoile de Minuit",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-49b0-731b-80fa-d3a8490b3af6",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Etriers",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4be1-7346-b1aa-ca077ac894d1",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Etui de Voyage",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-55ff-73b7-9e5c-b06799c090b4",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Eugene",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7693-7327-b322-0069284d6b2c",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Euphoria",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8d98-705f-adbc-27d88c461e9d",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Eva",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7c96-73b4-8407-622bd6b80748",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Eva",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7750-714e-9a4d-b7dbe4656416",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Eva",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8346-7332-9d19-36fce84e2c4f",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Evacuation",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-90ee-729d-8fb4-9fd5ef29d574",
            "brand_id": "019f426a-90e7-73eb-a977-8898ad949ebf",
            "wording": "Evadict",
            "brand": {
                "id": "019f426a-90e7-73eb-a977-8898ad949ebf",
                "wording": "Kalenji",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5ef5-7375-a596-6bbe74b7b17d",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Evanescent",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-70ea-7078-8b57-1bfa22dec473",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Evasé",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b64-71ec-bda7-2d968a81ca77",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Evasé",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-733b-7208-b5f4-956e87a62482",
            "brand_id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Evasé",
            "brand": {
                "id": "019f426a-7337-711a-958e-920485f14fc0",
                "wording": "Alberta Ferretti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-54cc-71dd-9cd2-335fe2ede874",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Eve",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7c22-7175-8d7d-dd36743efed2",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Evelyn Sequin Dress",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-76e1-71aa-84a2-b0adfed5f60a",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Evening Bag",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7595-71b1-badd-a8fa0bd732dd",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Evening Bag",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8e43-7028-ab40-6df8450f341e",
            "brand_id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
            "wording": "Event",
            "brand": {
                "id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
                "wording": "Airstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-65c0-7023-8659-2d08556c07c9",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Everest",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-927b-70f0-bdd8-9d32d26c6ee8",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Everest Summit GTX",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ca3-7352-85b5-a02c096967ea",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Everyday",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5fbc-735b-b1e9-0278d17fcab4",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Evidence",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9555-7094-b312-95e7de873643",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Evo QX2 Head",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9270-705f-b06e-2594541aa836",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Evoke Hoodie",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a52-7320-85c8-e4d18755c1c1",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "Evolution 100",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b80-727e-85ed-65b9c09a4c69",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Evolution 2",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a4f-7053-8fb7-c199b0c83e02",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "Evolution 200",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-956f-716a-9183-770109a8b655",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Evolution Game Basketball",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5454-736a-8d83-919a8f7f051b",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Ewan",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-554a-70b0-b1a0-b04bf956f239",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Ewandé",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6508-7214-bc67-82ef764cf074",
            "brand_id": "019f426a-6507-71a0-a295-a0709a7fe38d",
            "wording": "Excalibur",
            "brand": {
                "id": "019f426a-6507-71a0-a295-a0709a7fe38d",
                "wording": "Roger Dubuis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-650a-7232-aae7-0643f59602db",
            "brand_id": "019f426a-6507-71a0-a295-a0709a7fe38d",
            "wording": "Excalibur Spider",
            "brand": {
                "id": "019f426a-6507-71a0-a295-a0709a7fe38d",
                "wording": "Roger Dubuis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6609-73b1-b737-192bd2965d76",
            "brand_id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "Excellence",
            "brand": {
                "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
                "wording": "Louis Erard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-660d-72ca-8422-f109f94991c8",
            "brand_id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "Excellence Requlator",
            "brand": {
                "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
                "wording": "Louis Erard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6514-71f0-9214-4c079e2c81a1",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Exceptions",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7ede-7139-8677-4000393ed7cb",
            "brand_id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Exolight",
            "brand": {
                "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
                "wording": "Jack Wolfskin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-68ae-7273-993e-3be521e90a56",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Exotiques",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7155-7310-b646-9a719a7bee4d",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Experience 88 TI",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8191-7147-bb0a-c2dd5155455e",
            "brand_id": "019f426a-8189-7363-93e6-15e1783a6be6",
            "wording": "Expert Peau Sensible & Sèche",
            "brand": {
                "id": "019f426a-8189-7363-93e6-15e1783a6be6",
                "wording": "Mixa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6628-73e1-98de-fa13f5475aae",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Explorer",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-84fa-71b2-9129-348963c6b7e0",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Express Easy Control GV7556",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8a14-7317-ad88-df72d5d7c464",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "Expresso Full Automatic",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7f95-7030-ae78-a52c76cb8dd0",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Extra-Firming",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5f92-7182-a366-571be4ac781c",
            "brand_id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "Extreme 300",
            "brand": {
                "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
                "wording": "Pequignet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7845-73b5-ba5e-742727478a6a",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Eye",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-54dc-7161-8e99-720af5c189bb",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Eye",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7858-7057-bd40-17b381dd7a18",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Eye Cat-Eye",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-784e-7342-adb6-a6de884fe95e",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Eye Clutch",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-785f-730f-ae3a-c7b696d7e3ff",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Eye Embroidered",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-81de-72d6-a2f2-7443897c6bde",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Eye Love",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-800d-721d-88f0-6b1d6492182c",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Eye Therapy Patch",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7973-7053-a53b-d76e007ca050",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Eyeshadow Palette",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-49f1-7029-8999-b9c720d8ff18",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Eze",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9394-72ee-973e-649423eb0d4f",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "F-135",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a63-72f0-8bc3-15c38d546ba9",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "F-201R",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a61-7325-849e-1df1f71c6d2e",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "F-601R",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89ca-7196-9a6b-84ed3e0c8f70",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "F13",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8509-7106-9383-95aa2cffd1c6",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "F203",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-89cc-7110-b69c-ede501c5102f",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "F24",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89cd-7119-bf06-b25f04bb9602",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "F24S",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8fcd-71d3-8bbb-d44291266733",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "F500",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fd6-71c1-b39e-3f568ac05f5b",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "F500 Shorts",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8a5f-73fa-b4c1-de3aba1a4e63",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "F701R",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8fca-70db-890e-e593e5f5b85e",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "F900",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-83c0-7088-8806-5f1de6c6914b",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "FA4S 840 P IX HA",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83c2-7361-9afd-b984cd5d1226",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "FA4S 841 JH IX HA",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83be-7098-99e2-64a38a243f7b",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "FA4S 841 P IX HA",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-848f-70f2-8481-091584b65174",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "FAB32",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8492-7046-b1f3-b930c64eaa63",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "FAB50",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6388-7359-bd52-10740144424e",
            "brand_id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
            "wording": "FAUBOURG DE CRACOVIE",
            "brand": {
                "id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
                "wording": "Czapek & Cie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c49-73eb-b7b4-dfd63877191c",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "FC 356",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c46-7334-957c-646c04d86265",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "FC 378",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c45-7001-a015-07ed619c3558",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "FC 677",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e66-738a-b6ea-451547894e5c",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "FC140",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d50-737a-a8c6-b7f9b7900e28",
            "brand_id": "019f426a-8d4b-70b4-9837-86138eab5405",
            "wording": "FC150",
            "brand": {
                "id": "019f426a-8d4b-70b4-9837-86138eab5405",
                "wording": "Simeo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e5d-71d8-a3a8-04d6d9b6b8b2",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "FC170",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e8e-70b2-847b-6a0733403962",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "FD680",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8cdc-731a-87fb-645091fd7e2c",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "FDV-4642",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-879a-7185-ab3e-653dd4cab8cb",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FE-8312",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d7e-7380-a478-a4fa2fb6a162",
            "brand_id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
            "wording": "FE4400W",
            "brand": {
                "id": "019f426a-8d74-73d6-8c54-ccce0b5c04a6",
                "wording": "Arthur Martin Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8844-73ec-af37-c6f84473a6ed",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "FE6222G",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8842-726b-80f4-2a818b1ca83e",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "FE6421G",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8981-72a9-b9af-57ef5219d7a4",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "FE6430",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8846-7067-bc8e-eedb788c1df8",
            "brand_id": "019f426a-8841-7087-8adf-6722dad5bc65",
            "wording": "FE6821G",
            "brand": {
                "id": "019f426a-8841-7087-8adf-6722dad5bc65",
                "wording": "Arthur Martin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5de7-7033-b7cf-48fb04f5e5c3",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "FELICIA",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d9b-73e3-8d77-12def6607016",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "FELICITY",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5d9f-71be-9883-31fe807f7897",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "FERRAGAMO",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-879c-7081-bc36-cbf01ccc13fc",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FF-7010",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8484-70b2-a710-2533c344ea12",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "FFE83707PM",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87a6-70c9-8342-02c2a3360223",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FFJ-7914",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87a5-720d-ae29-b890fbd6fae6",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FG-7712",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-84df-739b-b93d-b54e5b9203b6",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "FG360",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87a8-70ff-85aa-360b67ad443e",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FGN-230",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-657a-73f4-8c95-bb86c85cf071",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "FIFTYSIX",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4d8f-7221-b5e6-6150aaac2b19",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "FIL",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4916-70c7-a76d-5c9710059439",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "FILLES ANTIK",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8987-7220-9e38-ac60eea4f41a",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "FIV1240",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8984-7302-9cc0-8a0760acb7be",
            "brand_id": "019f426a-8980-737f-b325-f629a1038623",
            "wording": "FIV5140",
            "brand": {
                "id": "019f426a-8980-737f-b325-f629a1038623",
                "wording": "Airlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-59ea-715c-869b-fedb8f7f820d",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "FLETCHER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5ce5-715d-bd78-efbac91b3bef",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "FLORIE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-491b-7256-8b38-587c816bd1e6",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "FLOWER",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-595b-71b5-a2ba-5ad9f22b57b7",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "FLYNN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8bad-7025-aeab-e6c2044b6fde",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "FO30",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a0d-729f-91e6-c60c9ea83e7c",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "FO42",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bab-7350-b2e1-7a0935e41e08",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "FO42",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6479-701e-a5f5-568d2d654c3a",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "FOCEA Comfort 6 Cagoule",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8923-70cc-bc8f-621a9b6666f4",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "FP1470W",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84c0-70a8-925b-dddc5222aeac",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "FP545810 Masterchef 5000",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8922-72d7-909f-d2f317a4cd4e",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "FP612W",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8934-733f-aaba-4debb32de12f",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "FP812WE",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8927-7330-8975-0ad914a2cca4",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "FP891W",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8494-7181-938e-4d46ecdde63f",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "FQ60XP",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7cd6-73ea-8d00-b2144b5ba323",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "FR Trail",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6512-712f-a269-82a90c5fddd5",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "FREEDOM",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-87a3-7199-bcd3-1041d8b65a00",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FS-1312",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87a0-70ac-825e-6780136da3c3",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FS-6212",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-879e-7245-b8d4-9464d0811d5f",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "FSE-8212",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-861a-727c-94b2-e7dc6c1c7245",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "FSE58300DCS",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8480-7254-9e4a-efeb26b033dc",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "FSE73707P",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8482-712b-8907-fe74c932de64",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "FSK93807P",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6041-7217-98e8-cf5651fa1e54",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "FULL Lum",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6117-7238-977a-da4291036b1e",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "FURTIVE",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-87c9-7314-b550-a79a46e2bdde",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "FV105D4BW21",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-850f-7297-9089-87b3dd21328f",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "FV2640",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87cb-7314-a3bf-1d9e38a0b7bf",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "FV306N4BC21",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87cc-72bb-b891-02b674139aea",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "FV306N4CC21",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d5c-72f9-8f38-c305a018f60f",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "FV380",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84c8-7072-accc-e90a95af99aa",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "FV4980C0 Fer à Repasser Ultimate Pure",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-851f-73be-a8e3-16dd82d8a304",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "FV5648 Turbo Pro",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8545-70f1-bb4b-cefa760fba0e",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "FV9710C0 Ultimate Pure",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-910e-736d-bd49-cb188cf7b9ce",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "FXVentuno L",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6fea-7016-8637-c01fbf7ffd44",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Face",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7979-723a-9f4e-de8e5f907847",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Face Mask",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79c2-7262-b011-eabb14fc9244",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Facet 45 OutDry",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-56fd-7146-ba85-475d1b2e96e8",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Facettée",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-57b3-70c1-877e-207b00c84b4b",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Facettée de spinelle",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-84d5-7228-9998-849bfa94004b",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Faciclic",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-57dd-72ce-accf-56f5c9111cd7",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Facon",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-79c6-705b-aa02-d8be2acc0253",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Fairbanks Omni-Heat",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4f38-735e-b37c-f175d7adfca3",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Falla",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7064-72fb-8837-3fc404bc8e7e",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Fame Fleuri Rose",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-85a2-70b5-834c-eaa358393b0c",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Family Hub",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9443-729a-bc04-642a0b805fb8",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Fanes Sarner Down Hybrid Jacket",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-73a8-7114-a41c-829c57ec4bf5",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Fannie",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7070-7384-b582-39f4623811dd",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Fantome",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-54ac-70fd-b57a-cf2612a8c701",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Farah",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5d94-71a4-ae90-9f500830b022",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "Faris",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d54-70ce-9f79-5a7288311cb5",
            "brand_id": "019f426a-7d4e-734c-804a-09dc46656020",
            "wording": "Fashion",
            "brand": {
                "id": "019f426a-7d4e-734c-804a-09dc46656020",
                "wording": "Gabor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7980-72d7-b47e-a33e0d1fedd3",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Fashion Coffee Table Books",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-75d3-72ea-b5cb-03d397b6a639",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Fashion Icon",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75ae-7169-ab34-7beac0c5a88f",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Fashionista",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9495-7387-8759-860951596227",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Fastskin Cap",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9491-7311-96df-21baf5f541f4",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Fastskin Elite",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-528e-733e-a78e-2b65bf3fd6d2",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Faustine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-75ef-715a-aa7c-e41abf1395ca",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Favreria",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78a0-72dd-bd7d-6d9fe4c82ca8",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Faye",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-93e5-70d8-bca9-d7379fa10f63",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Featherlite Down Jacket",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7baa-72e3-8631-494d9f1e2320",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Fedora",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b8a-724c-94c6-374fa643b1a1",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Fedora Hat",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4888-7267-97e8-a88945e20c29",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Feerie",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7c0c-7354-9364-08c4dbc37331",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Felina Tote",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7839-73a5-9274-8e0f36e1f6f2",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Feline",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8963-708d-9e5b-b8c31a349b87",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Felix 1 Premium",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8960-7093-b232-05250e89179b",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Felix 2 Premium",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-895e-720a-a0bd-b0a521d410d5",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "Felix 4 Kombi",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-55bd-703b-8e1c-4e0c05879515",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Fella",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6a8f-72c1-9054-09c5f7144a17",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Fendue",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9312-73da-89d7-aa7deb93ebac",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Fenix 7",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5432-7368-91b0-767e24d72f8f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ferdinand",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-636d-7308-9a78-4d3874a49abd",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Ferio Tego",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-55e8-7332-a54a-d2d2e757d308",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Fernand",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6fde-722f-b45d-2a610e52c1e3",
            "brand_id": "019f426a-6fd7-7343-aa43-93e749c237d8",
            "wording": "Fernweh",
            "brand": {
                "id": "019f426a-6fd7-7343-aa43-93e749c237d8",
                "wording": "Manu Atelier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-940b-7083-aaf9-a0b1a5fc15f0",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Ferrosi Pants",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9087-723e-bf46-35746537ba2c",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Fers",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-833f-7085-b289-3695077c661e",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Fers à Repasser",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8307-71d4-81d3-bdd5f3a43b48",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Fers à Repasser",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-705b-714e-a637-2a35c55cc521",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Feryel",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d1d-73a9-9f68-084949b747cd",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Fetes",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6867-722f-b69f-e534b229e7c7",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Fez",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6baf-716e-a267-2ea066f8480c",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Fiamma (M)",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bb1-73bc-92e8-d2fa20d1256d",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Fiamma (S)",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-65c6-734a-a642-cb513975aa39",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Field",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-49b9-72a8-87d7-a159c6bec036",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Figure",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-49b4-72a1-98f7-2e748977782e",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Figure Artistique",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4991-728e-b6c6-521c34443996",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Figure Artistique Corde",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7c43-7060-94da-b3494ba94e5f",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Filippo",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-739d-7305-bc72-270c345af8de",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Filis",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-84f1-7255-a430-b803be3dc73a",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Filtra Pro Inox & Design FR511170",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6a25-7078-893e-b4d9523350e0",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Fin",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5008-70ff-b4a9-f1df9c623eb0",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Fine Pop Stripes",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7d0b-71c9-a29c-ad9d42197270",
            "brand_id": "019f426a-7d05-718c-835c-0f04779e2708",
            "wording": "Finley",
            "brand": {
                "id": "019f426a-7d05-718c-835c-0f04779e2708",
                "wording": "Fiorelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5b6e-709d-9ad3-da727089186a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Finn",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d1b-734c-ba97-b8acbe4391ec",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Fino",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-739f-701c-b83a-690d1c0b3f9c",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Fiona",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-66ba-72d3-bb13-5b84c727bbba",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Fiona",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7bff-71ec-b32d-b5d4512f77f6",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Fiona Bag",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-69f9-7270-a11b-0e3631accc07",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Fireman",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7e98-7037-86f3-252050985923",
            "brand_id": "019f426a-7e97-71ca-844a-c96cb50c0617",
            "wording": "Firenze",
            "brand": {
                "id": "019f426a-7e97-71ca-844a-c96cb50c0617",
                "wording": "I Medici",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7866-71d6-98fa-66636fc213bc",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Firenze",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6899-7313-92a4-ea2fe6c49d2a",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "First",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-49cb-70aa-a756-8f8c41bc28ec",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "First",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4885-7305-842f-4feeebada90a",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "First",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-61f4-7176-aa12-91ec24ee67fe",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "First Night",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7ac3-7136-aa3d-6b654370c7f6",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Fit and Flare Dress",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8ee7-7223-ba36-32361a492f75",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "Fitness",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-902e-72b0-86e5-ea2b6a38f724",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Fitness Mat",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92a2-7124-a561-4be171be55c5",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Fitz Roy III JKT",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-671d-72c0-8880-d96912f21b67",
            "brand_id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "Flagship",
            "brand": {
                "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
                "wording": "Longines",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6c2b-716f-8044-25d3127dc236",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Flamenco",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ed5-72d2-a019-a7c162112f24",
            "brand_id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Flannel",
            "brand": {
                "id": "019f426a-7ecf-7389-8f01-6e4933499394",
                "wording": "Jack Wills",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7b32-7055-b126-3623fd08d6de",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Flat Sandals",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6922-71e5-b7b2-600e44e22773",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Flat Seamless",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5c22-7188-b63f-581f6a311998",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Flatbush",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7bfd-7069-b362-8a563743a3f2",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Flavia Clutch",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-52fd-730c-ab39-5c0dda7af3ba",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Flavie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9167-70e4-aea2-1a3bf1113e12",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Fleece",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-944d-72d8-974d-7251f521f583",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Fleece Vest Trentino",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6acd-73f1-a1c3-5ca7bef80e84",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Fleming",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5e12-7008-8e53-c86a3aaf7971",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Fleur",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4d52-73f3-93e7-abb558e24a0e",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Fleur",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5440-7277-910f-cca49ac5ef48",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Fleur",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7fe5-73bb-a4be-da9878723e54",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Fleur de Figuier",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-57a7-708d-84fa-4dfef996599a",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Fleur de barcelone",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4bbd-73a6-8a28-5c28dcb72fea",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Fleur du Désert",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5fd3-73ab-a8c3-c6f7ab8e761c",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Fleuret",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-48a0-7163-ac83-c060949a5de0",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Fleurette",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-687d-73a0-bb39-f8b8ede2448c",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Fleuri",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7096-71bc-84c8-d5b14872c448",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Fleurie",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7dc5-71ba-9b1d-3b4eaf96ed02",
            "brand_id": "019f426a-7dc3-7321-bc6a-60d33157644d",
            "wording": "Fleurs",
            "brand": {
                "id": "019f426a-7dc3-7321-bc6a-60d33157644d",
                "wording": "Glamorous",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-547f-705f-89ef-f8478ff8629e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Fleurs",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5b00-7387-97a5-3885b4e37093",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Fleurs",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8282-7213-9d95-1f8e602fed7e",
            "brand_id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Fleurs de Bali",
            "brand": {
                "id": "019f426a-827a-734d-be46-40c77ace37a5",
                "wording": "Pura Bali",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82e4-73a7-b465-76d310a536a3",
            "brand_id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Fleurs de Soin",
            "brand": {
                "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
                "wording": "Elixir & Co",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5c66-710b-8910-66d974665cdc",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Fleurs sauvages",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8e3c-7277-ae99-65ffe5ab2c9a",
            "brand_id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
            "wording": "Flex",
            "brand": {
                "id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
                "wording": "Airstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-85aa-7352-a21d-e74980f815a9",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "FlexWash",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-91e6-7167-9492-ea593962bb5d",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Flexagon",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6eba-7047-a416-77ce2a4fa3eb",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Flexi skirt",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-92b3-71c9-af3e-931f78128e15",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Flight Vectiv",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8870-7090-ad64-b3a342dd1e92",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Flipper",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7840-72ba-893d-5d3b9e03d499",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-784b-73de-a264-725178408438",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting Backpack",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7862-7105-8828-ac35a4d8a3a0",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting Dress",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-784d-7364-95f8-3d215d65f867",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting Shoulder Bag",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7855-70ac-b673-b44995709963",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting Sunglasses",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-785a-711c-addc-7002935f004f",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting Tee",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7850-7191-9b40-f1133edb1da6",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Flirting Wallet",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91dd-7271-8da7-8a69845b75e6",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Floatride Energy",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-85b3-71ac-9d2c-0ca36b99d34d",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Floor-Standing Air Conditioner",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9028-7384-89db-37f9da963f14",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Flora",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6776-73da-82db-b2afd9419626",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Flora",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5303-7231-b7f1-c13194aca409",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Flora",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5e4a-70c2-90f0-9a3df7ac8654",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Flora Lotus",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e55-72ef-8ced-07d55fe7ad32",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Flora Pensée",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7d72-7104-85db-732398eeb7cb",
            "brand_id": "019f426a-7d70-7140-8e84-7122a6b6e1d3",
            "wording": "Floral",
            "brand": {
                "id": "019f426a-7d70-7140-8e84-7122a6b6e1d3",
                "wording": "Genny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7c1d-72b9-a0a3-929fefd8cca9",
            "brand_id": "019f426a-7c18-7265-b209-86636ee9beaf",
            "wording": "Floral",
            "brand": {
                "id": "019f426a-7c18-7265-b209-86636ee9beaf",
                "wording": "Elisabetta Franchi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ffa-705e-b9c6-c82e4186816f",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Floral Eau de Parfum",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-77d7-701c-b987-403d6efbaac8",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Floral Jacquard",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b8e-728f-bf7a-a8e1a9d4ac60",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Floral Maxi Dress",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ae3-72e8-8e56-c971ca63d369",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Floral Print Dress",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b14-727d-b59e-e285e1ed679b",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Floral Print Scarf",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5dc6-70fb-a6f5-a6d3d99e6638",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Flore",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7c91-73f5-851d-a1ea83b8aa64",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Florence",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7765-70e1-800f-9e280b2b894b",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Florence",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6c0c-71b1-a8f9-89b49b2e1885",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Florence",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7872-72a0-90b0-3089c607ee40",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Florence",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7893-701d-b889-25fcb3def64f",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Florentine",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7094-70a4-97b3-77e9389170d0",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Floret",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-53e4-722d-8689-bb307af9f6d8",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Floriane",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7cca-70da-a753-9636a401d217",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Flow",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d13-719b-b333-e2dd0ba19675",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Flower",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5bbf-720b-a2f4-b555129fc583",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Flower x Louis Louise",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-807e-71ea-99ec-e4a0b1481689",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Fluide de Beauté 14",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5c60-72a2-b11e-e19ed0e8cf14",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Flèche",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4ac9-728e-aaa4-9d1d951fe6f2",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Flûtes à Champagne Mille Nuits",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-9507-720f-a285-f37d9113ef9e",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Folding Gas Stove",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-77a6-7038-b70c-1cb96fb4e0a9",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Foldover",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a86-71fd-a79b-cd2e92a35851",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Foldover Clutch",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7725-73fa-bff2-16b4636c7025",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Folk",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4ec8-7018-b7fb-658dcac87998",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Foloi",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8a2e-710c-af6b-c3db5fcb1bae",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Fonda",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-80d3-7257-a93a-ef3e3b08cac0",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Fonds de Teint",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9409-70bd-9459-f5b0710a02bd",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Foray Jacket",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-48e3-72c0-9c37-81de591a6017",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Force 10",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-82a4-71d3-aa14-9504251741bc",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Force et Vitalité",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8ef4-73b7-b1fe-859a5c277059",
            "brand_id": "019f426a-8eed-7332-983d-520b0da44271",
            "wording": "Forclaz",
            "brand": {
                "id": "019f426a-8eed-7332-983d-520b0da44271",
                "wording": "Quechua",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9313-7319-a10d-6d86e2f397e0",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Forerunner 255",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-930e-7334-b8b5-35fb6117ff8e",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Forerunner 745",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-77ca-724f-a603-3b1369289805",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Forest Bunch",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6183-71cb-8541-6eedc2546c64",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Forever",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-500c-734c-868f-a0a6ed2f9fb6",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Forever",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4ffa-701c-81e0-ce750437dc3d",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Forever 7",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-91df-73e1-94c9-71a945099b57",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Forever Floatride",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91cb-7089-8b45-c9f16902c8d9",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Forge 96",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-61f7-72cb-9344-230b42d3c9d6",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Forget Me Knot",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-510b-700b-9eb8-550738c2ae11",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50d1-71bb-b2bc-ba060e14f42f",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 01",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50c5-72db-a74e-b48b28749e52",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 02",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50cb-7232-9bc1-82d12c598846",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 03",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50cf-72b0-b7d2-ef20ab243faa",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 04",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50c8-70e2-9633-035c5b97b8da",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 05",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50d3-70d3-94b4-702adab93656",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 06",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50c1-700f-9518-f430d2afc9f5",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 07",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50cd-7213-89fd-87eb3f0ea972",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 08",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50bf-70d0-954d-d250a96f1c2f",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma 09",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50db-7037-b3cb-ea4518587f4f",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma Earring 01",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50dd-7186-a81e-fb48526e4c49",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma Earring 05 Silver",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50e0-71fb-93e5-c7d8b0ffee27",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma Earring 06 Silver",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50d9-70a8-8e65-88d8a68e0e36",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Forma Earring 09",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-76ad-70af-9b5e-0854ec6c1ad3",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Formal",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-655c-7209-a195-284189b86250",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Formula 1",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-808a-7375-b4b1-1a36acc3082b",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Formules Ensorcelantes Anti-Peau de Croco",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6bf8-703a-85a5-0a671c803eff",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Forte",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9223-725c-9441-82e0d0d4f1b1",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Fortitech",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6c59-7178-84ff-0c7a9c2df731",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Fortune city",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7cbf-73cf-affb-7647210b676b",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Forward",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5b4f-73b4-8801-eb1dd9a6eb28",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Foster",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7974-7315-88e8-38048e0573be",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Foundation",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8b8a-7081-b3b1-41d4c4a17c86",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Four Multifonction",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b8d-7070-bef1-4e5a7ee34d0c",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Four à Pizza",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4a05-71e1-bde7-e41723a60572",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Fourbi",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6d57-731a-a8a6-4166fd609314",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Fourre-Tout",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b80-70c8-853d-193d4b056c62",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Fourre-Tout",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c82-72a9-bbc7-3a4f64c554c2",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Fourre-tout",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7489-72db-a03f-08f2bc625d4a",
            "brand_id": "019f426a-7487-73c5-a937-82a7cfd87012",
            "wording": "Fourreau",
            "brand": {
                "id": "019f426a-7487-73c5-a937-82a7cfd87012",
                "wording": "BCBGeneration",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8353-7022-abdc-c54e1e4404cf",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Fours",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-830e-700b-915d-2476fb4e052c",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Fours",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-836c-7041-bd81-6696562c1a5b",
            "brand_id": "019f426a-8367-715e-aa0e-0097f389b4a4",
            "wording": "Fours",
            "brand": {
                "id": "019f426a-8367-715e-aa0e-0097f389b4a4",
                "wording": "Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-834d-723f-91e0-33e01ce0bcbb",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Fours",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8336-7252-a200-3e558e2820f8",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Fours Micro-ondes",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5b9b-725a-90f0-41de1402d1ca",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Fox",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5bb8-73c9-8ecf-3c55aa3cbf2e",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Fox x Coral & Tusk",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6cfe-735b-842e-233e9cdd38eb",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Foxy",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5a12-7301-8cfc-ae8ceb083a9f",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "Fragment",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-75df-72b4-940c-e214d82625fb",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Fragrance",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6f46-7377-829b-0153b97b2cdd",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Fraise",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-68c4-71c3-9836-751bb63ee282",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Fraise",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7033-71bf-adf1-a2ebafc0176f",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Frame Crossbody",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6dae-73fe-87e7-ef7d88153df6",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Fran Fran",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d18-7199-8cfa-a43ddf03f616",
            "brand_id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "Frances",
            "brand": {
                "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
                "wording": "Frances Valentine",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-67ce-73b7-82c6-cc5d3248fcf0",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Frange et oeillets",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7d04-7225-95fa-80175ba7ef34",
            "brand_id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Franges",
            "brand": {
                "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
                "wording": "Figue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-82d2-703e-8203-0b0adc517a3a",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Fraîcheur Naturelle",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8225-71be-80d2-156416cd48b1",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Fraîcheur de Grenade",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-48f6-73f2-8f6b-123d01d134b1",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Fred Cuir",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-48ea-71ae-9583-98dc4c9dda04",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Fred Paris",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-91a4-711f-88b9-145eb6b1556b",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Free Metcon",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9402-732f-9f06-59a9eda368fe",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Free Rider 22 Avabag",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9506-70f4-95ec-00e1d09bbd94",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Freedom II 60+20",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-92bf-73f7-a1d3-671954e719b8",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Freedom Insulated Pant",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-90c3-7306-ae2c-54f5253bc70b",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Freestyle",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-85a5-7346-a788-8d3e6b57661e",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "French Door",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8561-71c5-acd7-30f212aee134",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "French Door",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-77f6-739b-83da-455435775b3b",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "French Terry Joggers",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-49e4-7334-badc-355a98ff7aef",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Fresh",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-85d5-73a7-b20a-30922bb2fe88",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Fresh Care FWF 71483W EU",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85cf-718b-8079-acc202e52bda",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Fresh Care HSCX 10431",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9205-7201-b1a2-c774b71f5189",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Fresh Foam 1080v11",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88d9-704b-bf96-49de105723bf",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "FreshJet Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-68e0-7229-890e-b86187a44f3c",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Freya",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5325-72c9-89ed-8eef0daf5437",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Frida",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-547e-727f-af73-add4e5382312",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Frida",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7376-73b5-b719-7f7d20237bbc",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Frieda Tencel",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a58-71de-bfe2-b86940bd25a0",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Fringed Wrap",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5a10-7384-8a23-e17322177646",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "Frisson",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6f43-718a-80bf-ee9304089d7b",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Frites FRAICHES",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-82ed-72ee-a8f0-aa7d6bd95a2b",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Friteuses",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4875-72da-af77-4b4d67390c56",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Frivole",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6deb-7389-8693-5a86303e47a4",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Froncée",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-856b-72c7-9038-e616392822d0",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Front Load Washer",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85a7-7384-b525-d0064abdd69a",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Front Load Washer",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4b97-72a6-a396-bd0e663193bf",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Frontrow Sneakers",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-71ee-739e-9830-c0ec41fae3d4",
            "brand_id": "019f426a-71e5-739b-b009-e6c9f9883af0",
            "wording": "Fruit Earrings",
            "brand": {
                "id": "019f426a-71e5-739b-b009-e6c9f9883af0",
                "wording": "Susan Alexandra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-903d-71f6-9fb6-ef6637b5c6aa",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Fruits Rouges",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-56ca-7381-9fb5-432e43655a5c",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Fuck",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9207-70dd-96aa-8f61b90a0ebe",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "FuelCell Rebel v2",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6599-7016-a37c-6f4ef0f015ca",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Fuji Iro",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8826-7292-8247-d39ddae5b76b",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Full HD LED TV",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-780d-7290-9abb-bcfb577c719b",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Full Zip Jacket",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d4c-7034-9f69-c2b73f5b0d72",
            "brand_id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
            "wording": "Fulton",
            "brand": {
                "id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
                "wording": "Gabriela Hearst",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5698-708f-9ced-0a1cd9bb5fbd",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Fumeuse",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9450-71c0-91e2-dc56acc9c207",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Functional Tights M",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-613a-73db-ae0e-3af14fe984ee",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Furka",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-920d-7068-8df3-b6d149900838",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Furon",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9170-7319-b0c2-f5d5b0ae0681",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Fuse",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-907f-707b-a590-4cc97f98c851",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Fusion Bra",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-943f-733c-bf81-bccbf92a4240",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Fusion Hybrid -4 Sleeping Bag",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a2a-729f-ab7e-fab950adb5e1",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Futura",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9174-70f4-8b17-6a8890203c16",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Future Z",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5dc1-73e0-86e0-86ddc98eabab",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Fyllis",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8095-7313-acae-9235373426d0",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Fée-Moi Fondre",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-85ee-7229-b205-da4cdccb78f9",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "G 5000 Series",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85ec-73e4-8ce3-9513029a2154",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "G 6000 Series",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85eb-7341-a585-34560a408b45",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "G 7000 Series",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-69af-7005-8ff0-01ae3b22decb",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "G Cube",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9276-7085-8135-9040ea950664",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "G Trek 5 GTX",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-667f-72d5-bee2-8bd867a98a21",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "G-Shock",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6778-70a4-a223-8a2b1a254390",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "G-Timeless",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6992-72e8-a5e2-a8260431d7d7",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "G-Tote",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-69bc-706e-8d3b-5206c42bfa0c",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "G4",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6dfb-703c-8c8c-4d9f2f845bd6",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "GABBIE",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d33-7027-846a-c50d43db5af4",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "GALA",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4d84-7011-8a04-66be67a8135b",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "GALET",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-59be-723b-ab53-cfe37996fb3f",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "GARVIN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-559c-71ac-a413-42567c0123e2",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "GARY",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5f63-712b-8a74-e9e061e54e16",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "GDG",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5a19-7312-84fe-44e9c5933625",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "GENESE",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59ca-733c-bcff-75b1b1006a86",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "GERRY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-604b-704f-b6b4-cc13d34de002",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "GF 300 1964 Spirit",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-604d-70b5-800d-8ad91d62eaa6",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "GF 3000 Titanium",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-604f-7260-8722-3a1cc602c16d",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "GF38163",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6055-7112-8ca5-6c6fa5ddcd1d",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "GF38213",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6051-73b1-b53d-2766ecf7e9db",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "GF38268",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6053-71ec-a290-a38a12d4d931",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "GF38298",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6445-7141-972d-eda1efe9625e",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "GF6",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-643d-737a-bf92-f1514cdea9c7",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "GF7-38 MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-679f-73d6-9316-19720ff6ec14",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "GG",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5ce7-731c-b19b-5fb125b32c9f",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "GISELE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8b2c-72a3-8b73-a9820cc1f973",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "GKN 19G4S A3+",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b6d-7213-b887-76878080bd62",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GKN16820X",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d6f-728a-ac79-47775e5a83f8",
            "brand_id": "019f426a-8d6c-7145-9810-27b96ddf893f",
            "wording": "GKNI15720",
            "brand": {
                "id": "019f426a-8d6c-7145-9810-27b96ddf893f",
                "wording": "Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b72-7287-a868-4bc0eacb8417",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GKNI15720",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-656e-7233-a588-248b2f1bf1b4",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "GLAMOUR",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5dd0-7313-b1d9-a2681ad08141",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "GLAZE Avec Diamants",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6e0b-71dd-a508-ddd41e3adeb5",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "GLEAM S",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-76c1-7083-9a67-c59eec76e011",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "GLOW",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4d4b-70f0-ae57-92c83e1d9476",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "GM",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6112-7091-83a3-74d452244a98",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "GMT NESO",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-662c-7020-84f6-e2f2b549b6cb",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "GMT-Master II",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-87d5-73eb-bf86-e477591ca96d",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GN 1066",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87e5-730a-94d2-7458ec8c8800",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GN 3933",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8a5d-723e-826f-0991f07a771e",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "GN1100",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-860a-701d-ba14-8c576fae3402",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "GN1416232ZX",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b5c-72c9-aa85-5300f7996b8f",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GN163220S",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b60-7376-a86f-c0bead3411c3",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GNE 134631 X",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b70-7182-9ab6-26e4b08854c2",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GNE 41833 X",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-87d8-71bb-88a6-78dfa29af72b",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GNP 2313",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87e3-71ac-b596-abc8e5bdc8bc",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GNP 3113",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87ee-719d-a1ff-df47643117dd",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GNP 4166",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b79-70d2-a0a7-f3fddf78f91a",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GNV41820",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b7b-73f9-a598-2fa9e8e3b8ef",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GNV41821",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b7d-709e-ad19-073f5c856415",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GNV41923",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4b6f-7255-8653-a99ae8cc126a",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "GO-14",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-87ed-70c0-bfd7-c47f08f8b25a",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GP 1376",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87e6-73d8-ae51-dfffa5e676bf",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GP 1486",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8a82-73a4-867e-e4352a66daa6",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "GP540A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a80-727b-a37d-7dd51b7af976",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "GP547A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a84-7368-bba2-a5b5fafa6478",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "GP547D",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b9f-7171-8bf3-36b0e511d06d",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "GPK630",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e8b-7179-a8da-13150e8a7531",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "GR120",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8baf-72f5-99a2-e85a8a5bd4b1",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "GR20",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a12-7399-a16e-9287c1c15574",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "GR20",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-76c7-7245-a29b-f1ba60f32942",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "GRACE",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6ddf-7037-9629-ff45e78add46",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "GRAND",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5ca6-738a-95a4-bb441b840cc4",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "GRETA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9573-7369-9774-6614d8b6ce43",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "GST Leather Game Football",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-87d6-700d-a6f0-7612ddad8182",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GTL 6106",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87f1-705f-b3f8-9c8abf61ad99",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "GTP 3156",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-630c-70dc-a444-282c135e579e",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "GUILLOCHÉ & ÉMAIL",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d1e-732e-88d3-a333f86e08aa",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "GV62224",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d1d-71b5-ab10-c706603ed14e",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "GV67160",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-852b-7380-b39b-5440329f8575",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "GV7810C0 Pro Express Care",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-852f-70ce-9ad5-f7ac5d718123",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "GV9061C0 Pro Express Ultimate Care",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8528-708e-97f0-a50bff8ef0dc",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "GV9560C0 Pro Express Ultimate",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8548-71f4-9e5b-2479f96b0988",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "GV9580C0 Pro Express Ultimate",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-850b-72cd-8387-52e01fb1177a",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "GVX242",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b78-71fa-9b87-4ece7fe2b453",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GWDI854",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b74-713e-b2e4-dab94cdcf474",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GWN48430CW",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b76-72ff-bcdd-9e0eac1edb51",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "GWN59650CW",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8508-71ff-83e6-6adb247c0544",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "GX4100",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5387-72af-a0fa-8751fe4fb989",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Gabin",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-55ba-7301-98a3-d11f042f996a",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Gabin",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5f16-71f4-bc01-32e008b4bf6b",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Gabrielle",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d72-7260-b64e-9ac6cfe0ff3d",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Gachette",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-54aa-7207-b37a-3af67d68c564",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Gaia",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7a65-70ad-ae67-a0498126df5f",
            "brand_id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
            "wording": "Gaia's Ark Mini",
            "brand": {
                "id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
                "wording": "Cult Gaia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5a89-7330-8883-5b89114e0501",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Gaja",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-570f-70c7-98b7-fa51b4af4596",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Galapagos",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4e22-7225-a0e1-329ed6fd1c80",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Galaxie",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5e58-737e-9fb0-e9e80602a8e3",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Galaxie",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4d69-73e3-9877-5675eb2ab462",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Galet",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-717a-705a-834d-9da247e4b3e5",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Galets",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8dec-713d-b2b8-c341db57f8c4",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Galicia",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7880-70ba-bd56-101613f8347e",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Galileo",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-58c2-727f-b114-56f3edd35aae",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Gally",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7b7f-72ea-9680-90d122526151",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Galway Boots",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-80e0-72bb-a23d-c491941531f5",
            "brand_id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Gamme Anti-Âge",
            "brand": {
                "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
                "wording": "Sothys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80e2-71ce-b271-e8d84e83cb32",
            "brand_id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Gamme Eye Contour",
            "brand": {
                "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
                "wording": "Sothys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80e5-70f0-a9a2-2ef375633a1e",
            "brand_id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Gamme Homme",
            "brand": {
                "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
                "wording": "Sothys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80df-7134-938a-5c8ae7a1f2fa",
            "brand_id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Gamme Hydra3Ha",
            "brand": {
                "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
                "wording": "Sothys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80dd-722f-a94f-5e5c5d302fa0",
            "brand_id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Gamme de Nettoyage",
            "brand": {
                "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
                "wording": "Sothys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80e3-70b5-b1e3-9d62fac4b229",
            "brand_id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
            "wording": "Gamme de Soins Corps",
            "brand": {
                "id": "019f426a-80dc-7276-a613-b454ab2c0a7d",
                "wording": "Sothys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6ba2-7139-ad64-6d5ebb368ad8",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Gancini",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6484-7233-89a7-26430b0f6d40",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Gant Ambidextre",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6dee-7127-8e1a-bbb269371379",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Gants",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6487-72c8-9ec6-5c32861c962e",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Gants Plongée Sirocco Sport",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6486-731d-a654-610320a3c9e4",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Gants Sirocco Elite 5mm",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4dd4-71f7-9e43-4bd3589e62fd",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Garance",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8ff0-7113-9e46-ea4f07999ed8",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Gardena",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-585f-73f4-ae18-61619b825ab0",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Garvin",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-857b-70f9-824e-85f5c7bea476",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Gas Dryer",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85ad-73d3-8517-a4374a5f9bb4",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Gas Dryer",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-540a-723c-bc9a-968593b693fb",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Gaspard",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7427-7020-ae36-ca4c87812e2f",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Gaspard",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-742b-72aa-a8ca-e2c2bbcfcf43",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Gaspillé",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8b51-7033-9f04-2916afc5e1de",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Gator Pet Handheld Vacuum Cleaner",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-72d9-73dd-9676-64b331b6890b",
            "brand_id": "019f426a-72d6-71f8-b00a-12873bdb434e",
            "wording": "Gatsby",
            "brand": {
                "id": "019f426a-72d6-71f8-b00a-12873bdb434e",
                "wording": "Zagliani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-54f3-7015-8c73-d70c8b6b1339",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Gaufrée",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5612-7236-9ede-dfd63d96a7a6",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Gaya",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9042-71eb-a814-760071cc0372",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Gel Agrumes",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9045-7303-81bc-1d5569324617",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Gel Antioxydant",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9044-73b8-95b5-f6575d95d766",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Gel Caféine",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9041-7247-9429-95164e2f0d93",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Gel Fruits Rouges",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-81a9-7129-9707-c8525d689216",
            "brand_id": "019f426a-81a4-70ce-8c58-3655343fb469",
            "wording": "Gel Hydratant Anti-Fatigue",
            "brand": {
                "id": "019f426a-81a4-70ce-8c58-3655343fb469",
                "wording": "Lierac Homme",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81a6-7300-ac7e-3c9045afee94",
            "brand_id": "019f426a-81a4-70ce-8c58-3655343fb469",
            "wording": "Gel Nettoyant Visage",
            "brand": {
                "id": "019f426a-81a4-70ce-8c58-3655343fb469",
                "wording": "Lierac Homme",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8137-7034-b442-8d58fe8c8fdc",
            "brand_id": "019f426a-812f-7248-90f8-485049bd327f",
            "wording": "Gel Pieds Fatigués et Jambes Légères",
            "brand": {
                "id": "019f426a-812f-7248-90f8-485049bd327f",
                "wording": "Vita Citral",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-51ef-7155-bed0-ff67849b4b9b",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Gel à L'hibiscus",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-923b-72d4-9ead-919e876f1028",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Blast",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-922f-722e-9f43-6c6cf3104ebc",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Cumulus",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-923d-7346-8348-a0abd0a5aa0f",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Fastball",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-922c-704c-a608-e78655985c68",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Kayano",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-923e-7256-947d-679c08f9bef1",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Lyte",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-922d-7314-8137-85ebcd9d422f",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Nimbus",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9234-7036-b587-535d19573e90",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Quantum",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9237-7334-8536-b5510fe0f3db",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Gel-Resolution",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-909a-730a-9446-62d824ec184b",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Gels Énergétiques",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8173-73c0-981a-3f79f5f121a8",
            "brand_id": "019f426a-8171-726a-a030-2570fad0321d",
            "wording": "Gelée Micellaire",
            "brand": {
                "id": "019f426a-8171-726a-a030-2570fad0321d",
                "wording": "Akane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-746b-721a-b5ec-bbff517a5753",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Gemma",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74b3-72bf-b3b2-23dfda9489e6",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Gemma",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7359-7361-881a-f420e0ead2ca",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Gemmyx",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-66a6-72c7-81c1-b4b64161d7cc",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Gen 5 Smartwatch",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-531b-710c-bc3d-4be08bf61816",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Genevieve",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-73b2-725b-8489-ffbaffd6cbbf",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Geneviève",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-787a-737e-8829-fff6c349ea1c",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Genova",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7f8e-725b-8230-10a1e8a42e84",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Gentle Cleansing Milk",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f9c-73c2-b4e2-8fca1c9b5776",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Gentle Foaming Cleanser",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7799-7125-bd26-6bbe86028609",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Georgia",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-72a4-71e9-9e9b-8be3da32467e",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Georgia",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6f57-7310-bba2-5f143f52f66f",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Georgiana",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-526a-71ef-9923-18c680ba3d4d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Georgina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-73c3-70ce-bc0c-de364cdf2ef8",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Georgine",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5285-738c-a1a6-82f56f3bfa7e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Germaine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5880-7229-aa74-15cc096a23cb",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Geron",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-49f8-7377-b0db-7e5e88b3cf29",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Get",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5031-70b2-8a66-cbe656dc1f3f",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Get Around",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-69e1-70fb-8c92-03e8a3daeddb",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Getaway",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8d8b-71c2-80d6-36ad0a094c2e",
            "brand_id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
            "wording": "Geyser Eco",
            "brand": {
                "id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
                "wording": "Taurus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-93a0-735b-99fe-2a950a32823b",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Ghost",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8873-7040-a356-4cd70dd6d709",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Ghost",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-58b4-702f-8a1c-54c8cb93f6b6",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "GiLET Cory",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-73f0-73da-b9a7-28be3a451e56",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Giada",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6bea-700f-b3df-d0ee80af4f26",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Gibilterra",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-73c1-7085-b61d-bdfbc4920b23",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Gigi",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b67-713f-9031-177b9d1c31ac",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Gilet",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6489-7276-91f0-70495f477696",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Gilet",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5cd3-7338-b69c-88508bc2df76",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "Gilet BERTHE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-648a-7248-a52e-1e9d4cae3994",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Gilet Cagoule FOCEA",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-934f-710a-9b76-31dc68a19566",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Gilet de Trail DNA 8",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93aa-718b-94de-b222290bddc0",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Gilets de terrain",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6a17-73ae-ac97-c51cb6c521e4",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Gillet",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-779a-73be-b690-6a692bd5abef",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Gillian",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5b76-71fa-a9a7-24772c7a7053",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Gina",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-52df-72c3-b22e-5ff71672f31e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Gina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-776a-73e8-b511-d5c96fcc5564",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Gina",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-73e9-7248-90a1-deeb28c72e4f",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Ginepro",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7fe6-718a-8759-86e6cc1b7ead",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Gingembre Rouge",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5ad8-73a5-b42b-005b81f75b07",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Gini",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a51-738a-8d76-79354ad04eca",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Gini K Perles",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-73d9-7260-b197-dbee4692359c",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Ginny",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4cb7-7184-b9cb-79dcc9a46aa4",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Gino",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-80c6-7350-8321-7a591d412524",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Ginseng Infusion",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7088-7377-9b23-fd7849707d69",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Giorgina",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7887-72cd-b07a-90ed97af6f9d",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Giotto",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4f8f-703e-a775-dbe7a2aff8dc",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Girafe",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5dbf-7140-8849-cc6886113bd4",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Girasole",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-79e7-72e5-a06f-2ebaf570cabc",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Girl Ruffle Trim Dress",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-52f7-73dc-a58c-911aa9932475",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Gisele",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-722f-72cd-92ae-e7c6d163add2",
            "brand_id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "Giselle",
            "brand": {
                "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
                "wording": "Tom Ford",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7239-7056-8248-387cfcef824a",
            "brand_id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "Gita",
            "brand": {
                "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
                "wording": "Trussardi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7774-70fb-adc0-8f7d6aea8b84",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Giulia",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75b1-73e9-a349-2792c49cab78",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Glam Squad",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c7c-7070-a2ba-c50b9d547ada",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Glamour",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-75ca-715b-910f-16a8394fff06",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Glamourous Diva",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75f1-721e-b800-9ef529a53ea3",
            "brand_id": "019f426a-75ea-709b-a45d-71cb504b5d18",
            "wording": "Glawinia",
            "brand": {
                "id": "019f426a-75ea-709b-a45d-71cb504b5d18",
                "wording": "Call it Spring",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5df2-720d-bc86-6c2aeb13de8d",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Glaze",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e55-729f-bacd-86ce964239f4",
            "brand_id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
            "wording": "Glendale",
            "brand": {
                "id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
                "wording": "Herschel Supply Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-94b6-73ac-96e4-def1f43c9943",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Glissade Hybrid Insulator Vest",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5500-7148-9690-c7fabef26b33",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Gloria",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7a4e-7399-bb92-8e7f164988b1",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Gloria Wallet",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-945a-72ce-8795-d8e769130499",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Gloves Kitzbühel",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-81e1-728e-9b83-05a73ffdecc3",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Glow Up",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-749f-728a-b368-a168151a9cfa",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Glynne",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7ab0-7260-a80b-5c2a90f9e2c8",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Goalkeeper Gloves",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5dda-7258-bad1-de652fa65343",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Godiva",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5af8-7247-8fe9-9d9b87aa0ac1",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Gold",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-778c-739b-b66b-a0621051fe45",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Gold Spot Large",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6cd2-7291-8b64-ff40d7c89dc6",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Gommino",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6fbd-71bd-a011-e7ee655babe8",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Good Girl",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5b99-7016-8d45-4f5938f970b8",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Good Good",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6ae9-7176-99d2-bd3c607da66d",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Good Luck",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-682c-725c-a70b-de51791231dd",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Gotham 13",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6258-71e9-bc61-9661aab26c86",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Gourmandes",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5004-7098-b4e6-2de1cb47351b",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Gourmette",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-579b-7334-a99c-fd1d37dd8aa4",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Gourmette",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4fd5-73d3-9874-124e9bb6ae91",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Gourmette",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-62be-71df-b677-23e6173c7cf1",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "Goussets",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5752-73ad-9006-6289598c8ff2",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Goutte Ethnique",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5b92-70dd-8aeb-2ee241aaec9a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Gowanus",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7a29-73df-a610-0df2c3ee9f21",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Grab 'N Go Mini",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5ff3-7000-aaf2-0c2aeba70557",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Grace",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4df7-7258-84fa-89745c15b929",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Grace",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7748-72c8-92a5-2a90a006425f",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Grace",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-746f-72a2-8eb8-f406abb516af",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Grace",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7027-72dc-a9c1-365f32ffb400",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Grace Box",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a4a-72c7-ab41-0eb6ac2cdf63",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Grace Clutch",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c23-70fb-baf2-1f426eeae335",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Graceful Chiffon Gown",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-58c5-723c-8d5e-e35ed9e2d05b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Graham",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-48ef-73be-ac05-fdcec166b1be",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Grain de Riz",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-57d8-713b-a538-3d86e2b23bd3",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Grainé",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5b4a-72fe-8756-626d28ffb4f8",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Gramercy",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-664d-70f1-80e8-4e869d8a8a4c",
            "brand_id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Grand Complications",
            "brand": {
                "id": "019f426a-664a-7284-9d69-a75dee56956e",
                "wording": "Patek Philippe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-635a-7213-ac5b-2c0843f101df",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Grand Cru",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-644b-708d-9eab-f79238a6deb7",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "Grand PAVOIS",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-666f-7348-9f65-12349a128a9d",
            "brand_id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Grand Seiko",
            "brand": {
                "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
                "wording": "Seiko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-875a-70e2-a2c0-80d5bbcd1957",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Grand'O Vita GVS 1410TH3/1-47",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6da2-7010-99b5-980374a6ebe3",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Grande Fanny",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-94d3-708a-bac1-ecc27ab9fa29",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Grandview GTX",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5bf4-714a-9180-4b71c5ff5bb9",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Grant",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-66af-73b9-8b0a-2e2a9c0509b2",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Grant",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-910b-7259-97c5-1c4f7207c01a",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Grant Hill 2",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d41-701b-9614-12d725504611",
            "brand_id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
            "wording": "Graphic",
            "brand": {
                "id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
                "wording": "G-Star RAW",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77eb-703c-8e46-20d59e38f190",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Graphic Print",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ea4-71a2-a7f8-fe3127e2cb08",
            "brand_id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
            "wording": "Graphic Print",
            "brand": {
                "id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
                "wording": "Iceberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7917-7345-9e9a-e61fcda4d3a0",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Graphic Print T-shirt",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78e9-726d-9a54-6a3af4109bf7",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Graphic Print T-shirt",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74df-719e-8582-0403fcdcac5e",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Graphic T-shirt",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74ce-728e-a94f-48d289c8f6dc",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Graphic T-shirt",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bcb-731c-9bae-a67b884a0451",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Graphic Tee",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-689b-7106-87ae-2453694f7be0",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Graphy",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-93e0-703c-9155-38addf86a8ad",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Graviton 38",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d11-728f-bda2-a603987ac8a6",
            "brand_id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
            "wording": "Greenland",
            "brand": {
                "id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
                "wording": "Fjällräven",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4d9e-7262-806e-dbb04c1d2b50",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Grelots KATE",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4da6-70f5-b2a8-314d2d32da4c",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Grenade",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e00-721b-b8e9-1f7595dc4261",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Grenade Diamants L",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e04-73bc-96c0-a82740f5386e",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Grenade Diamants M",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4e07-72b5-8fd4-7ae8d73a2e9f",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Grenade Diamants S",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-927d-70ec-af29-134da87d3573",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Grepon 4S GTX",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4dc0-73df-bd2a-17f343a7d373",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Greta",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-779c-73ae-9a6f-0876d1169e94",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Gretchen",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-778b-70ab-b159-c7dc49974bcd",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Grid Storage Box",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8f11-7155-80aa-d1d6efc79f37",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Grigri",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b8b-70fe-a67d-a58134f8fbd3",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Grill électrique",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8322-717c-b11f-dcca2b49acc9",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Grille-pain",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b95-7012-bb61-19131fa89c3e",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Grille-pain",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8469-716d-bdfa-08967f9fae72",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Grille-pain Persona TTM610",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-841f-7309-a88c-36f3f5aad570",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Grille-pain Visio",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-841d-7079-8b72-a792ae035857",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Grille-pain Vision Toaster",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8467-729a-af1f-27b707e52e58",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Grille-pain kMix TFX750RD",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82ef-7187-b9ac-0c944df7b57e",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Grille-pains",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8f1c-73bc-b4a4-1573df6bc316",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Grillon",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-86bb-7385-b686-a09da016a223",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Grind & Brew HD7769/00",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-900e-7215-a29a-353ffcbd41a5",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Gstaad",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-913f-70db-a118-91529b615a55",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Guardian",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6780-71df-9d01-c8fda96a9113",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Guilty",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6249-73c1-8999-0cf1a2bb2c0b",
            "brand_id": "019f426a-6245-70b2-b71a-f270c02cbec9",
            "wording": "Gulf Racing",
            "brand": {
                "id": "019f426a-6245-70b2-b71a-f270c02cbec9",
                "wording": "BRM Chronographes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5acd-7183-bb3e-1263efa80940",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Gumy",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5434-727d-a68b-b2d848116b44",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Gurvann",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5389-7029-ba22-febd309a59aa",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Gustave",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7082-732f-b05a-8a746e1907ea",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Guépard",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6868-72f5-8255-134d34c436eb",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Gwen Heart",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5aa3-71e6-85e4-642f81be5278",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Gyana",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7aa8-70de-94ce-532722ca14ca",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Gym Bag",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-54e7-73f8-bca9-e8e9ea796a46",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Gypsy",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6281-72f5-9872-fd68b5406715",
            "brand_id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Gâteaux et Entremets",
            "brand": {
                "id": "019f426a-6279-719f-9f35-d5110387906b",
                "wording": "Michel Roux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-710e-700e-a0d1-c58483feb2fd",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Géo",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4986-70b8-bfa3-b29c84f227b1",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "H",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-85f6-73b7-a613-d59f1cac5ed2",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "H 5000 Series",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85f4-729f-8e31-42795c3e66d6",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "H 6000 Series",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85f2-710f-bf64-6e4a38c7758e",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "H 7000 Series",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8796-716f-8fc8-2910af66a04b",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-DRY 500 NDH8A2TCB",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8795-718c-944f-d003d714ab4e",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-DRY 500 NDH8A2TCES",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8792-73db-908e-e3231e567d92",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-DRY 500 NDH8A2TCEX-84",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8782-72e4-91f3-60482097ea87",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-FREE 200 HF222AXL",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8784-706d-9204-f57d34025a3d",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-FREE 500 HF522NPW",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8780-73e2-86f8-9ad608a60efa",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-FREE 800 HF822OF",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8786-7176-9b3e-cbe79d1c40ca",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-GO 300 HYDRO",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8789-7325-a9c2-1c4a7fa36664",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-Robot 1.0 HR20",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8788-72bb-8da7-a9f837be5b54",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-Robot 2.0 HR64PET",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d5d-73bc-b3ea-80ff8e207f38",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "H-Robot300",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-878e-731e-afb8-d3a5c52049dd",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-WASH 500 H3D 4106TE/1-S",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8791-732c-94ec-90e1bdcc3afe",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-WASH 500 H3D 485TE/1-11",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-878b-737c-b0ef-7322b5c388b3",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "H-WASH 500 H3D 485TE/1-S",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8fe7-7087-b941-2d1cf09b3ace",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "H100",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-644a-7040-8b22-c8372a9b299d",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "H20 Racing",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7e6a-70ea-aa70-64c67f47681b",
            "brand_id": "019f426a-7e66-72bb-83e4-8dd08920539d",
            "wording": "H383",
            "brand": {
                "id": "019f426a-7e66-72bb-83e4-8dd08920539d",
                "wording": "Hogan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8fe5-7220-a9bb-b98ee54794a9",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "H500",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fe9-72df-96b3-4e722cc6a01f",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "H500 Shorts",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b54-70c2-bcf8-d1e6367cb651",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "H85-GA-B10 Gator Cordless Vacuum Cleaner",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b56-71b8-a2f6-6f850a645b08",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "H85-GA-P18 Gator Pet Cordless Vacuum Cleaner",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ead-7358-9c58-db0a4ddea503",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "HAIRDRYER2000",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5cea-70ed-8cb3-c2dc12858daa",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "HANNAH",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-59d9-71cb-92bc-74a3e93cd469",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "HARPER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e36-72a0-89f0-a6e16d35a28f",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "HARRISON",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5942-72da-8d87-f9fdcbacfcb3",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "HARRY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-599d-708f-a78d-1411458cbe32",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "HARVEY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d58-70d8-a3c3-ce0c79e0ee28",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "HATTON LABS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5995-7258-a14c-9e8913c1ab13",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "HAWKE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8622-7287-9356-f2c564c07b43",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HB16WMAA",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8a5b-70eb-9055-cec6bd291260",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "HC1100",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a58-7180-a5ab-d1c4d9b61e67",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "HC3300",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e11-70eb-a7b6-5a83cbff8df1",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "HCX9120E",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8635-70b1-b011-a64757e89cb2",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HD80-A636",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8633-7347-b7cc-e46587a327fc",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HD80-B636",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8630-72a4-8c84-3e294c21579f",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HD90-A636",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8ea4-71f4-ab0d-8fbf01edd462",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "HEATBLOW1500",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ec0-7394-9141-621a3afb220b",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "HELIO",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6e81-737d-9519-f82dd19ed7ed",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "HERITAGE",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5cee-73e5-8f58-c98a4633b996",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "HERMINE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5da5-7241-96f2-b1936305ded9",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "HERON PRESTON",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-863d-71b6-894b-1a73b072fa7e",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HF-255WSAA",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-863f-71c3-a2e9-e8c8e48237bc",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HF-50CM23NW",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8641-71d4-adab-c4097f85b0e1",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HF-71CM33NW",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8a10-736f-9e02-e2bedd873ec4",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "HF180",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84bb-7150-ad87-291f33753dd4",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "HF404110 Cookeo Connect",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83ca-7327-9bdf-b66163c4ff34",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "HFO 3C22 WFC EU",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83c7-70eb-a238-d7bf2a200318",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "HFO 3C22 WG X EU",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83c5-73c9-a90a-06d91f869192",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "HFO 3T22 WGC EU",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e13-72b9-b5c2-d5e0fcd904f9",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "HFX30C15W",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e09-701c-8ca7-728421bd9e56",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "HFX65V15",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e50-705d-9ab1-1bf0ac2173c5",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "HIF-1898BT",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e47-72b1-aaa1-d76a6261703e",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "HIF-1899TUMPK",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e4b-7055-98ce-06f565b12110",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "HIF-1999BT",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e52-7373-88d8-a008d9dfe08b",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "HIF-2829BT",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-91e8-72dc-861d-2ee1b30c944b",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "HIIT",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a0a-720f-8821-fb002dcf0162",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "HKM1032",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8eaa-7335-b725-b85b01cb58b8",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "HM300",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-60a8-7128-8516-e1182ff8838c",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "HMS",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6dd6-73c2-9eff-8f3791f16b0c",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "HOBO",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-69c7-7288-9289-2ce11ae0f021",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "HOP",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d91-7258-8291-98add31fd241",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "HORTENSIA",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-91b9-713c-a019-e8689bf0da54",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "HOVR Machina",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91b8-7047-8710-9dba3588ae86",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "HOVR Phantom",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91c9-7188-898a-4f74c6316718",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "HOVR Summit",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8d5f-73f8-818c-d80f421d7e03",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "HPB100",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-863b-7058-a0a0-9f8a4d45f053",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HPP08XCR",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8cbd-73c1-ae15-9c2c316a6f54",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "HR 1950",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8620-730a-9fcd-dd67c3c064ea",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HRF-628IF6",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e07-72cd-9177-f81eaf72279d",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "HSX3324FTS",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5d74-70bb-81af-a5b77aea15b2",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "HUGO KREIT",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5dea-73c7-ba86-1760af10ae16",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "HULA HOOP",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8e9f-7051-a3f7-1c25af22d25f",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "HUMI200",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5973-736d-a4d3-5c80c81b9407",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "HUXLEY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8c07-714a-a721-495204717e07",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "HV 7144",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d56-73bb-afda-43c444190187",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "HV200",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8628-7104-b076-e58a1a5c17a0",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HW100-B14636",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-862b-71a9-a7ed-c82e769c863a",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "HW80-B14979",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-69f5-72bb-be6c-ec2d499d656e",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Haddock",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5240-7089-b657-119101511b6b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Hades",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8c5f-7344-82fd-236578d6e34f",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Hair Trimmer",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7357-71e9-94a7-f20ccb0aae7a",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Halalia",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-736c-70ac-b053-5d522805b211",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Halbmond",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-584b-732d-bdfe-2c88da3d2ceb",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Haley",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7ef1-703d-a470-d83af2caef96",
            "brand_id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "Half Pint",
            "brand": {
                "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
                "wording": "JanSport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-66f6-7387-b4c0-c2bddd58cd29",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Half-Zip",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-93ee-7030-8642-189202796f67",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Halogen 2P Tent",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d61-73b0-bd3f-d48ca6f09bb8",
            "brand_id": "019f426a-7d5e-717d-b460-7757ff76f29a",
            "wording": "Hampton",
            "brand": {
                "id": "019f426a-7d5e-717d-b460-7757ff76f29a",
                "wording": "Garrett Leight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-532a-71e7-a2b1-04c71296d940",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Hana",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8015-7006-a874-253c21c84b45",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Hand Therapy Gloves",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-769c-70f3-a9ec-c63b0534ff09",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Hand Towels",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6bbf-70ab-a09a-42cfc7bc0d16",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Handle",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4859-7363-8e7d-973bb0c090ae",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Hans",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5919-708c-8240-080f60f9789e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Hanson",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4a24-72e0-9c0a-8614248d6ed6",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Happy",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6a68-726a-9290-57871416353e",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Haras ROMAIN",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7f1c-7131-a2e0-a6d6b885ff4c",
            "brand_id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Harbour",
            "brand": {
                "id": "019f426a-7f17-735b-b944-c2b58be34b83",
                "wording": "Joules",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9190-703a-85bb-9e01d747a088",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Harden",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-82e1-70a4-ba20-cbbd54901958",
            "brand_id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Harmonie Intérieure",
            "brand": {
                "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
                "wording": "Elixir & Co",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82d0-7303-a592-ef8d940ca4ae",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Harmonie Provençale",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-91e1-7069-a986-25b450e84dd1",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Harmony Road",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6a99-73c3-91f5-b66df594c426",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Harness",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7c26-7087-b724-5607789651f2",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Harper Embroidered Shift Dress",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a0d-7191-9836-04b84402ae9c",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Harri",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5b86-72c5-9908-5c0d5eb5480c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Harriet",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d27-70b2-8dc2-67e13eb42cf6",
            "brand_id": "019f426a-7d23-7360-9c28-bd31f83f2226",
            "wording": "Harrington",
            "brand": {
                "id": "019f426a-7d23-7360-9c28-bd31f83f2226",
                "wording": "Fred Perry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7e05-73b9-8d19-988e9e888984",
            "brand_id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
            "wording": "Harrison",
            "brand": {
                "id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
                "wording": "Gregory Sylvia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-66ed-7123-8277-cd4d2f36df81",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Harrison",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-79d7-7332-b242-ed2cfc38d2f3",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Hart Mountain II Hoodie",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7eef-709a-8d00-19e0336813cb",
            "brand_id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "Hatchet",
            "brand": {
                "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
                "wording": "JanSport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5dd4-73ea-8a3a-d2dfb9aaba33",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Hathor",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7193-7025-88fe-60ce4939ef46",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Haut Ring",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8078-7148-8a22-4f07dfe397bf",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Haute Beaut",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8075-7170-b556-9b624eadb5c6",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Haute Beauté Corps",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6546-717f-ba6d-e1599f8dc400",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Haute Horlogerie",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4c01-73a7-8e06-e9ae2ba8f48d",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Haute Horlogerie",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5c5e-7181-b5c7-e26b4a396a69",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Haute Vie",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6f80-70d7-9687-ed5de940e434",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Hauts",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7448-719c-9b6c-3158da4a14f7",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Havane",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5607-7181-80b8-0fa50ce657bc",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Hayda",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-70fd-71f9-a5e0-3563240a2bcb",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Hazel",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7f7d-70a7-95a8-17b38dce2feb",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Healthy Mix Concealer",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f77-7365-9b29-91daccd4fb0f",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Healthy Mix Foundation",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f80-719f-9535-bce7668e9ba8",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Healthy Mix Serum Gel Foundation",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7221-7287-8d09-c05ccffced11",
            "brand_id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "Heart",
            "brand": {
                "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
                "wording": "Tiffany & Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6ecf-709f-a984-4e19d3734c36",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Heart",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7789-71e2-97f9-553e6726d4d4",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Hearts Leather",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-921e-711b-bca5-86d1758cc9c5",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Heat",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-85ae-71a1-b2f9-0e5766bb9269",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Heat Pump Dryer",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9156-702c-b028-b2357635566b",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Heat Seeker",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91d1-739e-b145-f38df193d148",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "HeatGear",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6473-73fc-abc2-5ed41a6cc68b",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Heatskin",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-945d-732e-abc7-e4fbe960b019",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Heatwave Plus™ Gloves",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-946b-72a8-9c93-d850abc8150d",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Heatwave™ Socks",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-541b-73da-8b29-8c55c0dd2bf1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Hector",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6f6c-737a-8f8d-74be67f4e6ec",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Hector",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5fba-7056-b8e6-808bf3678e12",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Hector",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5bbd-70cb-8413-5dc33a7611f5",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Hedgehog",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-92ae-71c6-9d25-c591ce19286c",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Hedgehog Fastpack GTX",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5bc7-719f-b557-81840ec58b58",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Hedwige",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7b35-7132-a647-73e348bb77dc",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Heeled Sandals",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a2d-7308-8c6c-4007fb5d413a",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Heidi Bucket Bag",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8b00-727f-950e-66f53abdf2ab",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Height Cool XXL",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-539a-7278-b7bf-2a67b5f64881",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Helene",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-49c7-704e-8c49-8e44aaf64784",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Helia",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9416-721e-8fc7-fe5e42fb9f92",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Helios Sun Hat",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9407-714e-b452-7c8cec41f439",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Helium II Jacket",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7cbc-70c0-91dd-a6d93abf3e07",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Helm",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9551-73a7-902c-1eb7e9ccc25a",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Helmet Combo",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5ae1-720c-91d5-4400728d1c2a",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Heng",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-58ba-71a2-80a5-df64035ca702",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Henley Spike",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-65d1-7229-acae-6b3f6a434761",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Henri",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-55cb-72e6-99f3-996ca1d680b5",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Henrietta",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5f85-72d1-bb2f-c83356e6ef50",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Henriette",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7d1a-71b5-9afe-b063ef55e6c3",
            "brand_id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "Henry",
            "brand": {
                "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
                "wording": "Frances Valentine",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-53f6-7248-a476-1075ddf393e0",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Henry",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5417-7312-b03c-8aafed6712ae",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Hera",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-65d2-703f-8222-e7b67a292698",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Herbert Frère Soeur",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63c1-73df-9d4a-3c7f88819af8",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Hercule",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-67f4-70f6-9472-26ee4bfb2049",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6624-71ed-ac9d-ac70c7d09600",
            "brand_id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
                "wording": "Tissot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-73f6-722f-8e06-046b3cd5135f",
            "brand_id": "019f426a-73f3-739a-b301-c48fdc613781",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-73f3-739a-b301-c48fdc613781",
                "wording": "Ariat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6511-7216-998f-fb109a9780ea",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-658a-7340-bb66-897c9568db8c",
            "brand_id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-6589-721a-ac98-72c09b6dc291",
                "wording": "Zenith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6e49-7299-aba6-ddadeea41c08",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7143-7216-a424-434422bd531a",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Heritage",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7818-7384-bd2a-6362e93a987a",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Heritage Backpack",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6813-73ce-883e-1a9f7e736289",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Heritage C",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-671f-710f-b3f9-d131283deebd",
            "brand_id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "Heritage Collection",
            "brand": {
                "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
                "wording": "Longines",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6af1-72d7-8661-2ca0d9edd6bb",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Heritage Court",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6132-7299-8a98-f0b97acc1bc3",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Heritage TWINS",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-911a-7200-aba2-436bc5f8c9a8",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Heritage Tank",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-77ef-73e5-8e58-a08259066ebf",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Heritage Tee",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7aa0-7392-a10d-13ab1364c2a3",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Heritage Trident",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5bc5-7091-bac9-bf84ec25fae5",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Hermione",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4980-7313-9ae8-40bc64e5471b",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Hermès Amulette",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-497a-714d-af3c-68702786f37d",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Hermès Arceau",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-497d-72b3-9b44-36e6b83646a5",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Hermès Cape Cod",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4983-73ab-8f5b-8181a3945a9e",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Hermès Chaîne d'Ancre",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6094-70cc-9256-7be593bcbb2f",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Hermétique",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-713d-70a8-b75b-0bd5924e953e",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Hero All Speed",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7153-73e1-b2e0-4b61db0db1ba",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Hero Elite ST TI",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-931a-73c6-9da3-0a2e88b6aaa0",
            "brand_id": "019f426a-9315-72fd-8316-66a7d3699c5c",
            "wording": "Hero10 Black",
            "brand": {
                "id": "019f426a-9315-72fd-8316-66a7d3699c5c",
                "wording": "GoPro",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9318-70d2-994d-8d75c314751a",
            "brand_id": "019f426a-9315-72fd-8316-66a7d3699c5c",
            "wording": "Hero11 Black",
            "brand": {
                "id": "019f426a-9315-72fd-8316-66a7d3699c5c",
                "wording": "GoPro",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-931c-72bb-9fe1-7de24334f436",
            "brand_id": "019f426a-9315-72fd-8316-66a7d3699c5c",
            "wording": "Hero11 Black Mini",
            "brand": {
                "id": "019f426a-9315-72fd-8316-66a7d3699c5c",
                "wording": "GoPro",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9317-73c4-85b4-cfd5857e324d",
            "brand_id": "019f426a-9315-72fd-8316-66a7d3699c5c",
            "wording": "Hero12 Black",
            "brand": {
                "id": "019f426a-9315-72fd-8316-66a7d3699c5c",
                "wording": "GoPro",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-613c-7071-80be-2d61b8f0348b",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Herrenuhr",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6fc8-73f6-80b2-b34a966b861a",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Herrera for Men",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-657b-7280-8cdd-aac391fb7250",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Heures Créatives",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4bf5-71f5-8d42-1c3af1f823de",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Heures D'Absence",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-750d-7361-aeff-31e4f7a56fd2",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Hi-Vis Vest",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-933f-7197-b520-0894df596370",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "High Altitude GTX Jacket",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7b2d-7348-8c76-ed5996c9012f",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "High Heels",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7804-7006-a21d-a9c65b14a17e",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "High Rise",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7bd2-73db-9020-fdc2f92abf8c",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "High Top Shoes",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b6d-702d-bd0f-e260b9c21600",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "High Top Sneakers",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7962-7122-b8ee-6f21fe5716d7",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "High-Top Sneakers",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9278-712c-b1fb-9d2bf6192322",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Hike Up GTX",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7bd5-70a8-9781-0c50366e8e5d",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Hiking Boots",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b73-71fc-9c1c-a7ce7458838c",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Hiking Boots",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ec2-7165-9c96-0bb56c56a075",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Hilda",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d6d-7262-900d-98ac19018fec",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Hill",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f5c-72ea-a6b0-15bc283b4601",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Himalaya",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6b86-7114-be3c-36e02c813886",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Himmel",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4def-735c-b575-376613870e34",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Hirondelle",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-673a-7012-a074-01b543ed52dd",
            "brand_id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Historic",
            "brand": {
                "id": "019f426a-6729-7222-aa9d-873696a39660",
                "wording": "Panerai",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-657d-7375-b64d-4c4a745b539d",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Historiques",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7f09-7387-938f-1e43bff9bf66",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Hobbs",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-68aa-72c5-88fc-a1479f8f57dd",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Hobo",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6ef9-71b7-8ed7-fd9c642c3934",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Hobo",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7527-7104-9735-0d45c8fad24c",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Hobo Bag",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b13-717f-8f64-f543d62ef5ed",
            "brand_id": "019f426a-6b11-7019-bbec-da98c9ee1478",
            "wording": "Hobo Marcie",
            "brand": {
                "id": "019f426a-6b11-7019-bbec-da98c9ee1478",
                "wording": "Chloe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b3d-70b2-985c-67b1bca92301",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Hobo/S",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-65cf-71d5-ac86-353e95cd9b43",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Hodinkée",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9513-7175-9217-71ac54d4af68",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Hogan Ultralight 2P",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-67c3-7293-b16e-fdae92b96509",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Hoho",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6169-724e-a978-4d8da4db3156",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Hoho Diorstar",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5883-739e-84fa-527005bba165",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Holborn",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-92fe-7187-8487-d5890d60950d",
            "brand_id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
            "wording": "Holbrook™ Coalesce Collection",
            "brand": {
                "id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
                "wording": "Oakley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-81e3-72da-a970-d1bb60e07bef",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Hold Up",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7704-7339-b4ab-6e5ac0d0077c",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Holdall",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-68ff-724a-b3bd-454eea7e30ec",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Hollow",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-738f-733d-8137-370f62770e2b",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Holly",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5b83-70f6-85f2-70234f5aa593",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Holly",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-782c-72ef-8248-e9b24a31da16",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Hollywood",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5473-72e5-aeaf-966de97ca801",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Holy",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8071-726c-be03-ad85f251b13d",
            "brand_id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Homme",
            "brand": {
                "id": "019f426a-8068-7063-bfbd-093dac92f505",
                "wording": "Annayake",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f71-706d-9c1f-89ecadd0d765",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Homme Aquapower",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8054-7273-b9c7-40aadf9b6643",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Homme Nature",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6943-7200-9563-652ef77abdfb",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Honey 110 MM",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5df3-73f9-9a85-eb33dcc22335",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Honolulu",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-72f9-7300-9c74-684dc8b0cfad",
            "brand_id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
            "wording": "Honour",
            "brand": {
                "id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
                "wording": "Zimmermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7711-72a9-aa7f-a6b0c740c70c",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Hooded Chase",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77f9-7036-ab72-ee883d1761fc",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Hooded Windbreaker",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-906c-71b6-97a5-10bd2e28d053",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Hoodie",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ed1-7395-bada-b6aa58da4362",
            "brand_id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Hoodie",
            "brand": {
                "id": "019f426a-7ecf-7389-8f01-6e4933499394",
                "wording": "Jack Wills",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-74cb-7263-b83e-726ca171474e",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Hoodie",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-68d5-73dc-aa4b-fb5755b90ef7",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Hoodie Zippé",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6906-732b-9c18-b53958af212a",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Hook",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7bb6-7152-a464-c2e3c51c409c",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Hoop Earrings",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5b2e-71fd-83a8-10c9ae55a51f",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Hooper",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-76b7-71c5-a33c-a1834007c71a",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Hoops",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-56e5-71df-9804-891f59297223",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Horizon",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4b76-7019-9ebd-5cf03af0c0af",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Horizon",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-68d8-73b1-9361-82ffa6cb9dd6",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Horn",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d61-72d3-893c-bb08bb9ebffe",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Hors du Bureau",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6796-716d-a674-6a4fc7fcbe7b",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Horsebit",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6762-71b8-b15d-5907779834bd",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Horsebit 1955",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-729f-7027-a946-6f9f37fe7b74",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Hortensia",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-49ff-7330-b551-20c82035c3be",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Hot",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9468-73c0-9798-e31b3189f01c",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Hot Ratz™ Hand Warmer",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-946a-72fb-ad94-e133565ff578",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Hot Ratz™ Toe Warmer",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-86d8-7347-8e1e-ae3219d09192",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Hot+Cool Jet Focus AM09",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-873e-70e0-b407-d4c4f94f114e",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint AQC9 BF7 TZ1",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8739-7148-b727-41a74c797af2",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint AQD1171D 697 EU",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-874c-72a9-9fb7-78f0ac8a5f68",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint FQ 99 GP.1 (AN) X/HA",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8743-7052-8332-fa071d61da42",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint FTCD 872 6H1 (EU)",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8740-7351-9443-0fb32d996455",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint FTCD 87B 6 H1",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8754-7287-bd69-d23765dbc1f5",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint LFT 228 A HA",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8752-72ad-b0e1-e5c3c8fa3405",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint LSTB 4B00 EU",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8756-7032-a255-5e4c0ed219d5",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "Hotpoint LTF 11H121 EU (X)",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9430-703d-b6ad-1583e022b730",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Houdini Jacket",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-694f-737f-bfc2-2aead5991604",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Hourglass",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5bb4-7241-9cb7-a0b5e74499f4",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Howard",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-538c-7210-a93a-a5f8c0268ace",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Hubert",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-66e9-71f4-b24f-4e218791b25a",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Hudson",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-86c2-71a2-82c7-dda75e4de88e",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Hue Go",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86c1-7019-ae9a-82ba85f0cc63",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Hue Lightstrip Plus",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86bf-7102-8085-76609f796abf",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Hue White and Color Ambiance Starter Kit",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6bb3-7325-9dda-deffdffe5992",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Hug",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9019-727c-817a-55403f05f730",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Hugo",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7f13-711e-99be-2c8fc7dd696b",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Hugo Boss",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7440-7304-9315-c5a64cdb801c",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Huile",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5209-7219-abe9-2e5d95b51b61",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Huile APAISANTE",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-51c6-70b8-a0f7-2d95d2acf400",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Huile Germe de Blé",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5206-7146-a6e1-25e6f19c642d",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Huile de Magnolia",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5203-703d-a455-8ca7c6fc928c",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Huile secret de Beauté",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-80a4-71a6-9a08-656d9b433270",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Huiles Essentielles",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-90a2-711d-a2a8-06b2d2b9b0a5",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Huiles de Massage",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5c29-72a8-8ae2-f8dc8d7a0ca6",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Huntington",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8fa0-73b8-b37e-1bb2a9a9e29d",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Hurricane",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94e5-71d8-8bd5-594977760625",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Hurricane 2 Kids",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-94e0-7149-877f-a49ebdc1f6ea",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Hurricane Sock",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-94cf-71bd-8699-c457000d357b",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Hurricane XLT2",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-63d5-7266-946b-b373d6d5f580",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Hussard",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5c3e-70d4-b9cf-3de6f9072ffe",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Hutton",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-817e-71bd-9c35-d6010b41a593",
            "brand_id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "Hyaluron-Filler",
            "brand": {
                "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
                "wording": "Eucerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-80bc-7167-99b1-336203be3346",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Hyaluronic Hydra-Powder",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-66a7-72f3-b6fa-76bdaccae71c",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Hybrid Smartwatch",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cde-7177-b0b0-5ac80bbd05a8",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Hybride",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-913d-727e-8a35-28b8805c783d",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Hydra",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7fc1-70ca-9d5f-bfa7a707ea6d",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Hydra Original",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f97-7348-8f1a-71cf4bb800cc",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Hydra-Essentiel",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8005-73ce-92d2-ba6545f788fb",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Hydra-Global",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80b7-7240-8d10-681836c9e153",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Hydra-Éclat",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f57-7102-bf68-65a279107ddb",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Hydrabio Sérum",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-805a-7393-bb9f-b7ba063ad282",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Hydragenist",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f42-71e2-a32b-2ec67debc5ae",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Hydrance Optimale",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8234-71a2-891f-fbb840d091a6",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Hydratante Visage",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81bd-7372-8c1d-2765e28d2ff1",
            "brand_id": "019f426a-81ba-714e-a280-ee8776b414cc",
            "wording": "Hydratation",
            "brand": {
                "id": "019f426a-81ba-714e-a280-ee8776b414cc",
                "wording": "Ricaud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8154-722e-b09f-d71e0c5d3a23",
            "brand_id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
            "wording": "Hydratation",
            "brand": {
                "id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
                "wording": "Yon-Ka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-80a1-7301-91a6-318e4a61bd8e",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Hydratation Intense",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-82a6-7048-bccb-0267da3dd9ba",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Hydratation Intense",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8114-73e7-bdf6-fef8984dbe9c",
            "brand_id": "019f426a-8113-7385-9a93-7939bb111740",
            "wording": "Hydratation Intense",
            "brand": {
                "id": "019f426a-8113-7385-9a93-7939bb111740",
                "wording": "Resultime",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-801b-70cc-9d3a-8ecd7bc448f7",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Hydratation Marine",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6721-7048-8cee-62fd871ed0fa",
            "brand_id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "HydroConquest",
            "brand": {
                "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
                "wording": "Longines",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9494-723a-b756-c4120c56aa33",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Hydrospex",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8215-7222-8c89-193889bf1233",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Hygiène",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82b8-72e3-ae84-3fc0328ded84",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Hygiène de la Bouche",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-90aa-71ad-9d55-cfc5b0d1f101",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Hygiène et Bien-être",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-81db-7315-a15a-ddf8f01ec219",
            "brand_id": "019f426a-81d4-7077-b134-45f9f78252fc",
            "wording": "Hygiène et Santé",
            "brand": {
                "id": "019f426a-81d4-7077-b134-45f9f78252fc",
                "wording": "Fleurance Nature",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-707a-7057-a9a6-269f4d3f166d",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Hyper Monogramme",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-650b-72d7-9779-1a6ba3b0d0f2",
            "brand_id": "019f426a-6507-71a0-a295-a0709a7fe38d",
            "wording": "Hyper watches",
            "brand": {
                "id": "019f426a-6507-71a0-a295-a0709a7fe38d",
                "wording": "Roger Dubuis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8031-7098-9e8d-4efe10c55c85",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Hyséac",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5704-7023-b85f-2f42922e122a",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Hématite",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6607-702b-a986-09f85452b318",
            "brand_id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "Héritage",
            "brand": {
                "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
                "wording": "Louis Erard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-53ad-73ee-b4b6-719627eac1ec",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "I Love You",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4f9b-70d7-9d90-c3c97a434427",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "IBIZA",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8a39-72c5-ab7f-e32d7f3ad0ba",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "IBN 200",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a3b-716f-9b1d-6383592bd191",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "IBN 200 DX",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a3d-71ff-95af-e296e569c9d5",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "IBN 300",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-59a1-7375-becb-e086e3314930",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "IBROX",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59a7-7394-ac28-92fd16b1d38f",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ICEFALL",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8e2f-72b0-ab67-aec0f275eabf",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "ICM14011",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e2e-7124-b652-8ddf7a725483",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "ICM17210",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8a3f-72ba-91dc-d741a56d418f",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "ICN 200",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a42-727f-beb0-1c2b680811cc",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "ICN 300",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a44-7139-812f-856d59b48dc1",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "ICN 400",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6773-7178-b033-fa9dc48af7c5",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "ICON",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-83de-7119-9a80-ede7993b1b31",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "IDV 75",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83e0-72ec-bb35-b9c86794a27f",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "IDV 75 S",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-76c9-7300-929c-e1c8329496ca",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "IDYL",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-83f7-72ab-9817-8795321d84d5",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "IFW 4844 CIX FR",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83fa-7319-acbb-3bac5b53bc7c",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "IFW 4844 H IX FR",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83f8-73c1-8221-0920967e9b11",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "IFW 6844 C IX FR",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5ca2-7221-a1a0-4bdcb8e46f68",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ILEANA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5cf4-73cc-850f-1f745e83a967",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ILSA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c9f-709b-980c-57581063baaa",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "IMELDA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d45-7070-b5da-dea50b61d923",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "IN GOLD WE TRUST PARIS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-562c-7082-bc8b-45a3ba151975",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "INA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dcd-70c7-b299-c6e0cf1caa33",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "INDIA",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4919-70d9-b481-bbd514bf317a",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "INDRANI",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5d8b-724c-b9f9-0689d77c9a57",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "INNERRAUM",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4d67-7019-811b-b92c5e5df3c7",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "INSPIRATION",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-55a8-7028-8534-9ffde1610017",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "IRA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8a45-73ec-ab9d-fda23c0f025d",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "IRC 250",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a48-7370-865a-a69e7de4d30f",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "IRC 300",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a4a-7194-8a71-a7664f9daeb1",
            "brand_id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
            "wording": "IRC 350",
            "brand": {
                "id": "019f426a-8a37-73e3-9776-f3d6ae674f4b",
                "wording": "Iberna",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-83dc-71ae-8c5e-e3084d139d20",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "IS 41V",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5d6d-7294-a368-c7fd40b4ceac",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ISABEL MARANT",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5cf7-7169-9d8f-2b6b08894295",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "ISAE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5667-72ab-a5b2-41773f2f2e8d",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "ISAURE",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6dfc-7062-86b4-1a435b8d1539",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "IZELLAH",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7c7d-70de-aba3-774218cc4dac",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Ibiza",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-900c-7375-9da6-31ba0b2d3b35",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Ice",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-646f-7140-b4ac-fbe368964690",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Iceberg PRO DRI",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8afe-72a8-a4b8-f868e36cc299",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Iceblokk",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9007-7310-9bac-f6409a2a5453",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Iceland",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-936c-736f-8fba-15c8af940528",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Icon",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ecd-72db-ba1c-b3d0ef06a83b",
            "brand_id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
            "wording": "Icon",
            "brand": {
                "id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
                "wording": "J.Crew",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cbe-7026-a8d7-2dfd4dfa69df",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Icon",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8e24-717d-879b-24e25f5e2a86",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Icona",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6b53-73d0-8a8a-4a3619bf7a79",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Icone",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a4e-70ec-94b8-e7febed64d3d",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Icone",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-668c-716e-abc9-a2ae850eb3ec",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Iconic",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6a62-7386-ae42-c596fc18a0b6",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Iconographe",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-74ba-729a-a168-939c186da582",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Ida",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b05-70b5-9c4e-535554472a7b",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Identifiant POLO",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-807c-7034-9519-d1adfab39857",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Idéal Hydratation",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8044-7376-9db1-e99437237f2e",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Idéalia",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-61cc-7398-acd6-0c3811c6b33c",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Igata",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7ef6-71f1-9580-c8779a1c9275",
            "brand_id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Igor",
            "brand": {
                "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
                "wording": "Jerome Dreyfuss",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-558a-70d9-b569-b7eff74ae465",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Ikenna",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-901f-7074-8da6-63415567a559",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Ilona",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4bd5-7055-902f-a7a3bdfc3da6",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Imagination",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7372-70d3-8032-2505259cd0f8",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Immy Lace",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-921b-7259-b09d-bb4dcb2530fc",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Impact Run",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-68ba-73da-a0ed-fd9d9ff48d02",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Imprimé",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67ca-7286-899e-895e57e076cb",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Imprimée",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7280-7384-a74c-972b159b66eb",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Imprimée",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-631a-7354-be1e-fc5cf96199e3",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Imprimés",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-68b4-70b6-84a0-9ce6bdb9680f",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Incrusté",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-73e0-7361-bcd6-db07b8a5cf42",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Incurvé",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6b99-7276-8751-a543bb06e0f9",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Incurvé",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-88e8-7181-99f7-56ff13970a19",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Independent",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5c6c-73a4-b8c7-b25216b515cb",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Indiana",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-54b3-71ec-9ad4-ff5ded0d2d44",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Indra",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5653-7219-841c-f1eac9756e6d",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Ines",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4e38-7399-9160-bdd8ed1b035d",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Infini",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-49c9-737f-8eae-b859040a439f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Infinie",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8f81-701c-a8e6-449f454e3ddd",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Infinity",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7dd0-702f-8379-d8cf61a24f8b",
            "brand_id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
            "wording": "Infinity",
            "brand": {
                "id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
                "wording": "Go Dash Dot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-49ee-72e5-a6b5-86a1047a280f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Infra",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-673e-72c2-ad49-ca0f8b75487f",
            "brand_id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "Ingenieur",
            "brand": {
                "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
                "wording": "IWC Schaffhausen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-84eb-72c3-a779-afb99c994577",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Ingenio Essential L20098",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-53ba-70d6-9eee-61203c0cc0d1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Initial",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53be-721d-9794-d7e7aa3fee51",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Initial PlaquE",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54bf-7384-8389-3158d1dd486a",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Initiales",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6edb-73b8-883c-2991f7f3a127",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Initials",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7790-710a-94c2-0f2c17ee354a",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Initials Ceramic Mug",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-56f1-72c4-a9de-f7e44ba8c89a",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Injurieuses",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-90bd-71ef-9101-3afc0ab600c9",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Inline Skates",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-49e9-703c-b3e8-0694da43d2e9",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Innocent",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-945f-71d3-be35-6c094031fb84",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Innovation 1050 Xtreme All Weather Gloves",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6519-701d-abf8-eac17d15cb58",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Insight Micro-Rotor",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-48b7-7069-8493-887ef30979b0",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Insolence",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4d7b-7072-af75-757343ec0097",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Inspiration",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d1e-70df-9c56-a3f4063f269e",
            "brand_id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Inspirations variées",
            "brand": {
                "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
                "wording": "Stone Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7fdf-7075-960a-a64c727b0d65",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Insta",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-91f0-708f-87fc-a64c8c2b0169",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "InstaPump Fury",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-855e-708c-a7bc-3ed20ba797f8",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "InstaView Door-in-Door",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8199-7314-9f03-1eb9bf2a1d91",
            "brand_id": "019f426a-8192-70da-b75c-eaa48af00b37",
            "wording": "Instant Kalmer",
            "brand": {
                "id": "019f426a-8192-70da-b75c-eaa48af00b37",
                "wording": "Pai Skincare",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9310-70df-afc7-3998ce177a28",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Instinct",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7bf7-7245-9a7c-6e9b5f4d0a20",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Insulated Quilt",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-944b-72c4-ad98-67de071dc324",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Insulated Vest Valdez",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-818e-7158-b330-4687373e4613",
            "brand_id": "019f426a-8189-7363-93e6-15e1783a6be6",
            "wording": "Intensif Peaux Sèches",
            "brand": {
                "id": "019f426a-8189-7363-93e6-15e1783a6be6",
                "wording": "Mixa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-80ef-7093-b6e7-4f72cf1ac4a2",
            "brand_id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Intensive",
            "brand": {
                "id": "019f426a-80e7-7070-822b-75c13f312f2b",
                "wording": "Esthederm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e68-73d7-b024-173edca79e94",
            "brand_id": "019f426a-7e66-72bb-83e4-8dd08920539d",
            "wording": "Interactive",
            "brand": {
                "id": "019f426a-7e66-72bb-83e4-8dd08920539d",
                "wording": "Hogan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-676f-712b-be70-718b44ce8c86",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Interlocking",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5fc0-737d-af38-31c0e09cbb28",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Inti",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-947b-708a-871e-d871bbddfa45",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Intraknit™ Merino 200 Crew",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-69df-708a-866e-e727ca20e998",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Intrecciato",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9334-734c-9495-c9666fb93514",
            "brand_id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "Invent 4.0 Pants",
            "brand": {
                "id": "019f426a-9329-7339-9d07-2b866765b6d6",
                "wording": "X-Bionic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-706d-7281-a72f-c6b4320032c9",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Invictus",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5b21-72d3-afbb-32f25530979c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Inwood",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-55f5-7065-8fef-a2ea94cf415d",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Inès",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54fb-72dc-bcf4-a81e2b568f7e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Inès",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4a01-7261-bf8a-fc8ffb7daf72",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Iota",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5401-739e-b5f6-5ce435c63fc3",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Irena",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-746d-73f9-9b56-6caffe85d07c",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Irene",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5413-7305-a415-45487ece167f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Irene",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5367-70ff-8e0b-430d60f474f9",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Irina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7098-73fb-89bf-d436388144b7",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Iris",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-507d-7213-a85e-18966643d793",
            "brand_id": "019f426a-507a-706e-8cb2-16730c7a8362",
            "wording": "Iris Nobile",
            "brand": {
                "id": "019f426a-507a-706e-8cb2-16730c7a8362",
                "wording": "Fragrantica Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-66c0-7045-a93e-019f0163357f",
            "brand_id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "Irony",
            "brand": {
                "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
                "wording": "Swatch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-72ae-707f-b6ae-b0a1453ed5f3",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Isa",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c8f-7133-b12c-c686d83ff29b",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Isabel",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a08-730c-9f5d-b43edf75891c",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Isabel",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-773c-709c-81dc-8e0aa3999f88",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Isabella",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-73c0-7316-883b-838dad04c847",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Isabelle",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-741e-73f1-b611-184ca83f8c41",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Isabelle",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7826-713c-8a59-dbafa191c6a5",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Isadora",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-523a-71bc-8d51-44dec18e6ce6",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Isaline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5305-7147-af99-c8156aa39b00",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Isaure",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7410-7308-9f10-939ab5f670f0",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Iseult",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6eee-702e-b6da-504ee5feb561",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Iside",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5221-72db-a03a-7ce67860dcda",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Isis",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-49d6-7010-8d73-a970888bdc97",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Island",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-77c5-7157-a256-8fedf7c1a65a",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Island Bunch",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6b48-7351-9ed1-50df9d19338a",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Islington",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4f3d-7050-91bd-9147df79fce3",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Itana",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f02-7090-8b76-e32c3dc538df",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Itiba",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-49fd-72d6-872c-5407a6a4a6b5",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Itinéraire",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-523d-72c1-b4ec-333f1927d20b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ivanito",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6256-70b4-8342-9d97ccebae70",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Ivoire",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-539e-72d0-81e9-7144a8053928",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ivy",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-68f0-7328-a395-58270a5ef4e7",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Ivy Flora",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-68ef-71f2-9961-9cad9da3a2b9",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Ivy Shield",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6b1f-72fc-b08f-e11b9c75b401",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Ixie 95",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a56-7184-b7c6-1217b43c9537",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "J Marc",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f00-7162-ab64-4aa7b725aaa7",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "J12",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5c9b-71ae-9515-9925fd5589d2",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "JAILEN",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5950-714c-b475-cbdb9a3a0699",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "JALEN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59ec-733a-81a6-2c6df7681bb2",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "JAMES",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5c99-734a-a7dc-7df03a502d8b",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "JANIE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6b2d-7290-853d-2b7ee3c3052e",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "JC",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7151-7043-ba5c-a3bf72bad66f",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "JCC Climi",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-59a9-708c-af3e-68aff43e23ea",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "JEAN KENT",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d51-72fc-aa1a-31b548fa4a25",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "JEAN PAUL GAULTIER",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6499-72b2-9971-433a082a0ebc",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "JETFIN",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5d81-7166-8983-8430d7e47f06",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "JIL SANDER",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d78-7261-bbab-d624171303da",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "JIM SANDER",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-63b6-73e7-9633-933c3bd944a4",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "JO9",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-716c-7312-8b6c-4dbe4fcf2244",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "JOAN",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e23-72d6-8ae0-54a86e71ad09",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "JONIS S",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-716a-724a-a8e9-2b70123c0580",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "JOY RIDER",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5c97-7171-a1ef-12d896640308",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "JOYCE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-63b2-718b-96df-78bdc4dd73b9",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "JS9-41",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63b4-7112-8155-0e9825ea8fb3",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "JS9-44",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5daa-719f-998f-ad4f39bb771f",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "JULIUS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5886-732b-b440-f5930d0ca019",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Jace",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-485c-73a5-9697-2d071e360af1",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Jack de Boucheron",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-675d-70e2-b5eb-eda3e46edada",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Jackie",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-708c-715e-92c4-730bab73a8f2",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Jacquard",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b91-73fb-a760-31247fa59933",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Jacquard Lauretos",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-631d-72a8-9433-890d05522bf8",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Jacquards",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-66ae-72d8-9673-90248f25c57b",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Jacqueline",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7f29-70e3-9fa9-61bd6c8e2081",
            "brand_id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
            "wording": "Jacques Thermo Plus Double",
            "brand": {
                "id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
                "wording": "K-Way",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7b5a-7188-b39f-556ed77bf450",
            "brand_id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "Jadon",
            "brand": {
                "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
                "wording": "Dr. Martens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-586a-73f7-8259-69fdadcced2b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Jake",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8f8f-72db-9ec6-a135018cf2af",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Jallatte Jalarcher",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6ce6-7212-94a0-0ac4d156715a",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Jamais Encore",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d94-71a4-aeda-ad8566bc9d97",
            "brand_id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
            "wording": "Jambe droite",
            "brand": {
                "id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
                "wording": "Gerry Weber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cb5-705a-8a63-d949e7165822",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Jameson 2 Eco",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5a8c-71c9-ba20-45348ea17c91",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Jamuna",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7c6c-7047-b829-995ab4517954",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Jardin",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4a6b-7340-b391-ac3029d2c3e3",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Jardin Imaginaire",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8052-7004-a8d0-aa3640d50de7",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Jardins du Monde",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5579-737a-b276-52c8db196d5c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Jasmine",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5a79-714c-a60f-0d3f7ce5438e",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Jati",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-589a-7303-a972-3f3ffc068630",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Jaylen",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7a47-7267-8b53-40768bb12ed5",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Jazz Crossbody",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-48c0-719c-ac47-8491ac7ec9a9",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Je le Veux",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5427-737a-95be-4bad6139aa44",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Jean",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7bfa-7258-9efc-2eee80b4699c",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Jean Clutch",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7190-7329-ac35-214333fb00bc",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Jean Large Bonsai",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7fe3-7130-a3ea-d464248b8c5d",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Jean Marie Farina",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-620a-7331-abc3-4ecbd7d6ece4",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Jean Mick",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7198-708f-8b1f-ba82f15997a3",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Jean Slim M001",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-53bc-7207-ae63-c02936edf4f7",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Jeanine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5596-72d3-b341-894e5487eb3e",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Jeanne",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5c53-7006-ab61-ef0e795fd427",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Jeanne x Petit Gramme",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6ae0-72b7-a8f0-616232b8d1e9",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Jeans",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-71e7-70e3-bb88-822bd365bc88",
            "brand_id": "019f426a-71e5-739b-b009-e6c9f9883af0",
            "wording": "Jelly Bag",
            "brand": {
                "id": "019f426a-71e5-739b-b009-e6c9f9883af0",
                "wording": "Susan Alexandra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4dec-721a-a016-f1d594c0d532",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Jemina",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7226-73a3-b17e-04a62d4a34df",
            "brand_id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "Jennifer",
            "brand": {
                "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
                "wording": "Tom Ford",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6af2-733f-acbc-174e34412342",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Jermain",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-66f8-7181-9ce5-640b15e02513",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Jersey",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6a08-72d3-9e13-107d70c536f2",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Jersey",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-678d-7078-a1cb-013f2e40ddd1",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Jersey",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b99-730d-a023-ffcef1888e96",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Jersey Top",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f3d-71e8-ba42-418c5e37f1ae",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Jet Mach II",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f56-7237-839f-403087f5e9e7",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Jet Premura",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-85b5-70c6-a0ee-4432866b5dcf",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Jet Stick Vacuum",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-829b-72dd-b2fd-4144126d79f3",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Jeunesse Eternelle",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-73d0-733e-89ed-da4bd9c27fe5",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Jiselle",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6d5f-7309-b609-086dbf8fc3c5",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Jitney",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6418-7273-86ac-c97a678bc927",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Joaillerie",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-53f8-70cc-b744-9200f378fa2b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Joanna",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-912e-7324-9bba-f83fb3b893e0",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Joao",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-69ce-71eb-b439-17d1bb93596c",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Jodie",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5e23-732a-97fb-32eac1545231",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Joe",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61e3-73e5-9393-00e78eaa0742",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Joe",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61c8-73a9-a39e-96b43c535a57",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Joecassin",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-74d4-7068-8647-4b1212538e30",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Jogger Pants",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-69aa-7376-94dd-ff6d4ae8b11b",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Jogging",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6874-71bf-96bf-97983829f6a9",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Jogging",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-65da-72d7-b444-93ff27bbb5f4",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Jojo",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6817-7285-9e53-2d85321fb547",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Jolene",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cb2-715d-a6fc-5c8b30468193",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "Jolie Madame",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5b80-715a-8df0-325473a8b3e6",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Jolie x Louis",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-70e2-725f-a3d5-42f129b799d5",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Jombe LARGE",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4f77-7325-9e92-53ce98955411",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Jonc IBIZA",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f72-7059-bfe6-5b5dff1624f2",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Jonc Perroquet",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f68-7290-ba5e-1ec93258bee0",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Jonc spin Vertigo",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4aad-739a-baeb-e20cedd7d6bf",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Joncs",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6798-73e3-af67-233ce5b3aabd",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Jordaan",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-55bb-71a2-b4a9-aa650a078bdd",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Joseph",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5348-70f9-824a-338551d27eef",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Josepha",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5351-71ae-bb0b-ad4d4ea9a750",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Josiane",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52d8-71db-ac0c-a1af0242b14c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Josie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-48aa-70b3-844f-692a849a3a05",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Joséphine",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6c29-7064-8e27-532e4d6e4c57",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Jouet",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7f0b-73ce-8bde-ad44ab642b11",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Joules",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-74f1-72f5-8ebb-5d5034d3b49d",
            "brand_id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Jour-Off",
            "brand": {
                "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
                "wording": "Berluti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6cc8-73d6-9107-efe85b041a42",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Joy",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6d3e-71bf-bcb0-990682013c61",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Joya",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5377-71f7-96f2-aee18c3c8ec1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Juan",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53c3-70d5-a367-199bae36d3fa",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Juanita",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8420-70e3-80e3-deb592d27c61",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Juice Expert 3",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7439-713d-ae12-fc56098cb624",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Juin",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-537e-70c0-bd9b-33bb00eac545",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Jules",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6665-7267-aeeb-3a8f58cbd819",
            "brand_id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Jules Audemars",
            "brand": {
                "id": "019f426a-6658-730b-8c56-248220cc560f",
                "wording": "Audemars Piguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6295-724b-9d32-e17d1165ff72",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Jules Verne Tourbillon",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63c4-706c-b7d7-cda9a797a4ca",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Jules Verne X26",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-551c-713e-af56-c37066527ea5",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Julia",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dc3-7325-89d9-91bcbda4a931",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Julia",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-541c-71f2-9791-11193e8f1478",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Julia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c77-7251-8d28-f2f4b5e81b80",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Juliana",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c67-723c-b5d6-7adc594765a3",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Julien",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4dd7-715b-a127-911bbd17a1a2",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Juliette",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-751e-7251-9610-f4ed2b3dfbdc",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Jumpsuit",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7d1f-7346-87aa-61376c675890",
            "brand_id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "June",
            "brand": {
                "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
                "wording": "Frances Valentine",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d11-72f2-bf4b-d7b420c8157c",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Jungle",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-56ce-7396-a105-f4309a1041f4",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Jungle",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-925e-72dd-b9de-47722461548b",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Jungle Moc",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5b43-7197-977d-2876a3cf9b6e",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Juniper",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9263-72ba-86aa-98b50c90753a",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Juno Clog",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5236-7248-b0b4-2f396053fa40",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Junon",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-700b-73ec-9858-0eec4f1e67ce",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Jupe",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f83-7279-a61f-130e99dc7324",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Jupes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6add-716a-8f57-fd906655f9bd",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Jupes",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6ea6-7311-9943-6d5714cc8955",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Jupes",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-538e-723a-af82-3bb82e6eeac1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Just The 2 Of Us",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4848-70ba-8e17-1a0d137a7674",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Juste un Clou",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7bdc-7040-910d-75b3409b8910",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Jute Sandals",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-85e4-7127-bb13-e85f10d8cefd",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "K 20.000",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85e8-73d6-9e66-3f69626b6ff3",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "K 28.000",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-92a0-72ca-b459-09a9e1c268bc",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "K Absolute GTX",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f38-711a-b172-400180c1aaed",
            "brand_id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
            "wording": "K/City",
            "brand": {
                "id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
                "wording": "Karl Lagerfeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f3c-7083-a137-066e5f09fcce",
            "brand_id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
            "wording": "K/Ikon",
            "brand": {
                "id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
                "wording": "Karl Lagerfeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f36-7269-a55f-b6e88cf2fe1a",
            "brand_id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
            "wording": "K/Klassik",
            "brand": {
                "id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
                "wording": "Karl Lagerfeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f33-707f-9c6c-8139de3ce268",
            "brand_id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
            "wording": "K/Kushion",
            "brand": {
                "id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
                "wording": "Karl Lagerfeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f3a-7138-a91e-646707d932ef",
            "brand_id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
            "wording": "K/Skool",
            "brand": {
                "id": "019f426a-7f31-71a5-baf5-70f9fde7be0c",
                "wording": "Karl Lagerfeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-88c4-71d0-ab22-f484d1667e5a",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "K400 Blender",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d24-706d-a535-62dda3bda793",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "K5111CW",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8bfa-70d7-bdb4-cebee58358c5",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "KA 4479",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bff-70c5-b194-f3910f45ac7d",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "KA 5978",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bfd-7131-9187-4b48416d0646",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "KA 9231",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-544c-7166-8102-b6b7cfba0a85",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "KAKO",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5572-703c-9d94-1b9edd8f85a5",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "KAMALA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5c94-7275-abd0-61721512c874",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "KARINE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c92-70c5-8dcc-c711b37503a3",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "KAYLA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-87d1-7196-b2e9-959ac9f3ddf6",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "KB 4310",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8ba2-723a-bf82-0631bd369ae1",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "KB15",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-93af-703e-a076-340ad0b05ce5",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "KC 2.0",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-84ab-7285-b8ef-a15a268f5325",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "KCV90NE",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-55c2-7124-b171-483847e13c57",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "KENZA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6d10-7128-a544-3b01c68fea43",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "KENZOGRAM",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6d0d-716f-bc63-b44ea032047d",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "KENZOGRAPHIE",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4fee-719e-8442-045b7ddf54d5",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "KETER",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-85e6-7171-8b9b-75d1b3a32f9c",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "KFN 29.000",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b28-713c-a10d-0a3b02cc5576",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "KGNF 18P 2 A3+",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84aa-706f-bb14-e1bddaaad43c",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "KI120XE",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6492-7214-8b92-0ddae79c5c62",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "KIT Bateau",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d71-723f-96ed-8b0f7d648a56",
            "brand_id": "019f426a-8d6c-7145-9810-27b96ddf893f",
            "wording": "KM 8680",
            "brand": {
                "id": "019f426a-8d6c-7145-9810-27b96ddf893f",
                "wording": "Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ba6-71ba-af72-a99daa43aec3",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "KM65",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ba4-7165-8e18-e0c4d897ced6",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "KM78",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a0c-7347-a11c-a808200a052a",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "KM80",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ba8-735f-acfa-0db4c66a61d8",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "KM80",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a17-7250-bf82-0b3208914e88",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "KM80S",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a07-72be-af87-35fba3a34f30",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "KMG90",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-594b-70d9-bf6b-d7a6e33df09e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "KNOX",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8ebc-7138-8b7f-4c90c537b869",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "KOPP Access",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8513-7252-b864-1da089ef866d",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "KP1305 Dolce Gusto Lumio",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b26-703b-a227-7634513dbfd0",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "KR 19G4 A2+",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84ad-708c-b499-cd83f4b2e8bb",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "KSM24XU",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-59b2-7285-8bbf-c536ed5f4259",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "KURT Droit",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d7f-7303-9874-483e9121c8e4",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "KUSIKOHC",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8c01-7355-9421-268747ee3c67",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "KV 8061",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-939e-72a9-886d-a23ab181e1f4",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Kahuna",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5462-724f-a612-c0e1baca74c7",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Kaki",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7726-707f-90bd-2a3d2a3a51ca",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Kaleido",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5aa6-7239-ba9f-34853737d07c",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Kali",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-69c3-7197-a4ab-bfe605632e47",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Kalimero",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-901d-711c-880d-3049cfb274de",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Kalinda",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5ae7-72ad-80b0-543845455603",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Kamala",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a63-70c9-9bab-b62e3d83dc1c",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Kamala Grenat",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a73-7216-a8b5-1be33d298642",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Kamilah",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e0f-7017-a621-b69b9d9bd17b",
            "brand_id": "019f426a-7e0c-7332-84e4-d954cb74c752",
            "wording": "Kamryn",
            "brand": {
                "id": "019f426a-7e0c-7332-84e4-d954cb74c752",
                "wording": "Guess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8fad-72fa-89fc-95876869bcbe",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Kanga",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7f0d-709a-8c4f-dd1f22bfd57c",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Karen Millen",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fc6-71a5-8e8e-b9cb72428f24",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Karité Hydra",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-753a-705a-88f8-86c0fd111736",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Karl Bag",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-811f-7209-89d0-274de757aaf0",
            "brand_id": "019f426a-811c-7328-be82-c107f6ea8639",
            "wording": "Kashemire",
            "brand": {
                "id": "019f426a-811c-7328-be82-c107f6ea8639",
                "wording": "TAAJ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-952c-7160-88ee-dfdfce2d5350",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Katana 108",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6975-7386-87d6-0794c6929ea0",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Kate",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cc7-72ef-a231-b103305e1795",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Kate",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-61b6-7171-9626-e22084841ddd",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Kate Wallet",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7351-7083-b5bf-d9b8343f9f57",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Katswirl",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4b74-70de-8641-c52357c364f0",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Keepall",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-73d6-70ae-8730-56503be43bfa",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Keilly",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4db2-7188-9c6e-4bdc24ebb08a",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Kelia",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4967-7158-935f-442b9f36a847",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Kelly",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-901c-70e1-9100-362547bf1c91",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Ken",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-952a-738f-9d2e-caac6cbfd186",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Kendo 88",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-685d-7367-9d8a-1ec7ba320936",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Kendra Glisser",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6205-71b2-a487-1418ef4c5e85",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Kennedy",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-588b-71dc-9c54-8578ea40a3a9",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Kenneth",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-699d-7256-aa9f-d41006ca13ce",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Kenny",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-58fa-730f-a975-6a83e9be9d71",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Kent",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-72bb-7310-9f69-b0c47d39c8d9",
            "brand_id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
            "wording": "Kenyatta",
            "brand": {
                "id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
                "wording": "Want Les Essentiels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5c12-7092-a2a3-4c4f1f821991",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Kerry",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-902b-7375-8b5f-f690170f96b9",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Kettlebell",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7a95-70ab-a43c-10dc3e6097cf",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Keychain",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7502-7306-baf0-93bb73697ff5",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Keychain",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-75a0-702f-89dc-347e78d38876",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Keychain",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c04-70b3-829c-df217d22d3c3",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Keychains",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5e59-7089-9cac-1be202799567",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Khepri",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5aac-7044-a986-a0a7d439f386",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Khol",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-772f-7014-acaa-e8e4ceacea75",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Kickflip",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e30-736d-97b4-e6e1a37e5618",
            "brand_id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
            "wording": "Kids",
            "brand": {
                "id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
                "wording": "Havaianas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6a4b-73fb-9c07-493b617fde3e",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Kiki",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4e29-73da-af8d-ae2ee6cf9aa2",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Kikiballa",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7b81-705e-8f8b-9387e4f14c2c",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Kildare Boots",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a0a-7332-b172-301ccd29c949",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Kimberly",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9177-727b-a996-5ffb977aa34d",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "King",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4fe7-73ad-8270-807ed3368a6b",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "King David",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-77cf-73d0-a8e4-3115988648e4",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Kingswood Rose",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d64-7332-babb-a95b0775928a",
            "brand_id": "019f426a-7d5e-717d-b460-7757ff76f29a",
            "wording": "Kinney",
            "brand": {
                "id": "019f426a-7d5e-717d-b460-7757ff76f29a",
                "wording": "Garrett Leight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-756f-73dd-b403-8fca0223169d",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Kinzie Street Cabin Bag",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-90e9-71d4-a9fc-4bce35e054a0",
            "brand_id": "019f426a-90e7-73eb-a977-8898ad949ebf",
            "wording": "Kiprun",
            "brand": {
                "id": "019f426a-90e7-73eb-a977-8898ad949ebf",
                "wording": "Kalenji",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6ac7-72ba-87b7-4fe9f3483af6",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Kira",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7a42-72bf-aca6-9d216b762b9a",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Kira Tote Bag",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4e25-72fd-b89c-ff3ce95ab192",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Kismet",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-56c4-7108-af56-6815541af76b",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Kiss",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7824-722e-80fc-e9cbceedb1ad",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Kitty",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7832-72aa-a1fa-5f58899cb213",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Kitty 85",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7827-7071-b6c3-d0be0ab62d80",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Kitty Flats",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-782b-71fd-8734-77c04649f5cb",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Kitty Slingback",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5bb6-73dc-94ff-2d618bfa1f64",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Kitty x Coral & Tusk",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7b37-7197-b144-551fea65e475",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Knee High Boots",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7908-7354-b934-951a0ef6522e",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Knee High Boots",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-796d-70a0-8b49-4e5a3c3961c4",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Knee-High Boots",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-68ca-7071-9428-7f69fa8a90c7",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Knight",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-650c-7174-bb4c-359eeec6ec54",
            "brand_id": "019f426a-6507-71a0-a295-a0709a7fe38d",
            "wording": "Knights of the Round Table",
            "brand": {
                "id": "019f426a-6507-71a0-a295-a0709a7fe38d",
                "wording": "Roger Dubuis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-792a-715c-884b-6ded8493ec42",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Knit Snood",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7bc6-7352-8ef7-f59b54bdc0ca",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Knit Sweater",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b42-733d-b287-d1fac2694838",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Knitted Scarf",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-69d5-7228-877e-23dbee2bfd58",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Knot",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8977-7119-a87b-da96cf8f152d",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Kobold EB400",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8979-73ef-8938-963fc558c32b",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Kobold PB440",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8976-71a6-b654-6da8e1ea662f",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Kobold SP600",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8973-7170-a39f-feda9630920a",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Kobold VC100",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8972-7258-ba23-d06c86f7da08",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Kobold VK200",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-896f-709b-a2fa-590ff285713e",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Kobold VR300",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-905d-7204-a790-13e09a624b81",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Kombat",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-93de-7386-a7d5-f4a4921c4bd0",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Kompressor Plus",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-622e-70d1-b036-3e7b88fa7dcc",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Kuba",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-88aa-702e-bf6c-718222961ef0",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Kubus KBG 110-70",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5914-701d-aa4f-9ab7b93b8a6e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Kurt Droit",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-91b0-737f-9d3f-57ba31a43a28",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Kyrie",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d0e-731c-9c85-2c3ccbaa2230",
            "brand_id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
            "wording": "Kånken",
            "brand": {
                "id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
                "wording": "Fjällräven",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6179-7369-805d-d900927987fb",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "L Tribales New LOOK",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5a1c-71d8-beeb-230d32bac3cb",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "L'AMOUR",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4932-73d4-a3a0-468519cbed33",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "L'ATTRAPE-COEUR",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-826f-73a9-bea0-b10727b39593",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "L'Alchimiste",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-48c6-72b2-8c3e-2c33ea69ceb6",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "L'Amour de Mauboussin",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-819f-7201-978b-605f05cccf51",
            "brand_id": "019f426a-819c-7253-95e2-b756d2c64062",
            "wording": "L'Argan Bio",
            "brand": {
                "id": "019f426a-819c-7253-95e2-b756d2c64062",
                "wording": "Melvita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8263-73b1-83bd-63d9cebc6621",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "L'Audacieux",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8277-71ae-a466-4f3e3fa57418",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "L'Envolée de Poudre",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8278-710d-a25a-6ef83d748b78",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "L'Herbivore",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4a38-7011-a893-c3e4742685e9",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "L'Homme",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7fec-72b2-9155-34131139be86",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "L'Homme",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-520c-70ab-9be5-543a70cfb8b7",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "L'Huile de leonor Greyl",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4bf0-7130-80a6-ccf24029a21e",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "L'Immensité",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8255-705a-99f2-c88e937530b7",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "L'Innocent",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8264-737c-9705-bc80b43e0d42",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "L'Intrépide",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-86bd-7074-8094-3aaa595befa0",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "L'OR Barista LM8012/60",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-48f9-72d9-ac28-c37cc97b1391",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "L'Odyssée d'un Rêve",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-81a1-70cd-990f-7d86f95297ec",
            "brand_id": "019f426a-819c-7253-95e2-b756d2c64062",
            "wording": "L'Or Bio",
            "brand": {
                "id": "019f426a-819c-7253-95e2-b756d2c64062",
                "wording": "Melvita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-639b-71d0-8022-0107e432dccd",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "L'Orangerie",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6a3a-7399-8c43-303255c5bc4c",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "L'instantané",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6e6b-70a5-9d20-539cbfb9a176",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "L-2B",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e6f-7172-9bec-102047a41958",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "L-2B GEN 2",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-63bc-7202-9b3a-521690295575",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "L15",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-846f-7279-a163-923160e4023e",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "L7FEE841S",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8472-71cd-a097-06af721f51a1",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "L8FEE841Q",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8473-731d-b476-81aab1494ab3",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "L9FEC966R",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-62e7-7087-a23d-8795b1315985",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "LABB FKM",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-60d3-73a5-887d-02631d7238f2",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "LADY Mansart",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6114-732d-968a-7140a48e8656",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "LAND",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-611e-7181-81b2-007393458b04",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "LAND Chrono",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5963-7126-8aa4-32b310fe541c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "LANDRY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5a00-71b1-9835-d9555b905896",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "LARKINS",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-63bb-725d-a83e-2a94ce90ca25",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "LB6",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-84a8-7090-becc-a012f7cd8097",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "LBB14CR",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8f24-707b-b458-c4ad799c9421",
            "brand_id": "019f426a-8f20-70c1-afdf-bad61f98b633",
            "wording": "LCS R800",
            "brand": {
                "id": "019f426a-8f20-70c1-afdf-bad61f98b633",
                "wording": "Le Coq Sportif",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f5c-729e-bb09-ffc75bd47b66",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "LD Access Jacket",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f65-73dd-bb6c-64879309e796",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "LD Aneto Low",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f60-7337-8283-8a745ed8f259",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "LD Track Pants",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5f32-71f6-9fa1-420aca053fb1",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "LE Lion",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5a1e-7352-895e-181e47716c98",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "LE SERMENT",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-864b-720f-bc8d-978f1f2d583a",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "LED TV TX-43HX940",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6192-72ca-80dd-692a456bfb90",
            "brand_id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
            "wording": "LEGACY",
            "brand": {
                "id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
                "wording": "Michel Parmigiani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5a02-73d8-b889-c83cede37984",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "LELLO",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5da7-70b4-a0df-8fb377c14b3d",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "LEMAIRE",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-59e6-729c-b9d0-4d0c899eba23",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "LEON",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5343-7314-b1f1-461eca02d360",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "LEONIE",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8eb6-72a1-b8eb-4f086afcf2e5",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "LEVO Access",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6d80-7323-b1f6-7accea30edc1",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "LEXI",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-83e5-726c-96f5-ac68f11a2524",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "LI8 FF2I X",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5634-7301-8daf-3861d6bcc061",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "LILA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-559e-73ae-8a2c-57e049afeaca",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "LILA OR",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5c90-73f4-b3e7-b6a2fec674f7",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LILAH",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d94-72c3-9e2b-c1562514e8cd",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "LILY",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5662-731e-b46e-54bdf4b54dd2",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "LILY",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5f7b-7010-b590-ccc45409f2ac",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "LIP c'est Possible",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-566a-7394-8920-f82e5a5216ef",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "LITA SMALL",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-534f-7043-9993-cfdda5882878",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "LIliane",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5563-7117-b88b-91bba26c8d82",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "LIse",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8d41-7184-b2cb-c71139348e64",
            "brand_id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
            "wording": "LL712W",
            "brand": {
                "id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
                "wording": "Listo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84b9-703a-8115-221859f5fb8c",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "LM320A10 Blender Faciclic Glass",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84b5-71c4-a55d-40aa31e1d536",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "LM841110 Blender Chauffant Easy Soup",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84b7-72ad-a7f7-1f608de4fb66",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "LM910E10 Blender Chauffant Soup & Co",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-65c9-7318-886d-e8902737a0d3",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "LMM-01",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-65cc-71bf-bb84-11affc1516b9",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "LMM-H01",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6d85-71fb-999a-0488786cc668",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "LOIS PLISSE",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-566e-7189-8ae3-08b986206645",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "LOLA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4921-703d-bceb-4d69ff0b6e50",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "LOLITA",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5def-70cd-8424-ea65929e338e",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "LOLITA",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6c3c-71d3-a03f-f62e70d92a1f",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "LOOK",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5d00-7191-8d11-46c5836cd71a",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LORO",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5df6-7041-9988-b97b502e395f",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "LOTUS",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c8e-70d5-8e23-0bab29eeaeda",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LOUANNE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d05-7262-a49e-6739ee75db37",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LOUISA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c8c-7036-8f20-4f8a7704327f",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LOUISE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-589b-7338-8dc7-aa137f4138ca",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "LOVE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9172-7159-a303-e1bd0c4f9bfa",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "LQDCell",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-83e8-73f8-b833-0f5a49358380",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "LR8 S2Q X",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-92a5-71ce-a615-4c143f99d47b",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "LTK Speed Pant",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-59c8-719c-9130-e81ed1d08713",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "LUCAS",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6d96-732e-878c-aea6e0a0f91c",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "LUELLA",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5c8a-7149-addf-1f2c205446fe",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LUISA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d9c-7003-8067-9471685800d7",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "LULU",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6dd9-7349-a567-9d2e6b45292f",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "LUNAIRE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d0f-7326-bb12-c8409f9bfd4f",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "LUPITA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-89b3-71c3-948b-56887594c28c",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "LV 12T44 A+",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89b0-71e7-8457-8b1aa542b3a7",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "LV 1460 XE",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89b5-7138-a7d3-348873b902d1",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "LV 14T44 A+",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4ba3-72a8-9648-85f9336bb0e9",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "LV Escale Collection",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b91-7047-af69-8c7f099be297",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "LV Trainer Sneakers",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8ae4-73af-befa-fcb40ec7a79f",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "LVI12-42",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ae2-7313-bf6c-2da973e83301",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "LVI12-46",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8adf-70b8-b35f-0c2c41334108",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "LVI12-47",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-512a-72fd-b466-982394debb11",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "LVK Anthology",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50eb-72cf-8428-b29cdf3a6cb2",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "LVK Anthology Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-513d-726c-9c83-e20f5095623b",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "LVK Anthology Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5160-7259-9aa8-854e2422181c",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "LVK x Cafe",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8cd2-72e1-826b-5de11530483b",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3100",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ccc-7197-900a-4bd9ced04d35",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3120",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ccb-7263-9011-4a31576f7be6",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3210",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cc9-70a9-8ef0-095231f7911a",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3400",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cc6-72a9-a8c0-d82ca98903ec",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3630",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cc8-71e1-bb0a-76c8893db8fc",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3650",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cc5-71bf-afee-513b3d207e18",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3680",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cd3-7046-aca6-2d01f36b1f8d",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3800",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cd4-70b7-b1a7-420a9c512a83",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3900",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cd0-7307-84b6-c146c3fc78f2",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3950",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ccf-7218-8a65-2de3c694c3d5",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3960",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cce-7069-8588-449a200dcba1",
            "brand_id": "019f426a-8cc3-726e-b614-e0151491fcb7",
            "wording": "LX 3980",
            "brand": {
                "id": "019f426a-8cc3-726e-b614-e0151491fcb7",
                "wording": "Luxell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5318-7286-8f10-aebb441f5d0d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "LYS",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-948c-711d-abe0-7187d019ebe6",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "LZR Racer X",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6d30-713b-9de6-0db000d13f09",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "La Cravate",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-826c-7316-9c41-8a517456f95b",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "La Danseuse",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4a6f-70b7-9ba1-5d53f4bd6c03",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "La Diamantine",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8271-71e5-8c93-d9cb086ab609",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "La Déesse",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-697f-7340-8cd6-7248207cdb83",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "La Nuit de L'Homme",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-63a7-73c0-ac50-7207c1fbefb5",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "La Rose de la Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-645f-7118-b5e8-296411606036",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "La S irène",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8269-7255-bc44-f1e4ce68fc03",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "La Sereine",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6605-71cd-8f03-a15dbaa949f6",
            "brand_id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
            "wording": "La Sportive",
            "brand": {
                "id": "019f426a-6603-73d7-a71b-51bf24bd6d58",
                "wording": "Louis Erard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8273-71fa-b7a0-bc6d2ece93dc",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "La Sylphe",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8266-72b5-a7e1-5f8c054c64cc",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "La Voluptueuse",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6f4d-7344-a8a7-422938bca536",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Labelled",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-494e-700d-ab4a-d47c0eb07f3e",
            "brand_id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
            "wording": "Lace",
            "brand": {
                "id": "019f426a-4945-72ba-97b4-9b3d32ebc464",
                "wording": "Aurélie Bidermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-78e6-70dd-b647-993886df169a",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Lace Blouse",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ae5-709a-af78-1ed1e43e4456",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Lace Dress",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-791e-737d-8bf2-f6966fecb5e5",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Lace Pencil Skirt",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-793c-70cb-8232-f4b95e3568f1",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Lace-Up Booties",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-616b-7270-9133-318dc963e282",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Lady",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-48a6-71d8-9d78-d9389a39333b",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Lady Arpels",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-62ca-72d3-9cc8-161b63895ff2",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Lady Bird",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6bd2-7387-b45c-a653a0f72feb",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Lady S262",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bd0-7177-b909-c090b28dfb87",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Lady S263/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-663a-721c-8343-4bf507dc138c",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Lady-Datejust",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-521c-70da-97df-503325db34e7",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Laena",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-67db-70d4-a19f-2b9cc7fc138b",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Laine à Fines",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6254-72d6-aae0-0d1d5f43338d",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Lait",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7f6c-709c-a5c6-c7f984e90813",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Lait Corporel",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-51a2-7118-961c-afb505ef46d2",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Lait Lavant a la Banane",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-51eb-709f-8367-bd8b5a5664cc",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Lait Luminescence",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8169-7391-9253-a22c400e3826",
            "brand_id": "019f426a-8167-711c-9789-8705d8b5fc78",
            "wording": "Lait pour le Corps",
            "brand": {
                "id": "019f426a-8167-711c-9789-8705d8b5fc78",
                "wording": "L'Erbolario",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-641c-739e-b81c-691a0b0dd542",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Laiton",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5736-73d3-8255-d105fe631d50",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Laiton",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8120-72e5-9944-93eda2b7bdf7",
            "brand_id": "019f426a-811c-7328-be82-c107f6ea8639",
            "wording": "Lakshmi",
            "brand": {
                "id": "019f426a-811c-7328-be82-c107f6ea8639",
                "wording": "TAAJ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5a96-7122-a267-26cae019647e",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Lakshmi",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4ad4-70fd-a8ba-931739ca3cc3",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Lampe de Table Our Fire",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6c03-727f-a1b9-3cd903e9030c",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Lanciano",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-58af-7107-943f-78ee319878fd",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Langstone",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7be0-73ec-ade0-97751b76d056",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Laptop Bag",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-516e-7327-8c15-28c0fc910386",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Laque souple",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7bfc-7371-9f9a-2fe2f7f59b95",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Lara Backlit Clutch",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7df2-72ce-9ee1-68e78a4a558e",
            "brand_id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
            "wording": "Large",
            "brand": {
                "id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
                "wording": "Grafea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-756c-7015-8256-5db49b4ca926",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Large Backpack",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a30-7334-9515-6934968a122f",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Large Cosmetic Case",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a34-7392-a0bc-eb1f565538bc",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Large Domed Cosmetic",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ab3-73da-a701-7d6300c9567e",
            "brand_id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
            "wording": "Larkee",
            "brand": {
                "id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
                "wording": "Diesel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8092-725c-99c5-fc0e30dfad49",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Larmes de Fantôme",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-913a-7210-afc7-6c53f859f024",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Larry",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5835-7257-a476-345228a9d561",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Lars WAFFLE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6210-7341-b92a-fcfd5a5a8e56",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Lasso",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7fd9-709e-8655-61615adc1fae",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Lasting Finish",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-94fe-71ff-90ac-65e5148c9e20",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Latitude 300",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-4dc1-73ad-ae8e-f8d583e98418",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Lauren",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-78bd-719b-848c-819e3082f468",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Lauren",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7da8-706b-b944-aac122e7092c",
            "brand_id": "019f426a-7da2-7214-a498-c984102528bc",
            "wording": "Lavallière",
            "brand": {
                "id": "019f426a-7da2-7214-a498-c984102528bc",
                "wording": "Gianfranco Ferré",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-833a-71d2-a520-aac70d5d6482",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Lave-linge",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-835a-719b-9906-d814f9a6ee85",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Lave-linge",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8cea-7347-8bcf-7e0ba532894a",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Lave-linge",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8312-70d5-832d-1aa78cd5200b",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Lave-linge",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8830-7012-bff0-bebfde082bdb",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Lave-linge frontal",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8343-7175-b022-3c65a383a65c",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Lave-linge séchant",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8834-72e2-bd7c-35db3742387e",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Lave-linge séchant",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8832-7243-be12-a7d668cc5fd7",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Lave-linge top",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8342-723c-b3ba-eb2ce9db1226",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Lave-linge à chargement frontal",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8317-7129-93d6-97787d6a6c12",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Lave-vaisselle",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-640b-723d-9d14-1f9d394ce5e4",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Layla",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4ea6-7253-9a62-a383c5422f6e",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Lazuli",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6957-711f-bd16-ee7e8c72970c",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Le Cagole",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8260-71c4-8814-1f661313b0b2",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "Le Courageux",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-48d8-7161-9e3a-f8a383ce9344",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Le Cube",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-48d0-71da-9939-2c26060f6dca",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Le Cube Diamant",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8423-72ff-b051-49de70b536d8",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Le Duo Plus XL",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8422-72a3-99bf-5e5ac52f974e",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Le Duo XL",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-48db-73f2-915d-581ea1e2e2ef",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Le Fil",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6abf-72e2-8362-7df46f598ed6",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Le Foulonné",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6137-7328-80bb-872fe2e809f2",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Le Homme et le Temps",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6a41-7240-9b33-c8e597d51d8e",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Le J Marc",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4bde-72f7-8511-ec83333fa00a",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Le Jour Se Lève",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-661d-7396-a121-5902995a2f5e",
            "brand_id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "Le Locle",
            "brand": {
                "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
                "wording": "Tissot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6ab2-707a-b2d0-a84a30b9ecf1",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Le PLIAGE",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-63a5-71fd-b2b2-21934a7ee091",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Le Pavillon de la Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63a3-728a-adc8-559ce484a374",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Le Petit Trianon",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-825a-7062-ae43-efa74585f606",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "Le Pur",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6a47-7121-98eb-f1ac89884f2b",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Le STAM",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a43-70e6-a125-4bec974e6ece",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Le Sac",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a36-71d6-b307-ea40ab20c44b",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Le Sac Fourre-TouT",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-48d9-70f4-a636-475311a7bf87",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Le Sceptre",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6a3d-7069-96bb-debe78719376",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Le Seau",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-825d-716c-a7b6-2bc76ada5274",
            "brand_id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
            "wording": "Le Serein",
            "brand": {
                "id": "019f426a-8253-7373-a7a1-b79c82d0fdd1",
                "wording": "Pachamamaï",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6dc0-7154-97a6-d046b18f7331",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Le Slim Box",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6db8-7351-b619-16d44f3f2eb7",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Le Tropézienne",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5f53-7253-abf1-1ca9004d39c4",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Le Vernis Nail Colour",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7f2c-7240-ada3-9660ac5f9bd8",
            "brand_id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
            "wording": "Le Vrai 3.0 Claude Orsetto",
            "brand": {
                "id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
                "wording": "K-Way",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f2e-721a-8a5a-abd375dfbaaa",
            "brand_id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
            "wording": "Le Vrai Claude 3.0 Plus",
            "brand": {
                "id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
                "wording": "K-Way",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6dac-700a-9d47-0408999698c6",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Le Zip",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-91ae-72a6-ad4f-e55be1526125",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "LeBron",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-74b0-71d7-8bc7-040630f35096",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Lea",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-94a9-706e-8039-cf3763a1ed49",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Leader GTX Jacket",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-58a2-7103-aef5-66e2357787e3",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Leary",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7afb-70d4-a422-462bfcc33690",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Leather Backpack",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-757e-73db-a908-f708d4068b4e",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Leather Bag",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7681-73d0-ac72-927c02f9db2a",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Leather Belt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-795d-737d-8aa8-b1b755158f9e",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Leather Belt",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76f2-708e-8dc5-b2e640bfa8ae",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Leather Belt",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78b8-7393-837e-647a683fb5c3",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Leather Biker Jacket",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7944-7269-b679-3fdd9b54ec43",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Leather Biker Jacket",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b62-7081-a53c-f0e45af90f61",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Leather Biker Jacket",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-74c8-712a-a454-51988def7f1a",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Leather Gloves",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7b8b-732c-9bb2-5d81d0995f82",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Leather Gloves",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-757c-7333-a514-9c9f7834518a",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Leather Jacket",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-791f-7059-a466-421fb0b7c731",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Leather Mini Skirt",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78e4-7047-9feb-3b56f4529700",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Leather Moto Jacket",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74c6-7367-8e7e-df3ee7157823",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Leather Motorcycle Jacket",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-79f0-72af-95dd-83746b1ef30e",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Leather Pumps",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-767a-7331-9907-4e75e056a766",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Leather Strap Watch",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a01-7059-8a26-2d9cd506e25c",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Leather Tote Bag",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5b91-7365-bc94-a03b50a30225",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Leaves",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8cf2-708a-af7f-b2ca76149f10",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Lecteurs DVD et Blu-ray",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4f31-7132-b008-f2dbeb7de99d",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Ledaria",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6aca-7233-8d4d-d628c560e8c1",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Lee Radziwill",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5812-7247-b399-ee6c3448591b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Legato",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-74d5-71b6-9dd6-d6479f06b0b6",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Leggings",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-906a-7363-975a-5706652a1466",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Leggings",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7c39-73b9-b7c3-d5fbcb1af74a",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Leggings Assisi",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5ff0-73a3-8f07-35f3f5045533",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Leia",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6838-7305-8d7b-41254404980a",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Leila",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-53f9-700c-86dd-3b00980382ec",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Leilo",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5841-7175-9c1c-a5631bce66b8",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Lellan",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8ff4-720d-b85e-2e2f087af49c",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Leo",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7472-72e4-90de-1aa84a15064e",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Leonardo",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-787b-7217-ae09-0697beb20205",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Leonardo",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6c43-7394-a57c-15b07db54bf8",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Leonie",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-542c-7171-be07-e54b408d7d7e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Leontine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-541e-72f7-a0b2-5b25df2de851",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Leopold",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5f51-71be-b257-4fa596b98d0d",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Les 4 Ombres Eyeshadow Palette",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f48-7057-a32c-7a74e2d3a1ea",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Les Beiges",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-625a-73b6-b352-a2d67a06345f",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Bouchée",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6273-73cc-ae1d-9157779891c5",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Coffrets",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6587-7372-b8ee-74219117dc28",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Les Collectionneurs",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4a71-712f-9516-7d9f1cd14265",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Les Contes",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4908-7190-8d3c-c93ac120983f",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Les Enchaînées",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4a64-71bb-b7ab-c570e8cbed9e",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Les Escales",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8128-7028-82ca-ead8b01847d1",
            "brand_id": "019f426a-8125-7158-91db-f5e5d523d7b7",
            "wording": "Les Essentiels",
            "brand": {
                "id": "019f426a-8125-7158-91db-f5e5d523d7b7",
                "wording": "Topicrem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8050-7021-81f8-37e276eb43fd",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Les Essentiels",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6269-7393-a6f7-f87bf871b6f0",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Fantaisies",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6f10-7163-918b-6d36ec4fccee",
            "brand_id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Les Iconiques",
            "brand": {
                "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
                "wording": "Roger Vivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7459-72b9-a6b1-912e71045b2d",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Les Jours Original",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-625c-717a-8ab0-561d40181f20",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Lingots",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-490b-73b9-abf9-e10bbeaa6550",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Les Médailles",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4a5f-73c9-9573-af5b37ee01db",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Les Notes Gourmandes",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5f4b-70e2-9827-78a45f10b54b",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Les Nuits",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6266-7158-a69a-e1f028a71d48",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Pates à Tartiner",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-804e-723d-8e04-35ae22c2f14e",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Les Plaisirs Nature",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-625f-707e-a6a5-96e8c0f0e2fc",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Poches",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-48bd-7036-9048-18dc93ca2826",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Les Précieuses",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4bba-7228-8d29-7c255612c1e5",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Les Sables Roses",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6263-70a9-b7cd-791ffc88da69",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Les Sachets",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-499b-73ee-9e85-b3b90f9c52e3",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Les Tambours",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-49a3-71d4-92a1-113ccf1afcf8",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Les Tambours Finesse",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-49bf-70ea-bf7e-bf39ea22319d",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Les Tanbours",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6394-72a8-99fd-6a1675d332ca",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Les Volants de la Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5252-7312-a929-3144e8190c37",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Leto",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-734d-70f2-9a94-6ab2415c0e59",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Lettie",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65fa-722e-a874-9b8c43036aab",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Levi's",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-723d-72dc-92b2-936a492b316d",
            "brand_id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "Levriero",
            "brand": {
                "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
                "wording": "Trussardi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-66cf-70ec-89c0-c427bc0ea921",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Lexington",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8fab-7091-a6ba-b6c7d5e1874b",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Lhotse",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6ebc-721f-84f8-68baee24ed0b",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "LiLi",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5dc3-70b7-bade-b4914b2782b2",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Lia",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5ac8-7373-a098-f17d0d5f003a",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Liam",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4df3-73ef-a2af-460e882ffe39",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Libellule",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6842-7350-a427-554957503135",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Libellule",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-916f-7072-a6a4-72489a30a39d",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Liberate Nitro",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5777-733f-9100-1fdab69a6893",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Liberty",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4ec4-71cb-a466-5b47cb24853a",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Lido",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5e32-70f4-ac37-9d1a0165393d",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Lien",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6561-7325-9aac-8bb1b339ca35",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Lien",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-48ad-723a-a259-6e26bef9c5e3",
            "brand_id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
            "wording": "Liens",
            "brand": {
                "id": "019f426a-48a8-715e-a6ed-c3518afb5f3b",
                "wording": "Chaumet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4f99-73d4-a73a-7624c327acaf",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Liens",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-540e-73b4-bc91-9213ae3fc00c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Lifa",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7553-7335-a5a6-b713cc60422a",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Life Duffle",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7f6d-7342-9afb-04b74cb3c3ba",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Life Plankton™ Essence",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7b17-73c9-81e5-7b7b62f8a937",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Light Blue",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-92c4-7057-b598-6a350616b2af",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Light Crew",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8010-7146-9d8d-ab113eacc1aa",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Light Duo+",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-819b-711d-9843-6ef4876322ce",
            "brand_id": "019f426a-8192-70da-b75c-eaa48af00b37",
            "wording": "Light Work Rosehip Cleansing Oil",
            "brand": {
                "id": "019f426a-8192-70da-b75c-eaa48af00b37",
                "wording": "Pai Skincare",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-86f8-7124-8d54-1b454a98f570",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Lightcycle Morph",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7847-7348-a578-1a185d7eb9a4",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Lightning Bolt",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7bf5-70b2-af5a-e9c3d68f8215",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Lightweight Sleeping",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5aae-716d-97f3-64dc094ad92c",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Lildil",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7c8c-73e3-ae0f-8303ad318034",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Lillian",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5243-71d6-8ff9-ca2fb4d5b624",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Lily",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-548f-7004-a9ce-796bf500c07e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Lily",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-74b7-702d-9472-c8d21bfe7c7d",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Lily",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-774b-7374-b911-ef94a9ed875b",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Lily",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7f27-706e-a9c7-34b24976990c",
            "brand_id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
            "wording": "Lily Plus Double",
            "brand": {
                "id": "019f426a-7f23-7391-ba2b-1680e2ca925c",
                "wording": "K-Way",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-54d5-7385-890c-c14f8023e71d",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Lily croix",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-93db-72dd-a7a7-cb2d9ac70d50",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Limestone 4P",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7cce-7064-90aa-38cd293c84ef",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Limitless",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ede-7049-8142-a7108c77700f",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Limousine",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5bff-7206-a591-48b72f504e89",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Lincoln",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7b95-72a7-94ab-6a25fb9d93e2",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Linen Tunic",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b9f-7219-9d24-4605a48687f9",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Linen Wrap",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9485-73da-8eea-ba467ced3cd7",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Liner Gloves",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6411-735b-9ef6-6e1aa9b74d2e",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Linesport",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6771-72a8-9d8c-509d4d07479d",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Link to LOVE",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6841-73f2-bc51-395c93eb81b0",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Linéaires Florales",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5ef8-73de-8758-b3a49d1e7d0d",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Lion Vénitien",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-542a-7377-93b0-6b8875810970",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Lipa",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-800b-7292-b850-8ff6becb5bbb",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Lipocils",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7971-72c9-9778-81a4ac1eb5dc",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Lipstick",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6b55-73fb-8aba-817929c9ff73",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Lis",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-73e6-7063-ac6b-2741a6068c13",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Liscia",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7ce8-7005-b86d-ab4e8832d8e6",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Lisette",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4dab-705e-ae32-f8855630b308",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Lison",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-73db-70f0-b3a3-28b11f33a3a4",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Lisse",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-57d0-711c-bc0b-234678dbfc43",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Lisse",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9242-711f-b9f4-b28d99342717",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Lite-Show",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7e50-7336-858b-31f4d5f686cd",
            "brand_id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
            "wording": "Little America",
            "brand": {
                "id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
                "wording": "Herschel Supply Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e3e-71ce-91b4-62cd78d897a1",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Little America",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7f7a-70a6-bb5f-76bbbcbabf2b",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Little Round Pot Blush",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8e26-7177-9881-3bb48565540f",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Livenza",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6e94-732e-82c1-686624b73dca",
            "brand_id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Liya",
            "brand": {
                "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
                "wording": "Coccinelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-54c3-7019-a7f7-a2176528136e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Liza",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7a26-721d-9695-4d03b0e880c5",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Lizzie Sling",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4939-71df-9048-90881742beee",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "LoLITA",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-753f-73c2-9a85-81033e9da18f",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Loafers",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-54d9-730b-a5c6-1aa3573e7daa",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Lock",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6a71-7267-a1a5-17b5d9377a9f",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Locomotive",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-72c3-70f3-8e95-07226ad61225",
            "brand_id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
            "wording": "Logan",
            "brand": {
                "id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
                "wording": "Want Les Essentiels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-66b7-70a0-ba43-cd94ee73bf28",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Logan",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6517-7011-9efd-3689ba4fb79f",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Logical One",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-651c-716f-982c-ea7bafad16ce",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Logical One Enraged",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7e15-714c-bc98-8209d22ef948",
            "brand_id": "019f426a-7e0c-7332-84e4-d954cb74c752",
            "wording": "Logo",
            "brand": {
                "id": "019f426a-7e0c-7332-84e4-d954cb74c752",
                "wording": "Guess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cf7-73a1-a7be-b143e924f60b",
            "brand_id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Logo",
            "brand": {
                "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
                "wording": "Faith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d54-7096-8e5b-8d2234857d3a",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Logo 23",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7686-71d8-84aa-0072a14d3044",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Logo Belt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ea7-724c-b552-c7b1ea4b09b9",
            "brand_id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
            "wording": "Logo Bomber",
            "brand": {
                "id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
                "wording": "Iceberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7854-7367-8c71-d440c2eb6f2b",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Logo Coin Purse",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ea2-7114-956a-e1a1b99b2a1e",
            "brand_id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
            "wording": "Logo Intarsia",
            "brand": {
                "id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
                "wording": "Iceberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7863-736f-a024-a0861d598dc4",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Logo Maxi Dress",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7802-702a-99b1-ba91aa9d4ac8",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Logo Print",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b69-723e-9a35-84a45b67b5a7",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Logo Print Shirt",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b15-73ed-95b4-457493d9d138",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Logo Scarf",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7860-73ee-a332-19bf7785beeb",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Logo Sweatshirt",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-785d-70db-bf4f-15333c3d8f94",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Logo T-shirt",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7654-730d-b8c8-6b5abcc896eb",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Logo T-shirt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78ee-7179-be84-d527ac4b5e15",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Logo Tote",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ea9-71ee-922c-4e6d2baf033d",
            "brand_id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
            "wording": "Logo-Print",
            "brand": {
                "id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
                "wording": "Iceberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7939-7140-9985-77aea2fe1414",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Logo-Printed High-Tops",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7843-71fe-9695-00739f8e75ab",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Logomania",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5c1e-723a-b81e-fc8feb9106fa",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Loki x Steffie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-92a8-7371-915f-8f08ab0beb9c",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Lokka Hoodie",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-68e6-703c-a8f9-f2c507ac0454",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Lola",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-73a3-716d-95e7-484b47c29969",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Lola",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-775c-73db-bf9d-e83b1db7ffba",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Lola",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c9a-7159-b134-f5ed9a58e407",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Lola",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a2b-7218-80e8-54aa52d3f4bc",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Lola Bucket",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77bf-72d8-867e-9c25c4eea4ed",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "London Streets",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77e1-72c7-97b0-0522fdb6edcb",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "London Toile",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5a5d-713a-930d-cf9ddb025c1f",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Long Lotus",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-944f-7205-994e-890683f62935",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Longsleeve Shirt Merino",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-70be-71b6-b451-aa69e6088dc6",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Longue",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70d7-7377-820d-9e85015324c8",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Longue ALTA",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f79-7101-995f-d41009549a32",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Longwing",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-68bf-717a-98e7-a8890c69b86e",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Look",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7475-71f5-a8f5-fc811f687bf2",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Lorenzo",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-788a-73e3-bdfa-97a8ee392b90",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Lorenzo",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-65d9-72c4-aa62-1e61cd5b0c9f",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Loretta",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7c49-729e-9f28-aaa1d874e9cc",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Loretto",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5c0f-72c1-a412-ac244fde301f",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Lorimer",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e5c-71cc-b0b5-0528c155385c",
            "brand_id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
            "wording": "Lorna",
            "brand": {
                "id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
                "wording": "Hobbs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5758-73cc-84d5-661edfbe8ffd",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Losanges Entrelacés",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4f9f-73ee-afcd-1bc6a97983da",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Lotus",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7053-7148-ad37-0bfdf4f3c29f",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Lotus",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5aea-7017-8958-991f9313350c",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Lotus",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7a52-72a6-96e6-eca66d42743a",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Lou Compact Wallet",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6972-70a8-ba41-02730cf5e868",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "LouLou",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-55b0-7282-b59d-95b3052a5e09",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Louise",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5e70-724a-8b06-e5e76f15db96",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Louise",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-564f-7323-98b5-1ccfa5d67e74",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Louiza",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5224-70d8-9a04-adf0f1cc1e0f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Loulou",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-56c6-7095-9dea-4d68000422a1",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Love",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5a0e-7321-ac64-e01cf6066df9",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "Love",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4846-72ca-b5c2-0868fb591eff",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Love",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-54e9-709c-b251-92c68bb43b10",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Love",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-720b-73ef-92eb-5b86e5e13294",
            "brand_id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
            "wording": "Love",
            "brand": {
                "id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
                "wording": "The Kooples",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7217-70b4-9e45-62cc1e43b1f5",
            "brand_id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "Love",
            "brand": {
                "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
                "wording": "Tiffany & Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-735c-737a-9ecb-4087d53d6db4",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Lovecharm",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5b97-717f-9972-3c7888b07bce",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Lovely",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-504c-7168-b5a5-602b326674ea",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Lover",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-92f8-72fc-881e-51effbe19708",
            "brand_id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
            "wording": "Low Key",
            "brand": {
                "id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
                "wording": "Oakley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7960-7029-8756-03159a82b047",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Low-Top Sneakers",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-682e-7069-8967-f3219605d837",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Lowline",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5b8b-72e3-93a2-477ee4e06f5d",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Lowry",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7477-702e-a7f1-d78f43a52f31",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Luca",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5119-7258-a2f6-9b264eaa7483",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lucem",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50fb-72bb-8cad-1200fe7ad20c",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lucem Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-514d-73b5-854b-573b5195686f",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lucem Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-73d3-723e-916f-ad7534a236f7",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Luci",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4de4-7306-80f3-46a714124d48",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Lucia",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5649-7072-8012-de7504278d8f",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Lucie",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7402-71ad-8847-7b466ace2c9a",
            "brand_id": "019f426a-73fd-7086-b1ac-6f436093163b",
            "wording": "Lucky",
            "brand": {
                "id": "019f426a-73fd-7086-b1ac-6f436093163b",
                "wording": "Ash",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-77b9-737b-8c52-e8cdcddc227d",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Lucky Bunch",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4e75-7072-a707-ba8cab6faaa8",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Lucky Clover",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-488f-7188-85eb-64c4cc09c3d4",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Lucky Spring",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6d0a-7043-a4e2-b4249303a1e1",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Lucky Tiger",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5b16-7126-8644-256a48a9477c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Lucy Van Pelt",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-69fd-72ce-93b3-7ebcea69ac19",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Lug",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-755b-7236-8727-d6f1ebd1871e",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Luggage Tag",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-531d-718c-a16f-e8c6f1f28f08",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Luly",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-886e-72a7-8463-76d209f1df11",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Lumen",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8867-71dc-aa0e-0d5b246c389e",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Lumen ISOLA",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-672c-73c7-8f20-2240e3077710",
            "brand_id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Luminor",
            "brand": {
                "id": "019f426a-6729-7222-aa9d-873696a39660",
                "wording": "Panerai",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6735-7156-a353-368619796a7a",
            "brand_id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Luminor Due",
            "brand": {
                "id": "019f426a-6729-7222-aa9d-873696a39660",
                "wording": "Panerai",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6737-71ae-ac57-369ac5b316a9",
            "brand_id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Luminor Marina",
            "brand": {
                "id": "019f426a-6729-7222-aa9d-873696a39660",
                "wording": "Panerai",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8669-7198-abcb-76b257c7f18f",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Lumix DC-G9",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-866c-722d-b329-21eaa3c6313d",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Lumix DC-G95",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8655-7200-8f2b-afbac0c59856",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Lumix DC-GH5",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-865e-7051-89f5-409968d10bd2",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Lumix DC-S1R",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8664-7170-99d6-985f4e00d0a7",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Lumix DC-S5",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8659-733f-ad60-da7e9298f549",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "Lumix DMC-LX100",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7c64-7192-806d-0a1328cbf56c",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Lumière",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7e2e-7239-aa05-1742e81c200a",
            "brand_id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
                "wording": "Havaianas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7c9b-712a-bb48-4b034a26ab11",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-62d0-70ac-aedf-fe62a222d856",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7756-7187-af30-89e53bd2e736",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5110-71da-a836-b27e23cbca80",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4d82-7188-b5da-9a1b219a0f08",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-72a2-7033-b833-2affaf308311",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Luna",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7525-7182-a653-845351b0ac19",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Luna Bag",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a63-71c4-9871-918db5804444",
            "brand_id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
            "wording": "Luna Bag",
            "brand": {
                "id": "019f426a-7a60-7172-bbfc-ddbd6dd4a65d",
                "wording": "Cult Gaia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c10-72bd-b7d8-738eddda51e1",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Luna Clutch",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-50e6-7285-8d34-0e4f94ff2608",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Luna Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7c25-71a3-a6b4-6e969c9d2e4e",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Luna Fit-and-Flare Dress",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5c1c-7141-947c-94f851d535c5",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Luna x Steffie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7c56-7103-b912-6fddcf556215",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Lunaire",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5ed9-71e6-881d-b6f8792958cb",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Lune",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4ab3-716e-b8e6-3b3d11ebffa5",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Lunettes de Soleil",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7322-7022-80f3-3948d0e51189",
            "brand_id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Lunettes de soleil",
            "brand": {
                "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
                "wording": "Aerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8dd0-7275-a29d-70dce8f2671b",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Lunettes de sécurité",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5df5-73b1-a977-65fed6318df5",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Lustre",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5128-710b-aa66-83f7d09ba16b",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lustre",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50d6-7131-83ab-2af8d0d0ff48",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lustre 20",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50e4-7051-b4bd-b5a1b931441e",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lustre Earring 16 Silver",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50e2-709e-8555-846022f5339c",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Lustre Earring 19 Silver",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4ace-72c7-ac8b-abdcf8b60a9f",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Lustre Zenith",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-75c8-733d-9ab9-623f26ad748f",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Luxe Layers",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-65ac-71ad-a7d1-8b784942bcb4",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Luxembourg",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-68b0-70a4-957b-973061a66a92",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Lycra",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9498-7169-b435-38cee79ee6a6",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Lycra Cap",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-54ad-700c-84fb-920d70cbcf26",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Lylo",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-600a-735c-8f02-29b06106c11a",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Lyrica",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7c6a-7150-8811-7b2f9c78be2e",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Lys",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6787-721e-b9cd-f661020da5d1",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Lèger",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6121-711d-ab81-11035566cbba",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Lègion Chrono",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-822a-71ee-8044-0e475e0b0ef7",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Lèvres Miel",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-688d-7251-97b8-c87ed92333b8",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Légère",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-55eb-71eb-9bb3-125f22706bed",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Léon",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c17-7071-9a3a-ce70d4d95f88",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Léonard",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-66e8-73c7-8762-bde1eea2582f",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Léopard",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7451-733b-82bc-7b3d7f08273a",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Léopard",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65f2-71ee-ad65-306536bdc783",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "M",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8f66-732a-af27-845e0b77903c",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "M Aneto Low",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94d8-738f-bcac-440efe623627",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "M Arrowood 2 Mid WP",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6175-70e9-a9b9-b3a4e69dbed0",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "M Tribales New LOOK",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6e69-72fb-b626-615270bac1da",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "M-65",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7d25-71e3-ae0c-7798d46faaea",
            "brand_id": "019f426a-7d23-7360-9c28-bd31f83f2226",
            "wording": "M12",
            "brand": {
                "id": "019f426a-7d23-7360-9c28-bd31f83f2226",
                "wording": "Fred Perry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9528-72ff-81d3-8475956f1626",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "M5 Mantra",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-491e-73d1-ab83-213ea95fde8e",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "MA Préférence",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6e67-700f-ba9d-34be30f21d8b",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "MA-1",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5c88-7390-a611-8880edd3378b",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MADDIE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c85-730c-bfe1-247514ac6183",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MADONNA",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c82-713a-9961-509bb89763db",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MAEL",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d8e-73e6-8959-5ddc79edaeb7",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "MAISON MARGIELA",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4ff0-715d-b7bc-86d61ce205a9",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "MALKA",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f1a-7235-8ea4-ce53b0001e56",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "MANO",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7173-7132-94c6-19487707edc7",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "MARA",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d85-7061-87e7-e6f218885b8c",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "MARCELO BURLON",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6dd0-71c7-b3ce-d77e9a7d2f45",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "MARCHE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5936-720a-b5a2-04098f0dc667",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MARCO",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d16-7173-a6c3-a56a3a6f8cba",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MARGAUX",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d65-731f-8467-a454ca4e6b5e",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "MARINE SERRE",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5629-739d-8a28-f95f63c4535c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "MARIUS",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-593c-72b8-93ab-c5df5dee1ff9",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MARLON",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5c7e-7363-9dcb-0a74b0f89a99",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MARLYS",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4da4-7210-b78f-8e8acdd71b19",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "MARQUISE",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5c7a-7052-9d4a-baf5da1fc215",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MARTINE",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d76-7042-a400-260784b79345",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "MARTINE ALI",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c76-7031-8bff-5ddbe7242465",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MARY",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5979-70bd-8dc6-eb9921fc7f6d",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MATWIEU",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6d8c-72f7-8a82-7100089ea4ec",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "MAYA LIP",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9117-71fc-8dc2-7036ee47fed0",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "MB",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8ea9-72ec-8a36-585d1a929271",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "MB1000",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-647b-70a1-9ca3-7f8fff036afb",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "MED C-ZIP",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c38-73db-8173-d7fb844abc22",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "MF 342",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c3c-7085-943e-9317d822ff48",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "MF 445",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c36-7204-9450-3269a5550b91",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "MF 448",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a03-70a1-9238-68a6bab42dea",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "MG30",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e86-71be-9552-0cab09af9cf0",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "MG550",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5dee-731b-93b0-b56c8ee0f773",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "MIKA",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5953-725e-b3ca-74e1946f8e47",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MIKE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5c73-706b-a189-e3988bdd9562",
            "brand_id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
            "wording": "MILANI",
            "brand": {
                "id": "019f426a-5c6f-7179-8b53-7f57e4a0c207",
                "wording": "Orfeo Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6df7-73b9-8869-eb1bf50072ec",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "MILDA",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-59ae-72bd-9dfc-9ea7d4cb59dd",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MILES",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5911-7060-8e08-6463991be39a",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MILO",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-599f-7140-b0f9-40f996c4cd5b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MILTON",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6dd1-7073-a509-78e9ec08b809",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "MINI MINI",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d87-73c5-b693-20567aaa51d5",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "MISBHV",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5510-70b5-8595-609ee6ba71d5",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "MIni stones",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-643b-7328-91d3-2ad051e95226",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "MK-44MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6e6d-7052-a099-7481305cb7aa",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "MK3 MOD",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8d49-7187-ae72-bb87af7ed4c6",
            "brand_id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
            "wording": "ML202W",
            "brand": {
                "id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
                "wording": "Listo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-63b1-73c1-844b-f007b67a1431",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "MM2-41",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63af-73c3-b8bd-23ad5190c3df",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "MM2-43",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5d55-7084-8090-d387d03b30d7",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "MM6 MAISON MARGIELA",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-63b7-7317-befc-0055c3418579",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "MO2",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63b9-7398-b377-1f8ad1a8bc6c",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "MO3",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-84ce-7350-b6f4-29ce54ed839e",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "MO3718PA Compact Power Cyclonic",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84d1-7074-a3a2-52652c32c798",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "MO3927PA Compact Power Cyclonic Animal Care",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6e07-7217-a1e4-859c4de3d591",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "MONEY LOVE",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-596d-7268-a0fe-9807d9644f6d",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "MORENO",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6f50-7004-a3fb-34b3da914b24",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "MORTIMER",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-76bf-7358-bd08-6d98a2fe2061",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "MOTION",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8c40-723e-8659-4f1c65055ffc",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "MP 120",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c42-7386-9058-111ff9f62002",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "MP 450",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6710-70d8-8d5d-0db88d41ea30",
            "brand_id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "MP Collection",
            "brand": {
                "id": "019f426a-6709-73b7-833d-0e3813509c15",
                "wording": "Hublot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8c7f-70ae-baf1-45b0cc2d00a8",
            "brand_id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
            "wording": "MP01",
            "brand": {
                "id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
                "wording": "Punkt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6098-714e-9355-9cf49a79f483",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "MR01",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8d72-708c-b822-0924caa69983",
            "brand_id": "019f426a-8d6c-7145-9810-27b96ddf893f",
            "wording": "MS 5840",
            "brand": {
                "id": "019f426a-8d6c-7145-9810-27b96ddf893f",
                "wording": "Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-70db-7306-b4b0-cf31feaa0617",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "MSM",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d8f-720b-ab88-5a6119075a48",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "MUGUEN",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5465-704b-84f3-3bf552c150fc",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "MUM OF",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8d5a-712c-b6f1-dd831e8c0334",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "MV377",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8bb1-7134-957f-233157ee0261",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "MX15",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bb2-7228-a1d2-de299175dc8c",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "MX16",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bb4-71d9-973d-c125b55ac197",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "MX17",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a09-728e-8cb1-85e404c43a18",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "MX18",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84d0-73af-8071-e1cc6b9e737a",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "MX232301 X-Trem Power",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e70-7287-9fea-29febfc088fc",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "MX350",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8c03-7218-9287-cb77644399a9",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "MY 7118",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e7f-71c4-9e3b-9b8ccc0b925e",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "MZ770",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4901-738e-b246-d28eea1a9607",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Ma Première",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5aa1-70a1-8893-c2fdf81882e6",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Maalai",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6c6c-7191-add1-536a37bf6788",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Mab",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-627c-73ae-bc78-e3e6ba52f491",
            "brand_id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Macarons",
            "brand": {
                "id": "019f426a-6279-719f-9f35-d5110387906b",
                "wording": "Michel Roux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5e5b-71c6-9e87-b21a51301ef9",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Macarons",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f74-709c-a2d1-b63b802d3a64",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Mach 2000",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7882-73ae-aa7c-aec4cce5fb91",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Machiavelli",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8465-7054-a18e-69bdf23c735f",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Machine à Expresso Robot Café R850",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8463-7033-a1d4-47f4472d096d",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Machine à Expresso kMix ES020",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8461-72dc-ac79-9ce65ede65c1",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Machine à café filtre kMix CM030GR",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8338-724c-9170-65057a94b7d4",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Machines à Café",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8cff-727d-a560-380425f3ea9f",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Machines-outils",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5909-7214-a07a-441ff95da036",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Mackays",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7026-7161-8022-7a60b6188074",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Madeline 21",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7029-70f7-be52-7a60ea4815cf",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Madeline 30",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5585-732a-8793-33b931d6df05",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Mademoiselle",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7e04-72ee-8334-8d0d8e762c4d",
            "brand_id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
            "wording": "Madison",
            "brand": {
                "id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
                "wording": "Gregory Sylvia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6834-701a-bf96-ef1ddc1da72b",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Madison",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4e8e-71e2-8b9b-7e3ec1ccf4c9",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Madone",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6e9d-714f-9a9a-1bf5ee3b5f1b",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Madras",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-63fc-7312-9f68-e588b41b1457",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Maestro",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4dfc-702d-8c5c-bc493ced39ed",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Magda",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6c10-7222-8d7c-29ae112ca88f",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Magliano",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-70a4-7139-bb2b-cda976f94bca",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Magna Repono",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9466-7228-a1d5-f4cc987245f7",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Magnemask™ Combo TNT",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7fe0-73c6-91e8-8c946e261dee",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Magnif'eyes",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8e36-71d9-a20f-c019395b7001",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Magnifica",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8417-70fd-ad3a-7f56d529d772",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "Magnifica S ECAM 22.110.B",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8063-7179-a3a1-6c6475fc900d",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Magnificence",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8123-73f2-b2a2-05a9cbdc5fc9",
            "brand_id": "019f426a-811c-7328-be82-c107f6ea8639",
            "wording": "Maharani",
            "brand": {
                "id": "019f426a-811c-7328-be82-c107f6ea8639",
                "wording": "TAAJ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e5f-73de-9ea0-eb5edacefc4a",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Maia",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70ee-71ac-8271-0b6936f8b1a8",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Maigre",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f85-705b-8aea-14a563ac4687",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Maille",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4fcc-71b8-9686-3ac5e9802c69",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Maille Palmier",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5059-7088-b24e-476c1d02ed4b",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Maillons multiples",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6ae2-7174-957d-db15c296e7d8",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Maillots de Bain",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-90c6-73b9-9cd0-e3770409c3aa",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Maillots de Football",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8241-73c8-a86c-c1b0e50add4c",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Mains Réparatrice",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-543a-72aa-a1b4-d114d6032a96",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Maintien",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5124-72fe-ac27-f5a38791e710",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Maison Mosaic",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5106-70eb-a624-c05d00fa606d",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Maison Mosaic Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5140-7089-b959-b1a674916fb6",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Maison Mosaic Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-93c4-710e-8344-bf34d5d563a8",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Makalu Lite",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-53dd-7060-a820-5f888aa3eb2e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mala",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5a68-7291-8df2-15b7753ffb3a",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Mala-Sai",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e74-71ab-b8f4-ad0ce5ad27a1",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Malachite",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4db4-72a9-852a-5f8dce537d22",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Malia",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4bfe-72d2-a953-5d60ccc9d5f2",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Malle Pendulette",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6ca2-7122-ae74-e7e672159078",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Malle dé",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7037-7175-a7c1-89859493bef3",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Mallette Maddox",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-742d-714f-82a5-02b6ad358f8c",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Mallory",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-53ff-734e-8d81-2b0e4022d35b",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Malone",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-657e-7134-8411-1c790ce828cf",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Malte",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8f89-7160-a43e-f1d92ccec472",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Mammut Ducan High GTX",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4f6b-7260-aca1-ee466f5d67fa",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Manchette Drapée",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f82-73f2-8a13-397b5a099491",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette Fougéres",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f70-7053-80c2-570874b233b8",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette Girafe",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f79-73ab-9605-c0274098111c",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette IBIZA",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f83-7337-8a6e-45eca416eb7b",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette Liens",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f80-7166-a3d6-3c2fa4320ba3",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette Nénuphar",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f7d-7121-8763-54cdd89aa60c",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette PERROQUET",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f7b-725a-84f8-70a55bbb8ffc",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Manchette Tresse",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5af0-72df-9a87-4ff45560ed89",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Mandala",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5b66-71ac-be44-51c07b28fb56",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Manhattan",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6497-73c9-884d-3bf5f27f433f",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Manometre sous-marin",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-555c-7310-ac27-3388c9611e26",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Manon",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-60d9-73a5-a097-b9a9f14675ab",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "Mansart",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d41-71c9-864c-d9049e4d1a58",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Manta",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-700d-72d1-ad6f-0a9dff1546cc",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Manteau oversized",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ada-72f6-80b5-cb60ff205b45",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Manteaux",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f7c-7090-b4ed-c8bda8e63aa9",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Manteaux et vestes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-55b6-70bf-93f0-6a1e8ba11638",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Manuela",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-555f-710f-b644-b78c3afbc013",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Manuela 2",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5c14-7348-857e-359628dd8a44",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Maple",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-65f1-708b-a30c-5f4cc15cf127",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Maple Suede",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-806e-721b-96dc-862bd09fb364",
            "brand_id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Maquillage",
            "brand": {
                "id": "019f426a-8068-7063-bfbd-093dac92f505",
                "wording": "Annayake",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81c1-73ac-99e8-f288f2465d7e",
            "brand_id": "019f426a-81ba-714e-a280-ee8776b414cc",
            "wording": "Maquillage",
            "brand": {
                "id": "019f426a-81ba-714e-a280-ee8776b414cc",
                "wording": "Ricaud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-65ea-7268-8e0a-6621d8eebf89",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Mara Scalise",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7cb3-739f-b5a4-ff991069aaae",
            "brand_id": "019f426a-7cb1-7336-a3dd-c03186494b04",
            "wording": "Marana",
            "brand": {
                "id": "019f426a-7cb1-7336-a3dd-c03186494b04",
                "wording": "Etnies",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7421-72b3-9fcf-8e2032163e2f",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Marc",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-52a7-7369-b7dc-e9b5eaeb427d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Marcelle",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4ed8-704b-b756-d0549e963130",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Marcia",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-78a3-73f4-848d-708e550c40fb",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Marcie",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7473-7365-99c7-065a460aaf57",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Marco",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5c3a-7288-8b8d-0b9159c5a60e",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Marcus",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9130-700d-8aa4-9d3d719e7fee",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Marcus",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7728-70dd-84ac-9858f0eb3e2a",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Margate",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5382-7106-9db3-7dc3f3ba4964",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Marge",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6409-72e7-88b3-144a3f14fd45",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Margot",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-640c-7182-a43a-c2b720235e3b",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Marguerite",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7377-7149-a5bb-9a8564d54492",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Maria Sanibel",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5295-73e1-8069-756753ae1d49",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mariane",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dba-716e-bcec-427d346f5d4b",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Marie",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63a2-7301-9f70-22b2bc7751ea",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Marie-Antoinette Dentelle",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-886a-7356-b5c2-f45ac5b8e3cf",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Marilyn",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-73ef-7384-9d58-eba270f09024",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Marina",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c57-7373-93e9-01793a6e0ec3",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Marina",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-65f4-703c-8de6-ba2a31ed48e7",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Marine",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-638d-70ea-9ac2-d45f555e9e8f",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Marine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-557d-71fe-a678-c23f894f2060",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Marion",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-88a9-72cb-98bd-551f4feb08c7",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Maris MRG 611-78",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6db0-7057-a82c-fa7d84758bae",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Marisol",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-55db-702e-afc4-aaca428cb3b5",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Marius",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6f06-73fb-8050-0d051a0b2a0e",
            "brand_id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Mariée",
            "brand": {
                "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
                "wording": "Roger Vivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-953a-73c9-a978-834f7def9056",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Marker Jester 16 ID",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-953c-73a6-9be6-000c1fd2f020",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Marker Kingpin 13",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7a21-71b2-a318-feff96fb7454",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Market Tote",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5322-7209-8ebe-0e4b777fa963",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Marlene",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-74a6-704a-9343-a792e2e8e913",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Marlin",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-771e-7183-9e57-d940690a77f7",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Marlow Pant",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-675c-7321-802f-f1e9dec5cfe9",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Marmont",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7c3e-714d-b7a5-69850db9c88e",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Maroni",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4de1-7060-a588-d978913be3ec",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Marquise",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5dbd-7065-a644-c8d4666b4493",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Mars",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-592e-7099-b943-ef5f0313e5c4",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Marsh",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-69b3-7139-b98e-94cd706f5571",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Marshmallow",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8dc9-7177-b96e-b333756b67f6",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Marteaux",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5732-707f-8a54-1414e529a27b",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Martelée",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5016-72cb-b322-189e653b5a66",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Martelée Blast",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5323-7107-802d-1af461212aa0",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Martine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-550b-707c-86b9-ab897c3c7702",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Marty",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6de9-71ed-a3d0-36a1420f483e",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Mary Jane",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7409-7282-b349-2b6bd37e0f3f",
            "brand_id": "019f426a-7407-70b6-8efb-908eeb5e778e",
            "wording": "Marylebone",
            "brand": {
                "id": "019f426a-7407-70b6-8efb-908eeb5e778e",
                "wording": "Aspinal of London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-80d5-71c7-a1c0-6ac7dc3bd6ae",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Mascara",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-51ca-720f-ad70-91ef46e0ee8d",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Masque Fleurs de Jasmin",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-51be-72b9-8f14-54bf9e6daa1e",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Masque Quintessence",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8176-738e-8171-52b84a701f3f",
            "brand_id": "019f426a-8171-726a-a030-2570fad0321d",
            "wording": "Masque Rose & Fruits",
            "brand": {
                "id": "019f426a-8171-726a-a030-2570fad0321d",
                "wording": "Akane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81b1-7166-9d12-1ded6cc09c13",
            "brand_id": "019f426a-81af-7125-a055-22e2aaff2c80",
            "wording": "Masque Visage Raffermissant",
            "brand": {
                "id": "019f426a-81af-7125-a055-22e2aaff2c80",
                "wording": "Ixage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-51d5-72cb-9759-76df30fc68f5",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Masque a l'orchidée",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-81ce-7266-b52b-a7c0ae8ad4b3",
            "brand_id": "019f426a-81cb-71b1-8022-f2c4314b1048",
            "wording": "Masques Capillaires",
            "brand": {
                "id": "019f426a-81cb-71b1-8022-f2c4314b1048",
                "wording": "Christophe Robin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-741f-7260-96e7-823075151687",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Massimo",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6726-70b8-a538-5de8a8c07148",
            "brand_id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "Master Collection",
            "brand": {
                "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
                "wording": "Longines",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6756-716e-8118-e7affaf5f237",
            "brand_id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Master Control",
            "brand": {
                "id": "019f426a-674d-7327-869f-6e3c527d4081",
                "wording": "Jaeger-LeCoultre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6752-7306-8d9c-fe631569eb53",
            "brand_id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Master Ultra Thin",
            "brand": {
                "id": "019f426a-674d-7327-869f-6e3c527d4081",
                "wording": "Jaeger-LeCoultre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6496-7266-8f9c-e19f5b938867",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Masterlift X-Air",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7fda-7266-8b55-a5a83391f6b8",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Match Perfection",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e9b-7318-9efa-c554a286d659",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Matelassé",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-498f-729a-9cf1-f71e58d877cb",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Matelassée",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4bd9-7357-9825-992e599a4f2e",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Matière Noire",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7f63-724f-a548-5a1402bad282",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Matricium",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6fd4-73c5-95a2-22e28fe98406",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Matryoshka",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d00-7024-8d6c-e11cad610fc5",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Matto",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-48c4-71d2-9c77-61321985d4c3",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Mauboussin 24",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-48c8-729f-a96e-f9e7a0ab4f09",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Mauboussin Pour Elle",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-48ca-707a-bda4-cba8c9246b40",
            "brand_id": "019f426a-48ba-7353-aaec-1cc42b76411e",
            "wording": "Mauboussin Pour Lui",
            "brand": {
                "id": "019f426a-48ba-7353-aaec-1cc42b76411e",
                "wording": "Mauboussin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-53d4-709c-ae5c-4f477c3206d2",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Maurice",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7efc-7318-9fd1-447d7241e5de",
            "brand_id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Maurice",
            "brand": {
                "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
                "wording": "Jerome Dreyfuss",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-931d-7050-823d-9072b0b4da79",
            "brand_id": "019f426a-9315-72fd-8316-66a7d3699c5c",
            "wording": "Max",
            "brand": {
                "id": "019f426a-9315-72fd-8316-66a7d3699c5c",
                "wording": "GoPro",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-748b-7009-bd0a-638452660354",
            "brand_id": "019f426a-7487-73c5-a937-82a7cfd87012",
            "wording": "Maxi",
            "brand": {
                "id": "019f426a-7487-73c5-a937-82a7cfd87012",
                "wording": "BCBGeneration",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-691b-7002-bb3a-76fd44ea9596",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Maxi",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4996-7375-8e23-c2ae6921ba91",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Maxi Cartouche",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6924-7200-9f2c-88bb920253f9",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Maxi Cut-Out",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b20-715c-8b88-1ff97a87eb8a",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Maxi Dress",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7516-7214-a5bf-3c5f7fa5cc3f",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Maxi Dress",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7cff-725e-b641-77dcb4bccf71",
            "brand_id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Maxi Kaftan",
            "brand": {
                "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
                "wording": "Figue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-54c1-72b2-940a-20612124c95f",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Maxi Pure",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4a0a-70ba-98d7-3f3d4918a64f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Maxi Quadrille",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-76d9-7043-a405-866521a2fa9b",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Maxi Tote",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-64a6-73cc-829c-c4e9f0af551e",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Maxlux",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64a4-7095-a584-dc43bf5765f1",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Maxlux S - verre coloré",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-92f0-714c-8931-7562d9b11d2e",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "Maxtal Aluminium",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-536e-7015-bf0b-e6e32fd15279",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "May",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4db6-71d4-9592-aeb6c6e993e3",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Maya",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5c49-7298-ba36-b835a91b2855",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Mayflower",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6e2d-71d4-8fc1-44e686d26d92",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "McLAREN",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-610f-7259-aa55-fa47cd54cac2",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Meca",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4d9a-70b8-a880-43eabd9aadc7",
            "brand_id": "019f426a-4d93-727a-80b5-7dc484f67f19",
            "wording": "Mechanical Heart",
            "brand": {
                "id": "019f426a-4d93-727a-80b5-7dc484f67f19",
                "wording": "Tomasz Donocik",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7889-72fa-bbe7-db462eb8e228",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Medici",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-731b-73eb-a2ca-e9cd9d768167",
            "brand_id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Mediterranean Honeysuckle",
            "brand": {
                "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
                "wording": "Aerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7df0-70c2-9c59-66117d5623a4",
            "brand_id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
            "wording": "Medium",
            "brand": {
                "id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
                "wording": "Grafea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7564-70c8-b114-7e0224d02553",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Medium Briefcase",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7347-7106-adde-232b0219c8ff",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Medusa",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-727a-71f2-ab44-093dedc2cc91",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Medusa",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8f82-73ea-9616-15ea9e7b8c81",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Medusa Anteo",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84e7-72ee-90f4-a43827b434aa",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Mega",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6141-708c-9d74-35f360d1515d",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Mega Icon",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6c74-70c7-8557-722de86e3eed",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Megan",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5a57-73f9-881b-41ec59eacdb0",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Meghna",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d34-71e7-a77e-5b4ddaa7f6b9",
            "brand_id": "019f426a-7d33-7136-87db-90f8d2b47523",
            "wording": "Melissa",
            "brand": {
                "id": "019f426a-7d33-7136-87db-90f8d2b47523",
                "wording": "Frye",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7457-72dc-adea-6e151f91dd5d",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Memento",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-63bf-7194-b9e0-83676508f41d",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Memento MORI",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-809a-72fb-8aab-7e92ff6c85b7",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Men Skincare",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-94f5-7242-9ecf-2d3e1c5f2b10",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Men's Belts",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9515-72b5-b9b6-d53c9232a9d5",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Men's Escape Light Jacket",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5ae4-717b-a24f-78fc0498f364",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Menaka",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-48ce-72d1-a646-7331f76f9eab",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Menottes",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-904c-7398-945d-9d87a233a08b",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Menthe",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7e33-73f8-afdb-ba5eb79a44fe",
            "brand_id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
            "wording": "Mercer",
            "brand": {
                "id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
                "wording": "Hayden-Harnett",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5c02-724e-ae2c-e704e745dd98",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Mercer",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-65b9-73d1-a638-c24a56a5b5f8",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Merci Rouge",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-91a7-707a-bf75-41bafb140a6d",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Mercurial",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-72f2-7079-99f1-fcffe834d669",
            "brand_id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
            "wording": "Meridian",
            "brand": {
                "id": "019f426a-72ef-73c2-b22b-df4a85e6e421",
                "wording": "Zimmermann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9331-7321-953e-216c6d8117ed",
            "brand_id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "Merino",
            "brand": {
                "id": "019f426a-9329-7339-9d07-2b866765b6d6",
                "wording": "X-Bionic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9479-724d-9eea-b3568d70fc14",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino 150 Base Layer Short Sleeve",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9487-73de-a5a1-361f14e3101a",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino 150 Boxer Brief",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93ff-72a4-bd5e-85aafaf97d3a",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Merino 185 Base Layer",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9401-7147-815c-66e2b2c23a85",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Merino 240 Fleece Jacket",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-947e-721c-858d-8a3de7991063",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino 250 Base Layer Bottom",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9478-72b9-9701-4687f3562c16",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino 250 Base Layer Crew",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9481-7363-8931-f459737c20c4",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino 250 Beanie",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9488-71d2-abcf-24ece148aff7",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino Seamless Boy Short",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-947c-715b-acea-e1c958e7a737",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino Sport 150 Hoodie",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9483-70a4-a68e-7c6cea78edb1",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino Sport 150 Neck Gaiter",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-947f-7207-9814-89723af7f337",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Merino Sport Ultra Light Vest",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92e2-7048-b8af-369d6e21d729",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "MerinoLOFT",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92e5-70a4-be72-bf2b60cf002b",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "MerinoLOFT Hyperia",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92e3-71ae-b9bd-25185b74984f",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "MerinoLOFT Stratus",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4e3d-70e6-84ac-fb2f3d45bf43",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Merlot",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8f88-7168-8cc8-1471183b5194",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Merrell Moab FST 2 Mid GTX",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6bad-7169-bace-8f5ce77530f5",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Mesh",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7934-728a-bce9-0b109213d6f5",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Mesh Panel Sandals",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-791a-739a-8cce-431a72d77b9f",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Mesh Panel Sweater",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4d59-7069-b07f-d38194895a62",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Message",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-76da-7366-981e-065cbeae88b0",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Messenger Bag",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9231-7136-a8eb-ee8e6ecf6876",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "MetaSpeed Sky",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-779f-7169-affb-4003856d84f4",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Metallic Clutch",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7932-72b9-bb9a-8b3d3b8b6e3f",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Metallic Leather Heels",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91a2-7292-b245-4f147ec7a256",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Metcon",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8f13-7017-b587-74c6684b0156",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Meteor",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9386-738b-8aee-f432c00548c7",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Metro",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8b03-70f7-a9b6-324217f248f0",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Metrobreeze 9",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-77c7-7238-b8d6-439724ebe3ed",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Mews Ditsy",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5397-71b9-acdf-50ddbd8c5672",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7753-73e2-8cb1-c96dddcd1cd4",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Mia",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d07-7250-8473-bcc4a3871ef3",
            "brand_id": "019f426a-7d05-718c-835c-0f04779e2708",
            "wording": "Mia",
            "brand": {
                "id": "019f426a-7d05-718c-835c-0f04779e2708",
                "wording": "Fiorelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-72ab-70ef-8def-e076b2233920",
            "brand_id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
            "wording": "Mia",
            "brand": {
                "id": "019f426a-729d-7152-ac1d-ecb66b53b2ff",
                "wording": "Wandler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-53cd-7139-a090-8aef50c006d1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Micha",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5404-71cf-9fdf-61633bc58853",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Michaela",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53a0-71da-8ef8-07682b0f10dd",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Michaelo",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-787d-72c9-b127-dc0efe90c9f8",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Michelangelo",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-770a-71bc-9b3f-92078f3f9eac",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Michigan Chore Coat",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77d5-7353-a60d-0f89f1300d84",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Mickey & Friends",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6fe2-73ef-a827-c96dd521c3ae",
            "brand_id": "019f426a-6fd7-7343-aa43-93e749c237d8",
            "wording": "Micro",
            "brand": {
                "id": "019f426a-6fd7-7343-aa43-93e749c237d8",
                "wording": "Manu Atelier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70dd-7300-9879-fc950c2b6813",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Micro",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-93bc-715a-a4a6-72954412cf99",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Micro Trail",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93c2-714d-b3f5-5bb101672a23",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Micro Trail Pro",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93c0-72ac-a21d-ef440bee13a2",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Micro Vario Carbon",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8ced-7390-89bc-e26d08e27f79",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Micro-ondes",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4d95-70f0-87aa-47fb6b34369b",
            "brand_id": "019f426a-4d93-727a-80b5-7dc484f67f19",
            "wording": "Micromosaïque",
            "brand": {
                "id": "019f426a-4d93-727a-80b5-7dc484f67f19",
                "wording": "Tomasz Donocik",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7de8-7399-83b5-a47e2a5019a5",
            "brand_id": "019f426a-7dde-7074-a915-515a9b7a4f53",
            "wording": "Mid Star",
            "brand": {
                "id": "019f426a-7dde-7074-a915-515a9b7a4f53",
                "wording": "Golden Goose Deluxe Brand",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7829-715e-9494-5412712e5f96",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Mid-Century Kitty",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d92-72a7-beda-a1bb492b87d8",
            "brand_id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
            "wording": "Midi",
            "brand": {
                "id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
                "wording": "Gerry Weber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cfd-71e7-84c5-cf6627c881d7",
            "brand_id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Midi",
            "brand": {
                "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
                "wording": "Figue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7946-70fc-ae49-426ee9daf183",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Midi Dress",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7664-7215-b647-9bec4ecfe460",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Midi Dress",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-71b8-70c9-aeea-4ca1befd3089",
            "brand_id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Midi Moreau",
            "brand": {
                "id": "019f426a-71a5-728f-84dd-af5a49786b07",
                "wording": "Staud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-728f-72dc-818d-a9e45161a358",
            "brand_id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "Midi ajustée",
            "brand": {
                "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
                "wording": "Victoria Beckham",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4ecd-71b3-b57e-bf193f0be802",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Midnight",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5b23-7054-ad30-69f953e52187",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Midtown",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7ff1-7158-93dc-6142ebc79549",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Miel Suprême",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5b0a-7329-9028-a25bcbcd9062",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Miffy",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c4a-735c-bb68-e4a09fe0ed53",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Miffy x Miffy",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6e97-7018-9bc0-f7c4b35a42f5",
            "brand_id": "019f426a-6e8f-728b-b545-fb3b683464e2",
            "wording": "Mignon",
            "brand": {
                "id": "019f426a-6e8f-728b-b545-fb3b683464e2",
                "wording": "Coccinelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7ce6-7049-915e-7bc23bc1b2a0",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Mila",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-776f-71a1-96ee-2eb8324380a3",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Mila",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8ffd-72c6-97ad-c45a861ab2d5",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Mila",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ced-71a1-9969-320e5fd339bc",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Milan",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6c1a-707a-b6f5-a83eae1df1f2",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Milan",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7761-70b6-b141-4efbaaf3c0d0",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Milan",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4fd3-7337-ab02-4e4b8dce0f4f",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Milanaise",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7e9a-717c-a75d-352127a9783f",
            "brand_id": "019f426a-7e97-71ca-844a-c96cb50c0617",
            "wording": "Milano",
            "brand": {
                "id": "019f426a-7e97-71ca-844a-c96cb50c0617",
                "wording": "I Medici",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-786c-7003-bb13-c5fdf4226315",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Milano",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5838-73e4-9a41-4e2c5f9fa88e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Miles",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6047-738b-b0be-e1013b117ac9",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "MiliTARiA",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-63ea-73e0-90ec-c159b7e2d139",
            "brand_id": "019f426a-63e8-73d1-9810-140a85db596d",
            "wording": "Militaire",
            "brand": {
                "id": "019f426a-63e8-73d1-9810-140a85db596d",
                "wording": "Anonimo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4e42-73be-9dda-434c55d9fc0a",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Milky way",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6663-73e4-a812-2e59367c58ff",
            "brand_id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Millenary",
            "brand": {
                "id": "019f426a-6658-730b-8c56-248220cc560f",
                "wording": "Audemars Piguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-635d-723e-a07d-8a5e52fcc5c2",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Millennium",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6ad2-739b-b230-261984adaf5f",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Miller",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ca0-7178-931b-9418bfbbfab2",
            "brand_id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
            "wording": "Millie",
            "brand": {
                "id": "019f426a-7c94-7199-b202-cf6ebd53ad84",
                "wording": "Esin Akan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5b25-720f-b60d-9e9a03517828",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Milton",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d67-7385-8392-601e6c00dcb3",
            "brand_id": "019f426a-7d5e-717d-b460-7757ff76f29a",
            "wording": "Milwood",
            "brand": {
                "id": "019f426a-7d5e-717d-b460-7757ff76f29a",
                "wording": "Garrett Leight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5352-7290-b9f1-17a77003c7ed",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mimi",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5050-71c6-bc98-8e3232f8e056",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Mimosa",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7178-71cf-a283-8f4351bf7493",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Mimosa",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a4c-7030-bd4b-ca8fdd0c4233",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Mimosa Clutch",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5011-70a7-bad9-3dbf0c419656",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Mimosa XL",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-55f8-721b-8000-43c3daa7beff",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Mina",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8022-7114-a908-bdb37b441f53",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Minceur Marine",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-82b5-71ca-afcf-d388bb10fcc2",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Minceur et Cellulite",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7dee-7215-b8e8-b36f0e894835",
            "brand_id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
            "wording": "Mini",
            "brand": {
                "id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
                "wording": "Grafea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d6b-730e-a61e-c6ac50ed6354",
            "brand_id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
            "wording": "Mini",
            "brand": {
                "id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
                "wording": "Gedebe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-71c4-71e7-944d-0d57c20d5655",
            "brand_id": "019f426a-71be-7236-924d-06e425f6b806",
            "wording": "Mini 2.0",
            "brand": {
                "id": "019f426a-71be-7236-924d-06e425f6b806",
                "wording": "Stalvey",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-53ec-7112-807c-fe951ca2b6fa",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mini Astra",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5502-72ff-90b6-2f5e0a29a006",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Mini Athéna",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7a8d-708f-939e-7c8743c103d7",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Mini Backpack",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-71eb-71ed-b66b-10aef9f7265b",
            "brand_id": "019f426a-71e5-739b-b009-e6c9f9883af0",
            "wording": "Mini Baguette",
            "brand": {
                "id": "019f426a-71e5-739b-b009-e6c9f9883af0",
                "wording": "Susan Alexandra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-725e-7001-8e03-7a2dc22b09cc",
            "brand_id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
            "wording": "Mini Bailey Bow",
            "brand": {
                "id": "019f426a-7251-702f-acb0-a7bffd4e6fac",
                "wording": "Ugg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72d0-7216-aab0-1b14e6f6426a",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Mini Bom",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-501e-7259-a7e8-1677875617c3",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Mini Chevalière",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7a75-7036-bde7-cba960d430d3",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Mini Crossbody Bag",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7046-7372-8982-e70bf64b5b4d",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Mini Dome EN Relief",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-72d4-718d-b0e2-015c08039ccc",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Mini Doris",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7515-7264-83e1-f78ee0c1cd1f",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Mini Dress",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-54c4-71c8-82a3-e09d629d142a",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Mini Eden",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5c62-702f-b46d-0e0b34fb7416",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Mini Fleurs de Lys",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4e66-720e-be88-181df7f73b7f",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Mini Gigi",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63a8-70d7-9d32-a9f4332661fa",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Mini Groseilliers",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-53e9-7093-8606-c7683dcdec4c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mini Jeanine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-64be-7161-9ab9-caf29282c3ee",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Mini Legent",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-551b-7248-93ff-d0a6b30b4eb4",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Mini Luna",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54b5-720f-95d4-034886be7231",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Mini Pure",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-63aa-70b8-b6a9-051299aad89d",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Mini Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7048-713c-9495-b5e4d7c42338",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Mini Shopper Malléable",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-88bb-7107-a758-74617a90428b",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Mini Stand Mixer",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7a36-7395-83ed-70585e3c5e40",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Mini Train Case",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-740b-707f-ac34-a92058d5e232",
            "brand_id": "019f426a-7407-70b6-8efb-908eeb5e778e",
            "wording": "Mini Trunk",
            "brand": {
                "id": "019f426a-7407-70b6-8efb-908eeb5e778e",
                "wording": "Aspinal of London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6edc-7316-93c9-5adadf0e91dc",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Mini Vanity",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7057-7229-ba60-f98e53e178a5",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Mini-Afaf",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-845d-71b2-9cf5-3fb21b7e6772",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Mini-hachoir CH180A",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7676-71a8-863c-46d0977d2c75",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Minimal Watch",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-93d7-7106-842a-71203e16d8f3",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Minimalist Jacket",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9209-70e4-84b8-6a4ca955df64",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Minimus",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93e3-73de-8592-4b0d4e65a06c",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Minimus Jacket",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93e8-7006-9d8a-147d2c5bb5d1",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Minimus Pants",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f0e-73b0-a22d-13f986e0499e",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Mint Velve",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-53ab-720e-974c-65f1d5cc11de",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Minty",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7411-71db-9cde-c154db1146f6",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Minuscule",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-62bf-723f-bdf4-feaecda41b60",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "Minute RETROGRADE",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8046-731f-b1bf-3258f5302d8a",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Minéral 89",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6db5-71e3-942f-937f69daadcb",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Mirabel",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-65de-71ab-b3e8-bd4523a0cc1e",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Mirabelle",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4ffe-7094-a17f-6b75a9ee0374",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Miracle",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7355-739b-b509-6a9de2f9a55f",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Miramax",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a12-72cc-93c0-9557862adad5",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Miranda",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5122-71c8-a120-970d3d710704",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Mirrar",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5108-7376-9009-5afc565c6a42",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Mirrar Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5156-7137-aa6a-84cd81a8d8c4",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Mirrar Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5c64-718f-bc9e-a419abf3f28e",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Miss Darling",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7af7-7086-a007-b6ab039ce3ae",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Miss Sicily Bag",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-629c-7380-89a2-8a075a0ea7c5",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Mission sur Mars",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6ea0-72e4-96fa-9748cd349ba6",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Miu Lady",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8b92-708a-b06e-7ad9982ff1d7",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Mixeur plongeant",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-82f7-7355-a0b6-5fc1ab56ce66",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Mixeurs",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8324-72b2-9814-947e90144870",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Mixeurs",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8bd4-7078-9110-1591e9d9cc6a",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Mixeurs plongeants",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-54d7-7139-917d-5c606b8d031a",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Miyuki Summer",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8f8c-704c-9368-1bf05d52bc91",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Mizuno Wave Daichi 5",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5692-70e9-a0ce-dd254abe8d01",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Mmmh",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-88df-735b-9a76-cb825ab69c2b",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "MoBar Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9253-7239-a089-37a5dd186a99",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Moab 2 Waterproof",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9267-72eb-aecd-f52dba3ba71f",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Moab FST Ice+ Thermo",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ee4-7042-b026-16ed598fcf70",
            "brand_id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Moab Jam",
            "brand": {
                "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
                "wording": "Jack Wolfskin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9269-7264-ac95-2e9aa384c498",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Moab Pro",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9521-72ca-b241-faf2b8f7542e",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Moab Pro 22",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9255-7173-86ad-2505fc41a98a",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Moab Speed",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8f71-73e6-baf8-1d05e21b3034",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Mobilier Pop Up Chair",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f73-729d-bac2-5bbd38fd0d7b",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Mobilier Relax RSXA",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6fff-710a-9268-dd356336beca",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Mocassins",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-701f-727a-84f0-764262ee7cb3",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Mocassins en cuir",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f94-7368-8fe4-c256ede228ec",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Mocassins en cuir",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8a54-726d-aa5c-afa95addc046",
            "brand_id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
            "wording": "Model 66",
            "brand": {
                "id": "019f426a-8a4d-7203-a15f-6acafcc23c5f",
                "wording": "InSinkErator",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6a91-720b-90e2-bf9a4f09a4e6",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Modemist",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7879-706c-a2fc-87d6d7cb5c45",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Modena",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75bd-7138-bcf1-4838345ff6d3",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Modern Edge",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7785-71ff-a7c6-82a645a704eb",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Modern Geo",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-57b8-71bf-998d-6b283a403111",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Modèles 1;2;3",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-67d1-737a-acac-f0694409ceef",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Mohair",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-68b2-71a0-9ad2-624254ab194b",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Mohair",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7976-73ee-b857-a661b4653b66",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Moisturizer",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-70b3-70f6-b5a4-a693785237dd",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Mokki",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7560-7388-a57a-c498ea0dac7d",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Moleskine Messenger",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7dc9-73ee-96a2-3e266e2fd278",
            "brand_id": "019f426a-7dc3-7321-bc6a-60d33157644d",
            "wording": "Mom",
            "brand": {
                "id": "019f426a-7dc3-7321-bc6a-60d33157644d",
                "wording": "Glamorous",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-935c-7013-91f9-e8f6827f5daf",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Momentum",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ccf-7376-b63d-5ea303aaad51",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Momentum",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-94ba-72f1-97f5-efee83e11e94",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Momentum Base Layer Top",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-538b-71aa-b695-17c0a4ebc546",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Mon Amour",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6557-71b5-bfa9-89ce89445747",
            "brand_id": "019f426a-6554-71fb-a42e-b7e3422e1912",
            "wording": "Monaco",
            "brand": {
                "id": "019f426a-6554-71fb-a42e-b7e3422e1912",
                "wording": "TAG Heuer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-775f-737f-9268-d96aa010a827",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Monaco",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6954-7128-9064-9d93735eea11",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Monaco",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8b05-7299-add6-1cab1314d404",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Monaco Ultrasonic",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-914b-7255-ad1c-4a3358d14b41",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Monarcida",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-61fc-717e-a4ff-8dbf6880a251",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Monastir",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6200-70ad-8bb5-0b5baec37e89",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Monastir Arrow",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63ca-72ca-b4c9-84dc10163cdc",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Monastère de Voronet",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5247-7196-9084-53f5abc7d1c4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Moniqua",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7b78-7101-838c-57b1901e3e0d",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Monk Strap Shoes",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9349-721b-8f52-56a4c9edbf7d",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Monkey Abyss",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5b95-70b4-a626-9ce687033313",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Mono Cat",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-77cd-725c-8de4-045a2f6936cb",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Mono Hearts",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6ae7-7173-b350-10aeffd19487",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Monogram",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6902-7310-85cd-b96ac0813ea9",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Monogram",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6977-7110-8c3d-3b069c8bd5cc",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Monogram",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6a53-7384-be98-25e05b9a5a84",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Monogram",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4b7e-725c-8f0b-43b9c5f605d8",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Monogram Canvas",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4ba6-738d-9018-c459c6d3d827",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Monogram Coat",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b9c-7330-a3f2-51799e5a11cb",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Monogram Denim Jacket",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4baa-73f8-b71d-80cc3b015add",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Monogram Trench Coat",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6a5c-7259-874a-b621e57e57d8",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Monogramme",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c86-72f2-aa19-d2ee8316ac6c",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Monogramme",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b8e-71e4-a07c-a5027bfbf672",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Monogran",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-67e5-73b2-8982-50d03d4086a0",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Monolith",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5f0b-71b1-b46b-d1bf698b7d09",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Monsieur",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6a5e-714d-93b9-27063351494c",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Montante",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-61d4-7026-883e-bdfbe342670a",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Montantes Ride",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6be5-73ca-b02f-c9cc2fca4434",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Montebonello",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-79c3-726c-a31f-dc45c5d53bd5",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Montrail Caldorado III",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79c5-7193-a97d-b3f1911076c7",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Montrail Trans Alps F.K.T. II",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-63c8-7330-a1b6-f1ad617b6448",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Montre Poker",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4b38-723d-8f40-903723cc713e",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Montres",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cea-71e7-835e-d0bad09e4681",
            "brand_id": "019f426a-4cd8-7186-859e-6a420c78a014",
            "wording": "Montres",
            "brand": {
                "id": "019f426a-4cd8-7186-859e-6a420c78a014",
                "wording": "Cleor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-63f8-73be-9a5f-cd8c41593696",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Montres Expo-Démo",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4d4e-705b-8c8c-d28943d382fd",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Montres Femme",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d50-7396-a401-de0798904668",
            "brand_id": "019f426a-4d46-722b-adc6-c2e567004683",
            "wording": "Montres Homme",
            "brand": {
                "id": "019f426a-4d46-722b-adc6-c2e567004683",
                "wording": "Maty",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c55-73dd-9bfa-c769176e6d8f",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Montres pour enfants",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c52-7298-9e62-bf19913fe498",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Montres pour femmes",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c4f-73ae-8af8-ceb6d47212fe",
            "brand_id": "019f426a-4c2f-71a9-8139-232966deb0ba",
            "wording": "Montres pour hommes",
            "brand": {
                "id": "019f426a-4c2f-71a9-8139-232966deb0ba",
                "wording": "Histoire d'Or",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5a6a-71c6-9078-6ff9f2b61124",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Mony",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9005-70e6-99ff-9fbdbae8318f",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Monza",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7556-71b2-8d3c-cd6a65f245f4",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Monza Backpack",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-71bb-7359-98bf-03752218e1d9",
            "brand_id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Moon",
            "brand": {
                "id": "019f426a-71a5-728f-84dd-af5a49786b07",
                "wording": "Staud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-699a-7353-b295-5dbeb3de2e40",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Moon",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4ee8-72d7-bad6-b2f5ff4879db",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Moonlight",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-61ee-72b2-985a-22801bfad7e4",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Moonstar",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9148-71b1-b6bd-df90099c8893",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Morelia",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-76b0-71b3-af8f-64406db9232d",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Morrys",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-49bc-7325-8e54-4e963bfa125b",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Mors et Gourmettes",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5c05-71e7-a89b-893fbb83fc6c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Morton",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4999-720d-b816-657d0e58fb45",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Mosaique",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7d90-71ee-8cb8-75dd8defe442",
            "brand_id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
            "wording": "Motifs",
            "brand": {
                "id": "019f426a-7d8d-7376-bbc7-87563c6d6526",
                "wording": "Gerry Weber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7aca-7349-9fb7-53529a5cfa58",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Moto Jacket",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7506-731f-8e5c-8ec8cd8a799d",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Moto Jacket",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7109-715e-9c99-358eb9d68a40",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Moto RB",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7391-7239-83b1-d62f27f327b2",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Moulin à Eau",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9432-724d-b799-7c5458825e37",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Mountain Trainer GTX",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-519d-73d0-a742-45ef166721eb",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Mousse Douceur Fleurs d'oranger",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-51e6-70fd-9ede-71dcc4beef93",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Mousse au LOTUS volumatrice",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7d9e-7094-91e5-ecde9973190f",
            "brand_id": "019f426a-7d9b-7030-be73-eea547009397",
            "wording": "Mousseline",
            "brand": {
                "id": "019f426a-7d9b-7030-be73-eea547009397",
                "wording": "Giambattista Valli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6aa5-701a-a09c-fdbc330636ca",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Mousseline",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-90a5-7293-b0b3-7ef72b9da0ee",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Mousses de Massage et Rouleaux",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8daf-7160-b21a-7e324fa9c4c5",
            "brand_id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Moustiquaires",
            "brand": {
                "id": "019f426a-8da2-734a-ba8f-398809cb6407",
                "wording": "Franciaflex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6da3-712a-bc72-d16e0cc522c7",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Moyen Messager",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f75-71bf-81f3-a29f8ca9a68d",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Mrs. Thom",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-94f1-700e-8a64-dfbda57a4fce",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Mt. Clay Wharf Bomber Jacket",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-94ec-732b-8a24-e0f0814b60af",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Mt. Maddsen Mid Waterproof Hiking Boots",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5b8d-70cc-a5a9-193340eead86",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Mulberry",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7111-7008-b37f-cf8de7e7f7cc",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Mule Court Rétro",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-49dc-739d-ba6d-ef8b44fb4117",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Mules Oz",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7f93-70bf-b569-a1046a6657cd",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Multi-Active",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4aa3-7339-a96b-1ea7fc8f0911",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Multi-Rangs",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6618-706b-82af-060428441ad5",
            "brand_id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "Multifort",
            "brand": {
                "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
                "wording": "Mido",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5fd7-72a2-81a2-f0ce4ed68cc8",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Multiples",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-845e-7382-a03f-3169e078a6dc",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Multipro Compact FDM300SS",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-702e-716c-8188-db0d6ca4beae",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Murphy Large",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ff8-709e-a63d-7ae416768859",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Musc Eau de Parfum",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-94e2-73d4-b4c2-2149efd726ac",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Mush II Flip Flop",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-77dd-73bb-b73a-7482014f0865",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Mushroom",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5baf-732e-905e-8d7dae5a9862",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Mushroom",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5c4f-7080-9425-aa1b442fb76b",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Music",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-75d1-70f8-a3e3-539a7add6157",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Music Lover",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7100-7224-949f-8bfbf591204a",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Mustang",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fef-71cd-84bb-52dae9d08bba",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Musubi",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ff1-7048-8f1b-9df07fe5be9d",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Musubi Eau de Parfum",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fe8-725b-b986-4c658697c5df",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Musubi Knot",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6feb-7303-b98e-02a771e56d79",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Musubi Shopper",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-637a-7362-b195-7c30848eaae6",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "My Father",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5e30-713b-a471-85d0414946d5",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "My Little",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7fa7-7337-947c-ca4e1d988d64",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "My Payot",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5e1b-7214-9ac7-8c6a0439ee53",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "My Tits",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-64b8-71c6-837c-231e699197de",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "MyMedicalBox",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-726f-7070-a836-fa5435a2c431",
            "brand_id": "019f426a-7268-7054-a610-0474d39467f1",
            "wording": "Mystic",
            "brand": {
                "id": "019f426a-7268-7054-a610-0474d39467f1",
                "wording": "Urban Originals",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8086-73c3-bf52-3e0f7d7b9fc3",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Mystérieux Mille et Un Jours",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5f7f-716a-ab55-ade2b706e681",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Mythic",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-88a7-700d-8bb3-df3dfd6bf458",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Mythos MTK 611-100",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d85-70ff-96da-3c89a97c899b",
            "brand_id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
            "wording": "Mytoast Duplo",
            "brand": {
                "id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
                "wording": "Taurus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5e2a-73b0-9bb2-fa116becbbcf",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Mère à L'Enfant",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8dcf-738f-bf8d-915ed0e437d7",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Mètres ruban et règles",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4c63-706e-ab0a-c45990925c1f",
            "brand_id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
            "wording": "Médailles Commémoratives",
            "brand": {
                "id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
                "wording": "Augis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c5c-7161-b4b4-50066f4bf7cb",
            "brand_id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
            "wording": "Médailles de Baptême",
            "brand": {
                "id": "019f426a-4c58-7260-9b9f-d1c18a19ee15",
                "wording": "Augis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-739a-7301-836b-5c001d2a9f84",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Médecin",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-814d-70b3-9d31-d43d3992aeab",
            "brand_id": "019f426a-813b-7245-880a-d1047e8549fc",
            "wording": "Médicaments Anthroposophiques",
            "brand": {
                "id": "019f426a-813b-7245-880a-d1047e8549fc",
                "wording": "Weleda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-55c9-70da-9177-b5c8656eeb84",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Médée",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c6e-7135-a343-1caa2969391b",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "Mégane",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-68d1-72ab-9f1e-347f5f71e78d",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Mélangée",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-80f5-72d3-9e94-9aa999534cb6",
            "brand_id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "Mélatogénine",
            "brand": {
                "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
                "wording": "Gatineau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5fe9-7147-b4c5-3a012f52b746",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Mélodie",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8122-72bc-a900-c42b3361a831",
            "brand_id": "019f426a-811c-7328-be82-c107f6ea8639",
            "wording": "Ménélik",
            "brand": {
                "id": "019f426a-811c-7328-be82-c107f6ea8639",
                "wording": "TAAJ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-63e1-7390-bf7b-3d5e5157c661",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Métalique",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4d21-7356-904e-38f6c9fb42a2",
            "brand_id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
            "wording": "Métaux précieux",
            "brand": {
                "id": "019f426a-4d14-73d8-b340-8d5a8884d79d",
                "wording": "Stone Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6580-7301-9fc0-d5bc1be7f045",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Métiers d'art",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5fa5-7193-ae6a-24aadf764fac",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Métropolitain",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4bd1-7019-a60d-b317a7f74bc5",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Météore",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6f55-7035-95d1-f5559e436b0c",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "N/S Raphia Eyes",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5f28-7167-9e2e-c48151a8e731",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "N19",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5ef3-7294-bf78-1f2e20bafd36",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "N5",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7a9e-73b4-a04c-c08f7f620c55",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "N9000",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6e87-71d2-a4ba-f9f967264ce4",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "NASA",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6198-7018-bdc3-3b3597be4417",
            "brand_id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "NATO",
            "brand": {
                "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
                "wording": "Dodane 1857",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9228-7101-a1a6-50314d9de4e0",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "NB",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-83e1-72ab-9eb2-7d004f0619df",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "NCAA 55 NX",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9570-7168-b576-2286e4e622d5",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "NCAA Official Game Basketball",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-59a3-71d1-93e5-de0bbc5838c0",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "NELSON",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e14-70ad-8c07-e51face365b1",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "NEW FRESH",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e19-724e-a2ea-63018df19701",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "NEW YOURI SPIN S",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8748-7021-bc93-e94f2ab13e5b",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "NFA 3M 1721 AR",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9572-716d-a6ec-f975cda27709",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "NFL Super Grip Football",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8ef6-71b3-8b42-76370c03e0a6",
            "brand_id": "019f426a-8eed-7332-983d-520b0da44271",
            "wording": "NH500",
            "brand": {
                "id": "019f426a-8eed-7332-983d-520b0da44271",
                "wording": "Quechua",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5967-7357-b6a0-26da6e7813df",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "NILS",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9198-736a-8f8a-d287dd8a2e85",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "NMD",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-866d-7320-92fb-a5396efea7e3",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "NN-CD58JSBPQ Four à micro-ondes combiné",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8673-71b6-adf1-be62adbacab5",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "NR-BN34AX2-E Réfrigérateur combiné",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d17-717d-9248-6fcf80a5dc64",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "NRK6191MX",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92b6-71f4-b32c-2247bce3e81c",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "NSE Traction Lite III",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6dc9-73fa-b805-3a94891ee93e",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "NUAGE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d41-72c6-862b-b5bddbd0eef2",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "NUMBERING",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8aa4-73d2-8dd3-657c0b4e430d",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "NVT 1 Power",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aa0-7105-84ab-aefe101cbd3d",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "NVT Fresh Up",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aa2-733d-8ffa-5286767894d7",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "NVT Fresh Up +",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-570c-7220-8a84-434f266a1838",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Nacre ivoire",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-742a-7100-930e-a40d23d99ed6",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Naia",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-534d-722f-b5fd-749e376d58eb",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Nana",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-91e4-714c-b3c3-8d40f65783e5",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Nano",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-941e-727c-9d0d-babb9c2175d0",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Nano Puff Jacket",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-942c-70aa-b1b8-c09f0cce1317",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Nano Puff Mitts",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8557-7011-8d28-e519c67f4bd5",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "NanoCell NANO75",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7442-7204-b815-787f35102507",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Naomie",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4997-728a-a220-df3d30a92838",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Naoussa Chaine",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-63ff-722e-a1b2-cb0e80f0fb99",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Napoleon",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7870-7287-9caa-326f170136fa",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Napoli",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-67e9-7001-9f6c-96e4960cc191",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Nappa",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-552f-7338-89f0-a20659b5fe85",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Nappa",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7339-71a9-9e1a-fcc36a450bef",
            "brand_id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Nappa",
            "brand": {
                "id": "019f426a-7337-711a-958e-920485f14fc0",
                "wording": "Alberta Ferretti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6c36-7197-a81a-695fd1dcd2d2",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Nappa Lambskin",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7e8b-71d9-bbae-c390689a374e",
            "brand_id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
            "wording": "Nappa Tote",
            "brand": {
                "id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
                "wording": "HUGO BOSS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-722a-7092-a550-20acfc4ebdca",
            "brand_id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "Natalia",
            "brand": {
                "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
                "wording": "Tom Ford",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65c4-71f5-9ad5-afdb060b7c55",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Nationale",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5f69-70ac-9153-ac592f17495a",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Nautic 3",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f5f-7048-8c6b-a179b177c235",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Nautic SKI",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-63eb-708a-a9e5-e34686923ff5",
            "brand_id": "019f426a-63e8-73d1-9810-140a85db596d",
            "wording": "Nautilo",
            "brand": {
                "id": "019f426a-63e8-73d1-9810-140a85db596d",
                "wording": "Anonimo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6653-7252-935f-369ce44f2bde",
            "brand_id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Nautilus",
            "brand": {
                "id": "019f426a-664a-7284-9d69-a75dee56956e",
                "wording": "Patek Philippe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-60fd-702e-b778-77439339d8be",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Naval Aviation",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6029-7222-a22a-848115f09111",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Navigator",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-66fd-73d9-a118-a0951674a11e",
            "brand_id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Navitimer",
            "brand": {
                "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
                "wording": "Breitling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7a13-7095-a5e6-f287971a6acf",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Navy 'Tamara'",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6021-7210-a53e-51a5c2d8d534",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Navygraf",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7d78-72b3-bd24-abc9b1367550",
            "brand_id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
            "wording": "Nebula",
            "brand": {
                "id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
                "wording": "Geox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-76fb-704d-9c0c-84a7037399d4",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Necklace",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b45-7082-8c9d-52ab7c382a2f",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Necklace",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7adf-7239-84ef-b44bd1097ef5",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Nectar Love",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-819d-7274-a147-5ce29618223f",
            "brand_id": "019f426a-819c-7253-95e2-b756d2c64062",
            "wording": "Nectar de Miels",
            "brand": {
                "id": "019f426a-819c-7253-95e2-b756d2c64062",
                "wording": "Melvita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7ff7-704a-9640-08e646022092",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Nectar de Roses",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-82c6-72a0-8f3c-9b448417af44",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Nectar de l'Amazonie",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5a41-73b6-8648-d237edd0171b",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Neela",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5407-733f-8397-63e2aa1efce6",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Neelo",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6f54-7246-b5d4-4ee841324f41",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Neeson",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-530e-7066-ae64-074559f65c2c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Nelia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-949e-7328-a5e6-c81fdd80f85e",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Nemesis Fins",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5bef-70f9-96cb-3c5fc5a77bd7",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Neo x Steffie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9464-7292-8236-afbf087490d5",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Neofleece® Combo Scarf",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-807a-718f-8ac8-4946e0b357bb",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Neomorphose",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-803c-736c-8c7b-183d59c8d292",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Neovadiol",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7423-71b2-9050-2e26ecf1a4b1",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Nerla",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8428-7378-bf1d-0564844df0e0",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Nespresso Citiz",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-842a-73f1-9557-a66eabec9d1c",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Nespresso Essenza Mini",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8409-7063-b1dd-49dbecb6fa18",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "Nespresso Lattissima Touch EN560.B",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-842c-71da-b72d-6864f62d9969",
            "brand_id": "019f426a-8419-712a-bb7c-d9e615778af2",
            "wording": "Nespresso Vertuo Plus",
            "brand": {
                "id": "019f426a-8419-712a-bb7c-d9e615778af2",
                "wording": "Magimix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7efe-7332-9ce5-b9cd881d7d6a",
            "brand_id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Nestor",
            "brand": {
                "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
                "wording": "Jerome Dreyfuss",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8309-722f-9868-e57a2f208ee8",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Nettoyeurs Vapeur",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8bd0-71c3-be10-6cb7635a5fe2",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Nettoyeurs haute pression",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bcd-71a7-97a7-0049b26bb0c0",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Nettoyeurs vapeur",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-66b1-7150-9f34-816191d7cc21",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Neutra",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5bec-72f8-89e7-0671b687c648",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Neva x Steffie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4b62-738a-b62b-b0f58a6012e5",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Neverfull",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5b5d-7130-9efc-d0a5ef5d4582",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "New  York",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8b01-7383-839e-71b07d21d750",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "New Breeze 7",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-54f9-70ef-9a45-39c124b9ed1c",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "New Calypso",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54e5-7385-9ecf-c65f2bc717f2",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "New Cléa",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-547c-7175-9731-5238d980792a",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "New Delhi",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9134-715b-aa52-e1357c18800e",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "New Scrum",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9129-70b6-b829-615f073d6e7a",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "New Skin",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9341-7105-b9ad-0454449047df",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "New Stripes T-shirt",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6f30-719a-92d8-b6f55ae9328b",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "New York",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4d60-70df-903f-e2b19ee33052",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Newport",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-79be-71a4-b6f5-16f895008191",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Newton Ridge Plus II Waterproof",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6369-72cd-9e92-406cb1596ec9",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Nicaragua",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7b4d-7295-b43d-ba7de87922c2",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Nightgown",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b4a-707f-b93a-9d0d3f7ca1c4",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Nightshirt",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7708-73e0-89c0-c9f25d6894d8",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Nimbus",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-72e2-7229-b454-1311a25d2685",
            "brand_id": "019f426a-72de-70eb-94bb-a97b3bf8af8f",
            "wording": "Nina",
            "brand": {
                "id": "019f426a-72de-70eb-94bb-a97b3bf8af8f",
                "wording": "Zanellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7d47-7116-bf71-41f655dc5a82",
            "brand_id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
            "wording": "Nina",
            "brand": {
                "id": "019f426a-7d45-73d6-9c5d-3dc33c2a2cf7",
                "wording": "Gabriela Hearst",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5605-723d-a0b9-8f6c051e29b7",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Nina",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5b72-715b-b0a1-296e30e1e2fa",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Nina",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7c0e-71bd-9608-4cc9cefaf883",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Nina Crossbody",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-88e6-7042-96e0-79bbc2f72560",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Ninja",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8dcd-73c5-aa6f-60e29590efd5",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Niveaux à bulle",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-81ea-7148-b791-ee966b4313a8",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "No Worries",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-781d-71bf-a5e0-3d021c31b6cc",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "No-Show Socks",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-85c6-73ef-9984-cd8acf3a6569",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "NoFrost WQ9I MO1L",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6cd3-7114-b487-485868d4a2cf",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "No_Code",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6d3b-7270-857b-903877b3aae4",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Nodi",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5273-7276-873b-1a8c0743cdb5",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Nodo",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6a6f-7033-9f42-f4f095db9ae0",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Noeud",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6252-715f-9ceb-91aa2305eb75",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Noir",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-544f-735f-9e0b-fdf8895d2341",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Noir",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6ef7-73c7-847b-bed897892f33",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Nolo",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6334-72a6-926d-4c4b8b8d9714",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Non Feu",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-770d-734c-88ce-85a842aa2ae6",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Nora",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5be1-71ed-9071-eca2b0ebcb6d",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Norfolk",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-54f6-7008-8115-26ed82c9bbe2",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Norma",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8043-721b-8a1a-549a1b582a07",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Normaderm",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7416-7325-86e7-917bdf7eedbe",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Norme",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8f93-723c-bc98-686851cc2d8a",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Northwave Spider Plus 2",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-68db-71b4-aecd-02ea8b23ad35",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Note",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7062-7358-aa2c-c2a4db2e69e7",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Notoriété",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-63cf-72e0-ac8f-7c67523f45c3",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Notre Dame de Paris",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-823e-712c-8c6a-1eb573a6249f",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Nourrissant",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4bc6-7265-bc79-9091eb6ff5a9",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Nouveau Monde",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-527b-71bf-98db-80484c0279ff",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Nova",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c41-72f7-bb62-a4c97cdbf674",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Nova",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6008-7135-8c07-c8ea83637f4e",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Nova",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8a2f-7375-8a9e-952d7e4af4cd",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Nova",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-74a0-7131-87e7-dcf1a58b2bf4",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Nova",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6e55-710d-84bd-e54d06d2a5b6",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Nova",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e51-7192-8d3c-f0eb2322e3c8",
            "brand_id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
            "wording": "Novel",
            "brand": {
                "id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
                "wording": "Herschel Supply Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e3c-7359-95aa-447e2238dc0d",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Novel",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6da8-708d-bb94-003d09fa501c",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Noémie",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-568e-714b-b43b-7a02d9c64362",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Nuage",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7c65-7168-8950-77728275c3b3",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Nuage",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-821b-70d0-ad33-91254fba1ee6",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Nuage Céleste",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-821e-7260-938d-77c123b14c21",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Nuage de Coton",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-57c7-7391-8b1e-a06173fc4686",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Nubuck",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7492-72ff-bb3f-a99e117f4e3a",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Nuisette",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4bc0-7154-b30c-19ab27bc52fd",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Nuit de Feu",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6f5f-73eb-a27c-c27435140eb3",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Nuit et Jour",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-567b-72fb-a189-26fcf9588d54",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Nulook",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5bea-73e6-8abb-8f409f61f808",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Numa x Steffie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-70aa-7212-8ac3-60808147ad0d",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Numéro Dix",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70ac-72db-a974-9e2c8faa18b8",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Numéro Neuf Mini",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70b8-7298-b226-f7002fe37358",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Numéro Septembre",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70ae-7396-af39-bf57ae7b6143",
            "brand_id": "019f426a-70a6-72b6-a306-86423fb61582",
            "wording": "Numéro Un Nano",
            "brand": {
                "id": "019f426a-70a6-72b6-a306-86423fb61582",
                "wording": "Polène",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-92bc-738f-a0a9-1a99c0c201bb",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Nuptse Jacket",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5410-73d4-8f9f-f5f2c883681d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Nusala",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8080-725e-a262-b5e844b22f9d",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Nutri-Repair",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fab-7165-a447-64e74ba05daa",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Nutricia",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8156-706a-8913-95f8741393b5",
            "brand_id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
            "wording": "Nutrition",
            "brand": {
                "id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
                "wording": "Yon-Ka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-829e-7327-9d14-e9d9b3366a2b",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Nutrition Essentielle",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8864-7065-ab49-9fe2b0f7d4c0",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Nuvola",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-68cf-7355-ab72-762a7ae3cf84",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Nylon",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7085-730c-820d-b3c29b1ca86f",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Nylon",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7188-7194-895c-e38868080d99",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Nylon",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7af9-73b9-bf82-3d61332f563c",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Nylon Backpack",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a92-728c-a61b-3644f507e28c",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Nylon Backpack",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4fb8-70ba-af0f-9acb6fb0ef6b",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Nénuphar",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-722c-7387-a790-f11d70146b48",
            "brand_id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "O'Connor",
            "brand": {
                "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
                "wording": "Tom Ford",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-72b8-73fb-a23c-f3260e2cfd4a",
            "brand_id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
            "wording": "O'Hare",
            "brand": {
                "id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
                "wording": "Want Les Essentiels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8ac0-7211-af36-1937c81f7973",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAC09HUB",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ac2-70bc-ae2c-09af532118c4",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAC12HUB",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ac4-71d3-be07-af5593f579f7",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAC18HUB",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aac-7370-9e67-d256d1eb89a7",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAC2DDX291",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aa8-718e-9e2e-c37aa064d91a",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAC2DNF359",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aaa-7353-a120-ee1af631f6c8",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAC2DPS236",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8abe-73f1-83cd-2e03c7a88884",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAH116IX",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aba-7038-91de-be55c4b9c57e",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAH55B",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8abc-7156-a006-1b7fe9be7053",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEAHG90S",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aae-7274-94c2-b4dd0b125e0f",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEALL105W",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ab3-7136-8532-e4a46488ff13",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEALL108W",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ab1-712b-80ce-8b666e38b452",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEALL7101",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ab5-71a9-9c31-f8566a53fd1f",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEALLC50I1",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ab6-7318-99e6-ea74a3d8f968",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEALLC60I1",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ab8-73f6-a740-96020c4bd242",
            "brand_id": "019f426a-8aa6-735e-809f-9ac29905e108",
            "wording": "OCEALLC90D1",
            "brand": {
                "id": "019f426a-8aa6-735e-809f-9ac29905e108",
                "wording": "Oceanic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-641a-700e-8a5b-1e09662a8c1a",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "OCTA",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5d39-71d8-9bea-0647b06e5ff7",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "OCTI",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-512c-7215-9c06-6b06469f6ce2",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "ODE",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-511e-7047-b4e3-23475983486b",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "ODE+",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4ef9-71f4-a6e1-c06514ee65b8",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "OJO",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8555-7317-ae36-4eb1d4f5c55f",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "OLED C1",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8645-708c-9ddd-938e4cadd862",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "OLED TV TX-55HZ1000",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-637f-7383-a5e6-e8417258d9e8",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "OLIVA",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-59df-72e1-bf06-ce90da00df0b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "OLWEN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-55d4-73d7-90f4-8a569e2fa994",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "OLYMPE",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9211-70cc-823e-1d8f9ac36287",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "OMN1S",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8ebe-70bd-8193-e1330f7c6f44",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "OPENIA Access",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-647c-7037-aaac-298910674a65",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "OPTIMA",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4bc9-723c-b977-0ad06e0d1726",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "ORAGE",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6ecb-7249-8764-a2f9ba1ba97c",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "ORB PERU",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8d18-70e1-a1d4-1ddeefd015ea",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "ORB153BL",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5be7-7184-90f2-306d19d26cc4",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Oakwood",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-49c5-7234-a9fa-6d294dd9007b",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Oasis",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4f29-7209-a1b7-abd437fe6b14",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Oaxa",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-60bd-72f5-8d7b-169cdad71b53",
            "brand_id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
            "wording": "Oblongue",
            "brand": {
                "id": "019f426a-60b9-73f8-9f62-d75d65a7a971",
                "wording": "March LA.B",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d20-7037-8b9f-a2d965c2296f",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Obra",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7690-72b3-8a36-8fb147118287",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Obsession for Men",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4e53-7055-b32c-56850221162b",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Obsidian",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6615-73a2-ae09-98e302faebba",
            "brand_id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
            "wording": "Ocean Star",
            "brand": {
                "id": "019f426a-6610-72bd-b3ec-f784cda51d0e",
                "wording": "Mido",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-521a-72cb-8595-c9b80f5fbd2c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Octavie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-588d-7235-abc8-803dc8b7d9d8",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Octobre",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4d86-72f2-8323-705890d1b7b5",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Octogone",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d77-7116-b15f-a604dc6aa77a",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Octogône",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8025-7393-a99c-ad11410b526a",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Océa Sun",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5136-72d0-be51-2f6b06bde6f9",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Ode",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7732-713f-9044-b12542777618",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Odessa",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6f20-703f-bd6e-8d8efc1f0b5b",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Odette",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5277-7069-8db7-d4b5b843b637",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Odette",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52be-704f-8d5f-5c35b24fe687",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Odina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4f88-724d-a007-253383cd019b",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Oeil",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5db5-706c-b48d-be1927529f38",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Oeil",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5db2-718a-9bc5-fd8368487293",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Oeil avec Diamants",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-692c-72e4-92db-b0ae6099d128",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Off Shoulder",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-63c2-71f5-85b4-4cd5adc93f6e",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Oiseaux Exotiques",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7fd1-725c-8def-a4c1560294e1",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Okara Color",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-84f2-70c9-bcde-c0fe9239834a",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Oleoclean Pro Inox & Design FR804040",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7fc2-73e5-85e8-3be887d1251f",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Oligopur",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-52b2-7161-b89d-c989139c072d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Olivia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7742-71d2-bd95-7bac0ab0d36d",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Olivia",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9024-738c-ab2b-7069caacceb4",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Olivia",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7c2d-722d-a03a-a085394ce38c",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Olivia Rhinestone Belt",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6cc1-7202-a2a7-4a260ebfba1f",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "Olivier's Cabas",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5232-720a-b775-1f7353c7dc9f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Olya Unite",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-55aa-7172-abda-8524d4f0752a",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Olympe",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7068-7049-a7e1-34d651e7f5d3",
            "brand_id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
            "wording": "Olympéa",
            "brand": {
                "id": "019f426a-705f-7002-91a8-b9bbd5a91b74",
                "wording": "Paco Rabanne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5561-728e-bdd5-8ecad3d1d4ab",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Ombeline 2",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-80b9-70ee-b899-7b21e402cf52",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Ombre Blackstar",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4bed-7081-91c4-6aa7cd2a8ca7",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Ombre Nomade",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-80d7-710a-9c27-ef89877759ab",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Ombres à Paupières",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9161-71b5-a673-feb82f74d188",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Omega",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94fa-7103-bb24-e0d01dbd1b2a",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Omega 350",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-4eae-738f-a1eb-676f900260cf",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Omni",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8afa-7136-a79f-89c28d606b6f",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Omnichef 45HB",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5e72-71fa-8324-438ed853c1f0",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Onda",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6543-71e9-a615-8558b6626516",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Ondulations",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8cb6-727e-8594-d95b621c6618",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "One",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6550-722e-807c-c7eec3b12c7d",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "One & Two",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-715b-7262-a52e-210831b2d2d8",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "One LF",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-90fa-71ba-8f75-f71bf9db59ab",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "One-Piece Suits",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-86a9-739d-ab38-5e8394223c53",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "OneBlade QP2520/30",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b4e-7321-82eb-bb128aa7ebf4",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "OnePWR Blade 3 Pet Cordless",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9240-7120-a43b-d187b1fa7471",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Onitsuka Tiger Mexico 66",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9260-7250-a60c-781fdcb3474a",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Ontario 85",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6760-7001-9e13-b338e96bd308",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Ophidia",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8163-7143-b635-09dd6e776406",
            "brand_id": "019f426a-815b-711a-b5ad-0909f1c1a547",
            "wording": "Ophycee",
            "brand": {
                "id": "019f426a-815b-711a-b5ad-0909f1c1a547",
                "wording": "Galenic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6979-7066-998f-b143d7cef190",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Opium",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8d83-734e-8055-c71252a44e5b",
            "brand_id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
            "wording": "Optima Magnum",
            "brand": {
                "id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
                "wording": "Taurus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84e1-732f-a020-d75fd18e839a",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Optimo",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84c3-73b4-b26b-f52da7fd9adf",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Optimo OX444810",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-659a-7375-8d49-8f308cce5777",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Optique",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5e02-723f-8da7-22c5e595d914",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Or 13cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e09-71b2-86fc-a0be017e71c0",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Or 17cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5df9-7228-875b-0f29804aa2c2",
            "brand_id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
            "wording": "Or 9 cm",
            "brand": {
                "id": "019f426a-5df8-72df-bd4b-eaf6853c0e72",
                "wording": "Odile Gilbert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e3a-7385-bae3-8286c5df3ae7",
            "brand_id": "019f426a-5e37-7215-a03c-06f6e7912c22",
            "wording": "Or Blanc",
            "brand": {
                "id": "019f426a-5e37-7215-a03c-06f6e7912c22",
                "wording": "Elise Dray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5e3c-725f-8f17-dc84d09d61c0",
            "brand_id": "019f426a-5e37-7215-a03c-06f6e7912c22",
            "wording": "Or Rose",
            "brand": {
                "id": "019f426a-5e37-7215-a03c-06f6e7912c22",
                "wording": "Elise Dray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-551e-72a5-850a-4e2298caf57f",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Oracles étoile",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-49ce-7368-82e4-8f2ec88c2a4a",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Oran",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5878-71a9-b2f0-93217cdfc366",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Orange",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-69ea-7251-8a2f-a95fbb53ff42",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Orbit",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-685a-7145-af30-1b5fa0ebd5fd",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Oreiller",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7d9c-73e2-b216-be3a59c1b030",
            "brand_id": "019f426a-7d9b-7030-be73-eea547009397",
            "wording": "Organza",
            "brand": {
                "id": "019f426a-7d9b-7030-be73-eea547009397",
                "wording": "Giambattista Valli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-686c-7175-8860-32f510ed5dd3",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Organza",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67d8-7163-8c03-09d9516eeace",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Organza",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-937c-738e-92f2-655fe6639e0d",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Oribi",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5b3a-70ef-93d1-445d29fb3979",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Origami",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6897-70bb-a34f-d8edd68a0165",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Origami",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7e2a-71e3-9f62-46016e339262",
            "brand_id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
            "wording": "Original",
            "brand": {
                "id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
                "wording": "Havaianas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6cdc-7355-a079-680d8d399543",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Original",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9338-73f3-b3c3-bc17b214eb69",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Original Arch 18\"",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7e94-7219-a81e-054118cce9cc",
            "brand_id": "019f426a-7e8c-724d-866f-652940ff9a87",
            "wording": "Original Lightweight Rubberised",
            "brand": {
                "id": "019f426a-7e8c-724d-866f-652940ff9a87",
                "wording": "HUNTER",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e92-733c-adc8-4774b44d3346",
            "brand_id": "019f426a-7e8c-724d-866f-652940ff9a87",
            "wording": "Original Moustache Bubble",
            "brand": {
                "id": "019f426a-7e8c-724d-866f-652940ff9a87",
                "wording": "HUNTER",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e91-734d-943e-bf139af7bf3e",
            "brand_id": "019f426a-7e8c-724d-866f-652940ff9a87",
            "wording": "Original Rubberised",
            "brand": {
                "id": "019f426a-7e8c-724d-866f-652940ff9a87",
                "wording": "HUNTER",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e95-7342-b5e6-9ea0a85d55da",
            "brand_id": "019f426a-7e8c-724d-866f-652940ff9a87",
            "wording": "Original Tall",
            "brand": {
                "id": "019f426a-7e8c-724d-866f-652940ff9a87",
                "wording": "HUNTER",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9112-7021-bbe4-d9f54743257a",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Original Tennis",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94ce-7336-ad52-ae5553cf259f",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Original Universal",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7e8f-70fa-b14e-48454ca08b45",
            "brand_id": "019f426a-7e8c-724d-866f-652940ff9a87",
            "wording": "Original Vinyl",
            "brand": {
                "id": "019f426a-7e8c-724d-866f-652940ff9a87",
                "wording": "HUNTER",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-66be-708d-8088-5914a3b56a55",
            "brand_id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "Originals",
            "brand": {
                "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
                "wording": "Swatch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6e57-719d-8af5-48544a7ef606",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Orion",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-542e-71b3-9a68-da72f064696f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Oromos",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9437-72cd-97da-30b4187eaff2",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Ortles 2 GTX Pro Pants",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9435-7296-9ce0-67e45a63d504",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Ortles Hybrid TirolWool Celliant Jacket",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8d9b-720d-a0a4-404a4359dd67",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Oskar",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6049-73eb-adcb-63dcee8c2994",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "Osmium",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-80ea-73f8-a3f4-33a501912788",
            "brand_id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Osmoclean",
            "brand": {
                "id": "019f426a-80e7-7070-822b-75c13f312f2b",
                "wording": "Esthederm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8d94-72aa-9f31-d06f2ebe490b",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Otto",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-707b-7346-8c83-6c8a5d7335c0",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Ours",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f27-70dd-949a-43d4b33e2859",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Ours Polaire",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7bf2-7262-9c6f-340e1cea3f98",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Outdoor Canopy",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7549-715a-8754-e7ce284a1987",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Outerwear",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6a78-71d1-84a9-060dec4c4645",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Ouvertes",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-549a-7081-b53c-7a796fd701c2",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Ovale",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6d16-723e-ba9b-5e3231063fb3",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Ovalo",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8f4e-7376-8c15-00e8dc16db2d",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Overgrip",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6582-7368-b238-359f0e3df440",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Overseas",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7cf5-70f6-8b9a-8f8552ad77ef",
            "brand_id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Oversize",
            "brand": {
                "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
                "wording": "Faith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5052-71dd-8f87-5a07f8083f53",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Oversize",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7da3-7224-b551-621817c04525",
            "brand_id": "019f426a-7da2-7214-a498-c984102528bc",
            "wording": "Oversize",
            "brand": {
                "id": "019f426a-7da2-7214-a498-c984102528bc",
                "wording": "Gianfranco Ferré",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-729b-72f2-9a84-b65b2c2b8397",
            "brand_id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "Oversize",
            "brand": {
                "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
                "wording": "Victoria Beckham",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7dc1-72c7-953b-6b704ca5e022",
            "brand_id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Oversize",
            "brand": {
                "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
                "wording": "Giorgio Armani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6eb2-73e0-b045-ffc4f9fe97d9",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Oversized",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-79e2-72e6-aeba-be46adb6b0da",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Oversized Shirt",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-792c-731e-ab54-486ddae899c3",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Oversized Square Sunglasses",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ad7-7337-b0bc-36c74177d59d",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Oversized Sunglasses",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4d98-72e9-a164-0df9f2819126",
            "brand_id": "019f426a-4d93-727a-80b5-7dc484f67f19",
            "wording": "Overture",
            "brand": {
                "id": "019f426a-4d93-727a-80b5-7dc484f67f19",
                "wording": "Tomasz Donocik",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-94c3-70d3-8fb3-4a188c9e51b7",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Overweb GTX Gloves",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94ca-726b-bc67-dd2f2f4d6ee4",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Overweb Goggles",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-94c8-70e9-b887-9c963e4a7806",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Overweb Helmet",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6d52-705a-a233-fcada7394d63",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Ow",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5bb0-7390-8c6a-fe9da9421a3c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Owl x Coral & Tusk",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6e2b-719e-bc7b-7045ffebdc40",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "Oxford",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f68-7273-8438-e9f28355fbe9",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Oxford",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7b6a-71ab-a4d4-6bb3fecc0afe",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Oxford Shirt",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b75-7136-a8c9-a1fce6235193",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Oxford Shoes",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8dfe-711f-ad42-3a6d0fc2a17f",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Oxo",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ff9-7393-8ccd-d5a16178527d",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Oxygene",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6632-7249-981d-69859f6ab677",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Oyster",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d1a-7238-a72a-fdcca81e3f52",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "PABLO",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8e06-7362-986e-671a1caa0865",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "PAC CN93ECO",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-83fe-72db-a0bf-56f2664f3bd5",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "PAC EL92 SILENT",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e04-719e-9131-c56d341ff114",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "PAC N76",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8400-70e9-af82-a473114096ae",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "PAC N81",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e02-7043-9eea-322ebf5817c7",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "PAC N82 ECO",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-83fd-714f-8412-2d58fc17e1bf",
            "brand_id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
            "wording": "PAC N90 ECO Silent",
            "brand": {
                "id": "019f426a-83fb-7377-b0fa-aeb42862e3e4",
                "wording": "De'Longhi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6e72-7363-a7eb-1866e15c2356",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "PACKAWAY",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e12-7050-939d-b0fc83e5b725",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "PALMBEACH",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d70-7320-b0ef-958abb1545b3",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "PANCONESI",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d8d-73cd-a0a3-e167110333dc",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "PANIER",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-49eb-702c-be4a-1fc158193f94",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "PARIS",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5da2-730d-82bf-d4327dedb481",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "PAUL SMITH",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8750-718f-bc5f-49a57889ae82",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "PC 640 T (AN) BK/HA",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d53-72e2-aa96-756a5198cf5c",
            "brand_id": "019f426a-8d4b-70b4-9837-86138eab5405",
            "wording": "PC240",
            "brand": {
                "id": "019f426a-8d4b-70b4-9837-86138eab5405",
                "wording": "Simeo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e78-703c-b509-75118fdbeaa3",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "PC246",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e6d-7308-a64d-4a82d0ed1dde",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "PC282",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d4c-7275-92f3-669458941dab",
            "brand_id": "019f426a-8d4b-70b4-9837-86138eab5405",
            "wording": "PC289",
            "brand": {
                "id": "019f426a-8d4b-70b4-9837-86138eab5405",
                "wording": "Simeo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5d5a-73c2-a699-75880f0def9a",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "PEARLS BEFORE SWINE",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a17-7372-8c84-710769103739",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "PENSEE",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-572a-703e-b375-98e578e42e9d",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "PERLES",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-492f-73fa-990c-23740126d3a2",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "PERLES",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8d51-7319-9567-0bd9dcdda921",
            "brand_id": "019f426a-8d4b-70b4-9837-86138eab5405",
            "wording": "PF185",
            "brand": {
                "id": "019f426a-8d4b-70b4-9837-86138eab5405",
                "wording": "Simeo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-79c8-72c9-bd91-875bdad81378",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "PFG Bahama Vent Loco Relaxed III",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79d6-7249-87d3-414ed80a1ae5",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "PFG Tamiami II Long Sleeve Shirt",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8920-70ce-8a29-ffceb4038ac2",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "PFL106W-F",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bf7-738a-a0fb-9475151f6f3a",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "PG 8545",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5dec-7216-b20d-a666a94b725f",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "PHOENIX",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5f10-7269-8a53-149ee8b61eb5",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "PILOTE",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8d3c-70dc-a852-04faf5911771",
            "brand_id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
            "wording": "PIM003",
            "brand": {
                "id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
                "wording": "Casselin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6e17-736d-94db-8f2e5d8d23bd",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "PIXI",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6386-7297-be75-39ba70e58aa5",
            "brand_id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
            "wording": "PLACE VENDÔME",
            "brand": {
                "id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
                "wording": "Czapek & Cie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8936-714f-b723-ac7cd4ceae45",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "PLC 241",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-891b-70f3-96d2-dd385e852e3b",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "PLC230S",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-891c-73e7-b159-cec263812a86",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "PLC311W",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-891e-7271-87cb-41e9f385c877",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "PLC360S",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-64c2-727d-addf-09c961e27428",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "PLomb",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5dcc-70d4-a30e-5f753df2161a",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "POINTS",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6d82-70ed-9f69-da94e2676d02",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "POIRIER",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6e73-726c-8312-6e5d1be3ed2a",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "PONCHO",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6622-72b1-bfac-efe0fa329a59",
            "brand_id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "PR 100",
            "brand": {
                "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
                "wording": "Tissot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8a8c-70a8-948c-727d9fea48fd",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "PR776A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a8d-7243-abe3-c68341231da1",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "PR776A.2",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a8f-7073-ba77-f2b14ca8f54d",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "PR776A.3",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a86-701c-88da-90b2fd711a7a",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "PR785A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a88-71e4-a6fa-6d4d1b3b6537",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "PR785A.2",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a8a-72a5-9bfe-268299424b12",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "PR886A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-645e-734e-aa73-5c334efde97d",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "PRATO",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8933-7205-b376-007bab05d0dc",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "PRC66X",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6c80-71c5-865c-9eba6edba47c",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "PS1",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-844a-73bc-99e1-5c89918270ab",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "PU4020F0 Intense Pure Air",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e9d-7251-b225-c27a8c3900c4",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "PURAIRE100",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6cf9-7229-9967-aefb0101ad5d",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "PXT",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9388-7015-a777-98292d69e9d2",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Pace",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6cf5-70ba-b201-95188058eccd",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Pace",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6217-7278-a962-37bf2343ac5c",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Pacha",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5c20-7011-96dd-02e394f1eb5c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Pacific",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-59db-7017-9e71-7e7e722eb8d7",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Pack kitts",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6908-7022-9c74-c7c4a28bce38",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Packet",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5c50-7345-bebe-ee39350dae0c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Pacman",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-62d5-7212-b18d-2dcf23fd2e47",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Pacte",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c65-7262-9380-ca77520b7a47",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Paddle Brush",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5f9d-73ec-9adf-09db0ed0611f",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Paddock",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-73fa-7102-b958-528a7264026d",
            "brand_id": "019f426a-73f3-739a-b301-c48fdc613781",
            "wording": "Paddock Barnyard",
            "brand": {
                "id": "019f426a-73f3-739a-b301-c48fdc613781",
                "wording": "Ariat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5aed-7016-89c5-e87d0b275d61",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Padma",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4fc8-713a-ae6b-a153ffda1c93",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Paillettes",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-56f7-708e-b69e-6ce3f47d9a1d",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Paillettes et serpent",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-628b-70d5-8772-e0090d6c86c6",
            "brand_id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Pains et Viennoiseries",
            "brand": {
                "id": "019f426a-6279-719f-9f35-d5110387906b",
                "wording": "Michel Roux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-77b8-71bc-9ae7-06dce21a871e",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Paintbox Flowers",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77e5-7322-bba8-9487dccf19fe",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Painted Bluebell",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77d0-73f0-9df5-fd24f3c964a1",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Painted Pansies",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-778e-73ee-90dd-944192dffb68",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Painterly Hearts",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-733e-7082-b9d3-0809b326153a",
            "brand_id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Palazzo",
            "brand": {
                "id": "019f426a-7337-711a-958e-920485f14fc0",
                "wording": "Alberta Ferretti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7282-703c-9fc2-0b9c4792d999",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Palazzo",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7cfe-71f5-a039-01422903dc32",
            "brand_id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Palazzo",
            "brand": {
                "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
                "wording": "Figue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4d12-7020-8cb2-1dc7b859d41e",
            "brand_id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Palettes de couleurs variées",
            "brand": {
                "id": "019f426a-4d01-738d-9cda-a38d664e6506",
                "wording": "Maison Guillemette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-707f-726b-8e39-dd576cda3256",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Palm Angels",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7c59-70f2-aa2b-3c9120ec7c05",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Palm Beach",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-52db-704e-8e5a-4eb5b4e5f5db",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Palma",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-66dd-71bd-a9da-f75d7e2d2ec5",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Palmier",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4ebd-7168-9df9-65197f4b46b6",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Paloma",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5476-732a-812d-10fa7a1a4252",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Paloma",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5e5c-71c4-840f-68a4e1bf1914",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Panache",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7837-72ad-9367-3522ab1536f2",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Pandora",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6327-723b-859e-3f4055ffef5c",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Panneaux",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-49ae-711f-afae-cba81a1332d4",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Panoplie tout Cuir Jersey",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8cb7-739f-98f8-6853bf8c6e84",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Panorama",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6b6b-73c0-9e19-daa43efd60dd",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Pantalon",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a13-727b-b63e-b67505eaaee5",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Pantalon",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7294-717f-ba65-649e8858cee6",
            "brand_id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "Pantalon",
            "brand": {
                "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
                "wording": "Victoria Beckham",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7304-7212-bb07-e622b5f3a26b",
            "brand_id": "019f426a-72fb-7219-909d-45d63631e250",
            "wording": "Pantalon cargo",
            "brand": {
                "id": "019f426a-72fb-7219-909d-45d63631e250",
                "wording": "3.1 Phillip Lim",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7011-739e-92f5-c612aab8dfa7",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Pantalon cargo",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f81-735b-b500-ca09bdc6f929",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Pantalons",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ade-7228-9618-a0fd08127fc9",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Pantalons",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9091-7280-b70b-d145b6107dfb",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Pantalons et Shorts",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6eab-7260-a53d-08204791eb60",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Pantalons et jeans",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-74bf-713e-b0cb-5be67fbc8798",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Panther",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4843-7301-8b14-2a6b006caa9c",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Panthère de Cartier",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9449-711e-97fd-7c58f75766cb",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Pants Koper M",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-52eb-72da-9b21-af792726a6f9",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Pao",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-55e5-7040-9c79-f348b4db85c8",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Papaye",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dea-7119-8e1a-31c736377849",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Papilllon",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4ae6-7094-aac2-a69aa7e6391c",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Papillon Lucky",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6f34-73d6-b692-91ae7df1cb2a",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Papillon Serafina",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6185-725d-bb63-d9311f9b86ea",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Papillon de Nuit",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4897-70f8-afe3-7ab3a90e8b42",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Papillons",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-64ba-7039-872f-e559c939caa1",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Parachute de Palier",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6143-7019-b44d-d160015181ed",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Paradelplatz",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5dd8-7391-9feb-e7f5eee9cfeb",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Paradis sur Terre",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-77c2-720f-8e73-f4e52f29b3a8",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Paradise Fields",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-92bd-718b-97c4-bb08c8c19272",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Paramount Trail Convertible Pant",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7099-7145-9f05-a1774650f82c",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Parati",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6c7b-70d5-958e-84a8a18bed2d",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Parc",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8070-713a-8832-d7f5a8ff2d6b",
            "brand_id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Parfums",
            "brand": {
                "id": "019f426a-8068-7063-bfbd-093dac92f505",
                "wording": "Annayake",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-816e-7162-a285-1a8fbcbd1dbc",
            "brand_id": "019f426a-8167-711c-9789-8705d8b5fc78",
            "wording": "Parfums et Eaux de Toilette",
            "brand": {
                "id": "019f426a-8167-711c-9789-8705d8b5fc78",
                "wording": "L'Erbolario",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6d06-705e-967f-6ae0dffefabb",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Paris",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7768-70ac-a1e6-bf0577033a1e",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Paris",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7133-7171-a9cd-d5c0dc9ff69e",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Parkas",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-66d8-72f6-9567-3db3a159cc8b",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Parker",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7e89-7030-8860-20d3fd2b9a89",
            "brand_id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
            "wording": "Parkour_Runn",
            "brand": {
                "id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
                "wording": "HUGO BOSS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-65a8-7162-9a3d-1ad4c3ffd5bc",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Paros",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-777c-7150-957f-890049707283",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Party Time",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-709e-714b-94a3-94d4e1635548",
            "brand_id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
            "wording": "Parva Repono",
            "brand": {
                "id": "019f426a-708e-73a7-8dac-f8b0c9b4339e",
                "wording": "Paula Cademartori",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-72fd-720e-8590-4f9a50aff8a1",
            "brand_id": "019f426a-72fb-7219-909d-45d63631e250",
            "wording": "Pashli",
            "brand": {
                "id": "019f426a-72fb-7219-909d-45d63631e250",
                "wording": "3.1 Phillip Lim",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7b44-7255-901b-4891ebff35f3",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Pashmina",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8b0b-72e0-b7e1-8e1ed22b4c9d",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "Passionata Rossa 20",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-575d-7171-bf6d-3ae05a6f5101",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Pastille",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5682-7012-a73e-2de43dbd6367",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Pastille",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5639-7240-9ad3-7ba5c1beb643",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Pastille RIFT",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6928-716d-915c-19449c3a533b",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Patched",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4a3e-7332-9ea2-9e350dae916d",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Patchouli",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-67de-70a5-9363-3e023a003a6c",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Patchwork",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6aee-70ba-8c8c-8f4921f85a0e",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Patcwork",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-779e-7025-94fa-f1e8f4287a1c",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Patent Clutch",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-793d-72ec-b786-aef04e4812fa",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Patent Leather Knee-High Boots",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7afe-73bd-8bf8-ec66c4162ca2",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Patent Leather Pumps",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-748f-739f-8243-e398ea8809b9",
            "brand_id": "019f426a-7487-73c5-a937-82a7cfd87012",
            "wording": "Patineuses",
            "brand": {
                "id": "019f426a-7487-73c5-a937-82a7cfd87012",
                "wording": "BCBGeneration",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-55a5-7202-b444-50cd74e8f9e4",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Patricia",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6e84-72cd-b7d5-1e3a707cb965",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "Patrimoine",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6583-73f3-bf72-8240db06649d",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Patrimony",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-532e-7242-8546-b30c08bf528c",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Paule",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-537f-7309-b6b1-54f7c2fc4a23",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Paulette",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6ee2-7017-8f44-1e91b8840a3a",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Pauline",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5310-7101-9680-3ed42c30e0e5",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Pauline",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7d1b-72b2-9bd7-b732dfef50e6",
            "brand_id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "Pauline",
            "brand": {
                "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
                "wording": "Frances Valentine",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a49-73a1-a895-f61a5ea75f99",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Pauline Clutch",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5e5e-71c3-b939-6f39ae76a9ae",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Paves de Paris",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6c23-72d6-a609-270150980234",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Pavées",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7733-7116-92fc-222d839980cd",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Payton",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-771b-729d-aaa3-6e719e3e3e0f",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Payton Jogger",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6a95-7207-bd47-83be5ef97d67",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Peak",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-93fa-724d-90fa-7555e9cf1749",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Peak 45",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-77e3-73e0-b178-5d6f66e75576",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Peanuts",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6a2d-7355-bf2d-e6808155bfc4",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Pearls",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-818f-7175-a26e-a30da85cfbd7",
            "brand_id": "019f426a-8189-7363-93e6-15e1783a6be6",
            "wording": "Peau Sensible Anti-Rougeurs",
            "brand": {
                "id": "019f426a-8189-7363-93e6-15e1783a6be6",
                "wording": "Mixa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6f3e-7333-9455-7d184a4ddc2c",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Peche",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7087-70de-9964-45e56795cca1",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Pecheur",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9436-7183-a709-49400c403bcf",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Pedroc Hybrid Alpha Jacket",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6891-73cd-bc90-136bd22f9197",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Peekaboo",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8116-7319-a727-5fee89b8e98b",
            "brand_id": "019f426a-8113-7385-9a93-7939bb111740",
            "wording": "Peeling Eclat",
            "brand": {
                "id": "019f426a-8113-7385-9a93-7939bb111740",
                "wording": "Resultime",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-68f9-7117-b625-35605ff64941",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Peep",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-68e2-7332-8c22-efc1919fb19c",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Peg",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4b78-7131-93e4-72c181b16c15",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Pegase",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6566-7022-bace-776ab53db442",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Pelagos",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6572-71a1-a7d5-1956ecee358d",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Pelagos 39",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6575-715e-9429-b0059266f831",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Pelagos 58",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6573-7292-9202-4ca61c54c921",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "Pelagos LHD",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-76a6-708f-a6a4-bce28036af5f",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Pelotas",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7bb0-726e-b921-b1fd086c5c89",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Pendant Necklace",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5055-7030-bb8f-cee09b2e259b",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Pendentif Tunnel of Lover",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-55e3-70db-880f-c37e433c5c62",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Pensée",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5a38-7356-b3eb-7447b196ce3c",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Peony",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-52c5-7005-a15b-bce3adb9d4d8",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Pepper",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8dca-70ca-849f-527fdd16fe0a",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Perceuses",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8bc0-7266-b567-98c83f5dec61",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Perceuses sans fil",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-61f5-7243-a5d7-64873bb07ed1",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Perfect",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8515-7031-82e4-66e02f66ea22",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "Perfect Mix 9000 Gourmet HZ4071",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8516-72e7-a969-c7d034268c51",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "Perfect Mix 9000 Gourmet KB4031",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7ec6-734a-b7ff-531a2b0e8a6f",
            "brand_id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
            "wording": "Perfect Shirt",
            "brand": {
                "id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
                "wording": "J.Crew",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8440-7258-b658-f201e347c614",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "Perfect Steam Pro",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-86b3-73ab-a667-c570c6a0f7be",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "PerfectCare Elite GC9642/60",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-80f9-7116-8c8b-c59db9962bbb",
            "brand_id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "Perfection Ultime",
            "brand": {
                "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
                "wording": "Gatineau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7eac-7096-947b-e8729fc0a22e",
            "brand_id": "019f426a-7eab-7093-8dc6-3dc871422580",
            "wording": "Perfecto",
            "brand": {
                "id": "019f426a-7eab-7093-8dc6-3dc871422580",
                "wording": "Ikks",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cf2-73c8-a8ba-293f23241936",
            "brand_id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Perfecto",
            "brand": {
                "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
                "wording": "Faith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7faf-727c-a681-31fca290fc10",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Perform Lift",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cd1-7197-b8ae-a32b4c9bf0b5",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Performance",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9249-7305-afc4-68bb7a119fa9",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Performance",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-750a-7276-9f32-80cab6d6a4ca",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Performance Jacket",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7aac-714f-95f4-c04de7f38eda",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Performance Socks",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-781f-7356-9833-6775b69e48a6",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Performance Socks",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-955a-732f-8453-4f62cae7ec59",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Performance T-Shirt",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-73f8-732d-8fd8-ab850d429ec4",
            "brand_id": "019f426a-73f3-739a-b301-c48fdc613781",
            "wording": "Performer",
            "brand": {
                "id": "019f426a-73f3-739a-b301-c48fdc613781",
                "wording": "Ariat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-797e-72e8-875e-c1b878349761",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Perfume Oil",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-54ce-7304-b9a7-0e0d159f6c00",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Perla",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6d3d-7376-a9de-efd9aba68e28",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Perle",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-548c-7377-a7bc-0fb8d2d58110",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Perle",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6aa3-7396-b92f-a0ee23c18d08",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Perle en Métal",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-577d-73dc-83f4-f8833a54eaca",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Perles",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4d8d-72ea-9fee-44236ddd0ca7",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Perles",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4925-70c8-bc06-6f5c3bf6c462",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Perles",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-638f-733c-a7cf-0747e5dc4b8d",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Perles Impériales",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4878-7337-bf7d-a85a31b32ba7",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Perlée",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7e18-705c-a97a-61b8b779213d",
            "brand_id": "019f426a-7e0c-7332-84e4-d954cb74c752",
            "wording": "Perlyn",
            "brand": {
                "id": "019f426a-7e0c-7332-84e4-d954cb74c752",
                "wording": "Guess",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-489e-73d7-97ff-d8cf37c61d89",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Perlée",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4f8c-70bd-b656-49e87a6a41ee",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Perroquet",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6ad0-7094-b47c-300d0ee4cb87",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Perry",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f33-7171-a261-c22a56cf3a8d",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Perry Crystal",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f41-732c-be68-07b4a0a90b5e",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Perry Satin",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ce8-7348-baa2-e2392db1201c",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Personnel",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-65df-712a-83c2-066ece872c11",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Pesto",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5f04-70e7-9b1c-277a34f8c784",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Petit AMI",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-70e8-70e5-8aa2-6f53bf9e5daf",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Petit Ami",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6db2-71a3-bb94-06dae9626950",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Petit Claude",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6da0-70a3-a318-5dc9f548a468",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Petit Moyen",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6397-70b7-818a-c0bef7b41967",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Petite Fleur",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4e81-73a0-a0e1-ac820c5f8191",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Petite Madone",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4b86-72b0-a7fc-5cf90cda7482",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Petite Malle",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6461-7279-8198-1cdac529d318",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Petite Minute",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5555-7049-94e3-4327e10fd6bf",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Petite REINE",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-63a0-7128-a24d-038b804d3e51",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Petite Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-53ca-733e-82b2-cc89a3a98516",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Petronie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-76ab-70db-bf3e-2eac7375e03a",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Peu",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6863-726e-ae8f-39be40139889",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Peyton",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9473-71a2-97d1-ed68e889b4ca",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "PhD® Outdoor Light Crew Socks",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9475-7234-a151-b8bb9a549177",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "PhD® Ski Medium Socks",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9536-71e9-83f8-7e73a304afbb",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Phantastick 18",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-91a9-7348-983c-dbe4a756d706",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Phantom",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93da-7227-9dea-c28f392cbb0c",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Phase 20",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f05-73ca-a7d6-4044865e79a7",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Phase Eight",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-524f-723e-8b93-8051556d2e63",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Phila",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7730-704f-b937-170e34458595",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Philis",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6833-702a-a77e-f215cd99f94f",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Phoebe",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7a9a-727a-bcb1-bb46f880a528",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Phone Case",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c06-70ab-8481-52760bc88ed5",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Phone Cases",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d59-71fd-910b-f8e374f94db9",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Photo",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8016-72a8-8541-7dd8415a9efc",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Photo-Hydra Day",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f5e-726f-872e-c6229a74ac43",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Photoderm Max SPF50+",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7983-7166-95c5-7ee622270a63",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Photography Books",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4b05-7263-b848-37776c32bfa6",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Photophore Beebee",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7f4b-723c-889e-f06428cec410",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "PhysioLift",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80af-7379-87fa-9ee8bcf95ad7",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Phyt's Kids",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80ae-7116-bdb0-45fbbc62da1c",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Phyt's Men",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80b1-70c4-a7d1-aa53790446ec",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Phyt's Nutri",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80ac-7090-b613-032dead40356",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Phyt'solaire",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80a7-708f-9bff-a5bdc02d17e7",
            "brand_id": "019f426a-80a5-70f8-880c-24fc86673b9e",
            "wording": "Phyt'ssima",
            "brand": {
                "id": "019f426a-80a5-70f8-880c-24fc86673b9e",
                "wording": "Phyt's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8002-726e-b887-9ba664686a2e",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Phyto-Teint Expert",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-805e-719d-b043-5944d33a4ed8",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Phytolastil",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4f93-724d-a7c1-1bdac3be4c78",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Phénix",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-549c-70c3-a3b8-3d3b1363d7d9",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Pia",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-52c1-7269-bccc-8daef42dabdc",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Pia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7c40-7045-8542-37fdbd2e5bfa",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Piacentino",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6549-73db-85e4-d7bd613ab0d5",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Piccadilly",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-48f3-738a-ab7e-2b60af65491a",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Piccadilly",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7184-71a1-9be1-2d385f6a98af",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Piccola",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6c15-7253-96f9-b777a80817ff",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Piccolomini",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-76a1-735a-941f-3a11a92bbc3e",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Picture Frame",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6bdf-7033-bf1e-5fd9b1612971",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Pienza",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-659d-7337-b17a-f3d3c6f32c62",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Pierre",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5533-7349-b6be-8dbc48766c82",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Pierre de Rio",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6590-7132-b495-1318cd6bdda6",
            "brand_id": "019f426a-6589-721a-ac98-72c09b6dc291",
            "wording": "Pilot",
            "brand": {
                "id": "019f426a-6589-721a-ac98-72c09b6dc291",
                "wording": "Zenith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6748-717c-9db0-41f0e149eaa5",
            "brand_id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "Pilot's Watches",
            "brand": {
                "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
                "wording": "IWC Schaffhausen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6ff5-72cf-adad-a2d583648e84",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Pine Eau de Parfum",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8e1c-72d1-9977-cc627ce38bdc",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Pinguino PAC AN97",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e1e-724d-936e-3c324a91b572",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Pinguino PAC EL98",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e1f-71a7-8e77-198851963773",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Pinguino PAC N90",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-569d-7316-8ad9-c416ba1480e4",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Pink Flamingo",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-80cb-729d-be60-4bbe79e44b9e",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Pink Perfect Crème",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fba-70d9-8506-b2f6d38586c3",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Pionnière XMF",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7381-70fc-9a26-ddab9a2d944e",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Pippa",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7ed3-7391-bd83-c7ea30333555",
            "brand_id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Pique",
            "brand": {
                "id": "019f426a-7ecf-7389-8f01-6e4933499394",
                "wording": "Jack Wills",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7877-72b8-a9fa-5c632c9bd0dc",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Pisa",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6d04-73f3-8c6f-3986e98ab541",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Piscine",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c50-7047-970e-657bd2899b24",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Piscine",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-93f8-71c7-8a0c-a48fdc071683",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Piz Boè Pants",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93f4-739c-abaa-c010b78f69f8",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Piz Palü Jacket",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4e31-7303-80a8-22c3dd0cb71c",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Pièrre gemme",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-765f-7061-b53a-e2de0c8b3501",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Plaid Shirt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-84f7-7291-b11c-ff2068ec18c6",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Plancha Malaga CB501812",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8879-7101-a60f-1436c49442f2",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Plane",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8863-70ef-b91d-731cccdd0406",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Plane ISOLA",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-637b-72cb-85b6-5b2797f18e9c",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Plasencia",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5e68-72c8-8457-3aeadaff0274",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Plastron Pluton",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-703b-721c-becf-79acf35789ca",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Plateau de Voiture Petit",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6c49-7362-9bfa-c86b12064c25",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Plates",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7adb-7306-b6cf-5b5334022047",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Platform Sneakers",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7906-7228-ac83-3219b43ef716",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Platform Wedges",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5f3f-7326-9e89-421de93c92ba",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Platine Egoiste",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8104-732c-854c-55f61404aa7c",
            "brand_id": "019f426a-80fe-70ac-8078-326a880c7810",
            "wording": "Platinum Rare",
            "brand": {
                "id": "019f426a-80fe-70ac-8078-326a880c7810",
                "wording": "La Prairie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-79ef-714c-a57a-4e53b5ba6142",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Play Converse Chuck Taylor Sneakers",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79dc-73b1-b1b3-853bf5b91bb5",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Play Heart Patch Wool Cardigan",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79f2-70d4-b1a2-2c62f51f4d3c",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Play Logo-Embroidered Beanie",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79ea-7115-9eb8-90b67d9936d2",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Play Pouch",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79df-7212-a69c-8dbd30113647",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Play Striped Shirt",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7520-7061-8e4a-9966c9055bf0",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Playsuit",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74ee-70e1-ac17-e51b5e12be2a",
            "brand_id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Playtime",
            "brand": {
                "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
                "wording": "Berluti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-79e5-72e6-8d25-cd4d4352318c",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Pleated Dress",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-791c-7171-b057-22b1f9217362",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Pleated Skirt",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74e7-73cb-b7bb-10085aa94f18",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Pleated Skirt",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6abb-71dc-9907-19ffd161ca32",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Pliage Energy",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6aba-71c4-ae07-29e2fcdd7a53",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Pliage Xtra",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7da0-72df-a54a-19e4becc96dd",
            "brand_id": "019f426a-7d9b-7030-be73-eea547009397",
            "wording": "Plissée",
            "brand": {
                "id": "019f426a-7d9b-7030-be73-eea547009397",
                "wording": "Giambattista Valli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7342-72dc-81eb-366d9263591b",
            "brand_id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Plissée",
            "brand": {
                "id": "019f426a-7337-711a-958e-920485f14fc0",
                "wording": "Alberta Ferretti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6d40-7304-8eee-d718457061e9",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Plissée",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-70d9-71ff-8707-9e7b0ac5d1d8",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Pluie Régulier",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7c67-7120-82c9-72c2cd309794",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Plume",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5efa-7289-8d8a-91c0a34978c9",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Plume",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-546a-70ec-929b-ae88c8eb3653",
            "brand_id": "019f426a-5468-73c3-9c65-21414ac58842",
            "wording": "Plume Vieilli",
            "brand": {
                "id": "019f426a-5468-73c3-9c65-21414ac58842",
                "wording": "Nils Avril",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-485e-73b0-8a12-3526557d1cc5",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Plume de Paon",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6393-70b3-a22e-40fb8023b889",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Plumes",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9159-719d-97c2-2e829017ee59",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Plus",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-79e4-700e-8f97-2717d8e8d4b1",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Plus Asymmetric Dress",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79e1-708a-8333-141414df0e17",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Plus Floral Print Shirt",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79ed-70c7-b08c-88f4622f96d9",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Plus Leather Derbies",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79db-72c4-903e-91aeb7e12dd9",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Plus Wool Blazer",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79f3-717d-9f83-9cc395e91f3b",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Plus Wool Fedora Hat",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5026-729b-8967-1c034ca299dc",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Pm",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6dc5-7187-9646-0365e260d482",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Poche",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fce-72b3-82e3-da1dadc25142",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Pochette",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6bf4-73e3-9b83-3e777403c9ae",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Pochette",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4b89-7133-878f-899c4956c461",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Pochette Accessoires",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7041-727c-828d-bda8684436a2",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Pochette Bracelet",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4b6c-7345-9b31-080c346c6a8d",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Pochette Métis",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-703f-71b5-bd32-89043eda8abb",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Pochette à Chaine",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f8b-7174-a12c-ab6c64752544",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Pochettes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4a59-7147-a7da-11bbfe12d2e3",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Pochettes Brodées",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7722-7308-abdf-75f01c25c762",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Pocket",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-68e9-7257-bf49-83fdebd82237",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Pocket",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6f63-7343-926e-1af8d19fc556",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Pocket XS",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-714b-72f6-8927-d2b784b7d972",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Podium BBR",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4880-720e-b658-da08790a5fff",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Poetic Complications",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7965-7276-b4db-adb04a684b33",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Pointed Toe Pumps",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78fe-73b8-a698-a4ce4af5c472",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Pointed Toe Slingbacks",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5e61-70fa-8357-3804831e1b9e",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Pointilliste",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-490f-7285-9396-d314fee2f2ff",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Poiray x Le Bon Marché",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-490d-727a-bb0a-31f0198ba5b4",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Poiray x Whitebird",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5e69-720e-8fde-4a9e69868fba",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Pois Cosse",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6405-734e-a54e-0eb46eadff9b",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Poker",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-94f7-71f2-8e8f-860e2484edb4",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Pokey Pine Boots",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6754-736a-9808-7cc4dfa54596",
            "brand_id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Polaris",
            "brand": {
                "id": "019f426a-674d-7327-869f-6e3c527d4081",
                "wording": "Jaeger-LeCoultre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6471-7384-b0f4-e214b9f102a0",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Polarskin",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-533d-730c-8b42-bd04793e3131",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Polina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9070-7347-8fd8-c5785a398123",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Polo",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-69a0-72a8-a26e-65c3780fc5b5",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Polo",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9090-70e4-8337-26d92c79005c",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Polo",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-912b-70c3-a2d3-53efadb6cf50",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Polyestere",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5449-73e2-a481-ce61a6cc54b4",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Polynésie",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-713f-704e-9d7f-5d8274b64417",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Polyvalente",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-789a-71fa-a573-287bbfb639b7",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Pompeii",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d02-71d8-89f0-4e2dbd2c6226",
            "brand_id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Pompon",
            "brand": {
                "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
                "wording": "Figue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8bc5-71f7-bd5e-0a369239fd70",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Ponceuses",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-64b6-737a-9718-20dfe5926c9b",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Poncho",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6e4e-73f1-9d23-6678820d5866",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Pop Quiz",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7d5c-7223-a674-63ad78b2bdc9",
            "brand_id": "019f426a-7d57-72de-af49-4d75505d68e9",
            "wording": "Popeline de coton",
            "brand": {
                "id": "019f426a-7d57-72de-af49-4d75505d68e9",
                "wording": "Ganni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-78ce-715b-9017-0892f942a91c",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Poppy",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6883-7261-a767-9c37867e70bb",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Poppy Toss",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-858c-714c-9afd-f58818d0e430",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Portable Air Conditioner",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7988-7037-91f4-3e91f8214497",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Portable Chargers",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-88e1-7060-8e6d-d1edb0f7a76f",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "Portable Gas Grills",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88dc-732e-9cfe-11622714d28d",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "Portable Toilet Series",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6969-70fb-8f40-3a7ecda31b2c",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Porte Epaule",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4a83-7111-8624-b409d6e0200d",
            "brand_id": "019f426a-4a68-70d7-bdd7-79280a57551c",
            "wording": "Porte-Clés",
            "brand": {
                "id": "019f426a-4a68-70d7-bdd7-79280a57551c",
                "wording": "Les Néréides",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4a5c-7144-831f-528574b83078",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Porte-Clés avec Pompons",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6f90-70b2-84ff-4b481ff34ebf",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Porte-cartes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5db0-72cf-a79e-0cd5be58ab36",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Porte-chance",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d89-71b5-a0dc-713764566919",
            "brand_id": "019f426a-7d81-701b-9410-4b6b46fa8540",
            "wording": "Portefeuille",
            "brand": {
                "id": "019f426a-7d81-701b-9410-4b6b46fa8540",
                "wording": "Gerard Darel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6f8d-70d5-a26d-3eb1f86bdd9b",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Portefeuilles",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f6f-727c-8fd0-b95566aaedce",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Portfolio",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6744-7153-bae0-506e2ea36d22",
            "brand_id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "Portofino",
            "brand": {
                "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
                "wording": "IWC Schaffhausen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b07-7257-a25b-e5a53708e30d",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Portofino Sneakers",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-674b-7188-bc7a-35cb016a8dc8",
            "brand_id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
            "wording": "Portugieser",
            "brand": {
                "id": "019f426a-673c-7371-a7fc-cffd9624f1f7",
                "wording": "IWC Schaffhausen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6b15-72f4-868c-6d5e608829c1",
            "brand_id": "019f426a-6b11-7019-bbec-da98c9ee1478",
            "wording": "Porté Marcie",
            "brand": {
                "id": "019f426a-6b11-7019-bbec-da98c9ee1478",
                "wording": "Chloe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-72e0-7286-b63f-6bdc583a913a",
            "brand_id": "019f426a-72de-70eb-94bb-a97b3bf8af8f",
            "wording": "Postina",
            "brand": {
                "id": "019f426a-72de-70eb-94bb-a97b3bf8af8f",
                "wording": "Zanellato",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7eb6-71f5-ad54-507c358431cc",
            "brand_id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
            "wording": "Postina",
            "brand": {
                "id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
                "wording": "Il Bisonte",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6db7-7255-8da3-ff2cff1dff70",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Pot de Miel",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7b7a-70eb-8c20-17f0b4608f89",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Potion",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6bbd-723c-9a6f-162d72d4a7ed",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Pouch",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-80d0-716a-a589-de870209b34c",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Poudres Libres",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-88ca-721b-b852-f08e4696a165",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Pour Over Coffee Brewer",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6e59-73ff-97f9-865feae87645",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Pourvoirie",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-900b-7275-98c8-c78f40f9b554",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Pow",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-79d1-7325-85af-3930522baaf6",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Powder Keg II Down Jacket",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8913-70ad-9834-17b8d12bc2a5",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Power",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-951e-702f-a51e-24ad485a1e26",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Power Lizard SUL 1-2P Footprint",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8b48-71ec-a1ad-0cf4edab3252",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Power Nano",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-75d6-73a0-a3f1-6a9b6684276e",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Power Player",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8cc0-7011-abb3-3213ef582c72",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Power Unit P1500",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cc2-72f6-b68c-18b2d4a5a271",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Power Unit P2200",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8cbf-73b9-bccc-278f5c6b4749",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Power Unit P500",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-948d-73aa-a8b5-dbe62ecd84c3",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "PowerFlex Eco",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ce3-7212-899c-35b5638b1ad2",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "PowerHold",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77f2-713f-8f83-ea8adcc05ff1",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Powerblend",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-85b7-7262-af1e-78757fa3ec90",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Powerbot Robot Vacuum",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-649f-7250-91fc-7cc8a889fd59",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Powerjet réglable",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8f2a-7224-83f4-9f31c36c25e3",
            "brand_id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
            "wording": "Powerskin Carbon Air²",
            "brand": {
                "id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
                "wording": "Arena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f28-70b4-91a1-44037fdd8524",
            "brand_id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
            "wording": "Powerskin Carbon Flex VX",
            "brand": {
                "id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
                "wording": "Arena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-89c7-71fd-84bc-095874d9061c",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Poêle à Frire 24cm",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-70ca-73c5-a232-4ed6ba220e2f",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Praka String w",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70c8-71dd-8323-698f735fb3fc",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Praka à Queue de Poisson",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-93d5-7020-a153-d1989e1581ae",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "PreCip Eco Jacket",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88cd-7187-8356-c0975bd461bb",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Precision Press Coffee Maker",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-918c-71a1-9a66-363c26f90574",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Predator",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5a32-70ac-8827-21c1f302b909",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Prema",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7f89-70d6-9452-f81dace60dd4",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Premier Cru The Cream",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8914-7066-968f-4e09af1ca713",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Premium",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-805b-7218-bd3a-f960814181be",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Premium",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5f02-7221-b3c8-35b5c47b9a9a",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Première",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6673-7320-a95b-6f6ce07ac165",
            "brand_id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Presage",
            "brand": {
                "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
                "wording": "Seiko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6515-718c-96fd-d8d942ea1cec",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Prestige HMS",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-651a-716c-9cc4-9214f5f35b08",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Prestige RG",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-55a1-737d-83e7-cc5650f9f0cb",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Princesse",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-84dd-70b7-b308-d84046423485",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Principio",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8500-71ca-a3ce-723735ef5824",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Principio FG273811",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-78f5-7035-940e-1fd3126cae99",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Printed Modal Scarf",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b9b-7181-b19d-06b425e0fe40",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Printed Scarf",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b41-710c-8222-7cdf67891865",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Printed Scarf",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78dd-71eb-b08b-cd44ccac73ee",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Printed Silk Gown",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7912-726c-b5fe-d89eb72e2625",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Printed Silk Gown",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7926-7039-b924-9d990a0547f2",
            "brand_id": "019f426a-790e-70a4-94d5-976fd813cd7d",
            "wording": "Printed Silk Scarf",
            "brand": {
                "id": "019f426a-790e-70a4-94d5-976fd813cd7d",
                "wording": "Christopher Kane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b94-7269-ae28-ca464d4227bc",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Printed Tunic",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6e86-72a1-8a22-a0c562bd26d4",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "Printemps",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-712b-7292-bba6-4c77f8d2cbea",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Printemps Eté 2019",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7126-729e-8339-f11b6300c388",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Printemps Eté 2020",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7123-7132-872c-0b85419d98d3",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Printemps Eté 2021",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7120-7297-9d27-e27389b01450",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Printemps Eté 2022",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-711d-73f9-aaf2-cca3ed67d6c9",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Printemps Eté 2023",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-711a-71ec-9903-6857327fe343",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Printemps Eté 2024",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a45-73cf-8f97-5e73fee2ed94",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Priscilla Shoulder Bag",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-93f1-7256-8552-b0dcfea75f46",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Prism Gloves",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93ec-708b-98cc-9b54f85adff7",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Prism Ultra 1P Tent",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-609e-735e-9e1d-596150248f0a",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Prismic",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6fe4-70c3-8c7b-9eb9f1ec9ffe",
            "brand_id": "019f426a-6fd7-7343-aa43-93e749c237d8",
            "wording": "Pristine",
            "brand": {
                "id": "019f426a-6fd7-7343-aa43-93e749c237d8",
                "wording": "Manu Atelier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7cde-7204-9511-826ae7ed7c47",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "Pro",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-915c-7395-976a-a7420e58885b",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Pro",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9151-71df-9980-c488722e42cb",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Pro",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93ad-71c1-a324-01c9afa55661",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Pro 770",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88f8-7318-b0ea-0ccfa1b51dda",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Crystal Clean",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-954f-73d5-ae2e-ba63ee20c57d",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Pro Equipment Bag",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-939b-72ba-ba42-21a63e89fdf3",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "Pro Grip",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88ef-7178-aa95-021e6c4ceeed",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Kolumbo",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88c7-7348-9475-30d5bdcb0100",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Pro Line Series Blender",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88d2-73fc-bbb0-e46be04d002a",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Pro Line Series Electric Kettle",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88bd-71d6-979f-fa60b149873c",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Pro Line Series Stand Mixer",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-956d-7074-9bb2-0b125dba46ce",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Pro Overgrip",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-88f1-719d-b6a4-545e13d705b1",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Rider",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-954d-7394-a480-f1a8813935a1",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Pro Skates",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-88eb-711b-9028-c2eb80ec7a3a",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Sprinter",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-955f-7116-87ce-df19f45fc0d6",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Pro Staff RF97 Autograph",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6684-721f-a19e-110517378136",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Pro Trek",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-88ec-7179-9527-06ff4563684e",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Trenta X",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88f6-716c-97eb-c24baa7fb47c",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Vac 10",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88f4-7029-bc56-38e49b889583",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Vac 20",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88ee-7114-ba12-4749b5eb46be",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Windy",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88f3-715e-804e-5111f9cb5d87",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Pro Windy 120 IF",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8cbc-7203-97fb-87a665efbc6b",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Pro'line",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8fb3-73dd-9e37-0e807629ce80",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "ProRecup Elite",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fc2-71a0-b512-d0fb2932e637",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "ProRecup Elite EVO",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-816f-721b-a11b-b30c9be12db6",
            "brand_id": "019f426a-8167-711c-9789-8705d8b5fc78",
            "wording": "Produits de Maquillage",
            "brand": {
                "id": "019f426a-8167-711c-9789-8705d8b5fc78",
                "wording": "L'Erbolario",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6706-72d9-83e4-9b61504b6460",
            "brand_id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Professional",
            "brand": {
                "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
                "wording": "Breitling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8076-72be-b932-9909c40b29c7",
            "brand_id": "019f426a-8073-7296-853c-2f5a581514c9",
            "wording": "Progressif Anti-Âge Global",
            "brand": {
                "id": "019f426a-8073-7296-853c-2f5a581514c9",
                "wording": "Carita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-91bd-707a-9300-56c765e7d576",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Project Rock",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-669c-7104-bea5-10af0d9221a2",
            "brand_id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Promaster",
            "brand": {
                "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
                "wording": "Citizen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-90fe-703a-9314-5fb390e854c6",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Prophet",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8f41-73cd-a3ed-0d149425a081",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Propulse Fury",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94af-73b1-aaae-80e61e12f8b3",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Propulsion GTX Pants",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6f3c-727f-b4eb-cae0fd680f18",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Prosecco",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6676-70d8-b7b5-c24f787a81b6",
            "brand_id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Prospex",
            "brand": {
                "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
                "wording": "Seiko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-666b-7154-9fc3-a981c35cf76e",
            "brand_id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Prospex LX",
            "brand": {
                "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
                "wording": "Seiko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4f0d-703a-8ff4-dcd586a76f90",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Proteccion",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-812e-73ad-9bd2-427ff277536d",
            "brand_id": "019f426a-8125-7158-91db-f5e5d523d7b7",
            "wording": "Protect",
            "brand": {
                "id": "019f426a-8125-7158-91db-f5e5d523d7b7",
                "wording": "Topicrem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8110-7271-8ac7-97c3e972f594",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Protection Solaire",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-909d-703e-b05f-ab1c0255a0b9",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Protéines en Poudre",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-77b6-708f-9021-800b1e415e45",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Provence Rose",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-808e-73d6-9af7-34446651ade0",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Pschitt Magique",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9439-72d0-bb72-5475caa07aa6",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Puez 2 Durastretch Pants",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7811-71c0-a843-5746f6b26ff8",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Puffer Coat",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74e2-7377-b588-6cbee9941800",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Puffer Jacket",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9124-73f0-9aa3-bce1915f009b",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Puffer Jacket",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-74d1-7191-a4b4-95c5f2569d82",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Puffer Jacket",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bc2-71f8-a1cb-52bb474aae2d",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Puffer Jacket",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-72d8-7056-b1bb-9d58745ae035",
            "brand_id": "019f426a-72d6-71f8-b00a-12873bdb434e",
            "wording": "Puffy",
            "brand": {
                "id": "019f426a-72d6-71f8-b00a-12873bdb434e",
                "wording": "Zagliani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-719a-7112-9390-70b2a1fc64f0",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Pull Ash",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-94a1-737b-919f-0e1db0b7f2e6",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Pull Buoy",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9351-71fe-90a0-8c683858e976",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Pull Manches Longues DNA Hommes",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-730d-714e-bcb1-05ed10ad14cc",
            "brand_id": "019f426a-7306-7061-8a56-57026329a932",
            "wording": "Pull à col roulé",
            "brand": {
                "id": "019f426a-7306-7061-8a56-57026329a932",
                "wording": "8 by YOOX",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-700f-7144-9a63-2d58ce7a79a3",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Pull à col roulé",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fa0-7393-89df-545d998937ad",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Pulls",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4c9b-7054-92fb-275c99a11f45",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Pulls en tricot oversize",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-651d-7253-bc93-d13252aa4f65",
            "brand_id": "019f426a-650f-70ce-a87c-4b7fae559de2",
            "wording": "Pulse Dialis",
            "brand": {
                "id": "019f426a-650f-70ce-a87c-4b7fae559de2",
                "wording": "Romain Gauthier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-48de-7357-95db-049982711b76",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Pulse Dinh Van",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-707d-73a2-a0b9-74f1ca7285bf",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Pulvérisé",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6bcb-72d1-b64b-1a3276220dc7",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Punta AlA S496/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4bb2-7351-8db7-65201db484e4",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Pur Ambre",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4bb6-73f0-80d1-eda95cca5319",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Pur Santal",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-943d-73f0-8c57-b9c4e0d36b88",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Pura Helmet",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6e5b-73c5-904b-db7c79c86ab3",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Purcell",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5512-7170-a768-18bf715f20a2",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Pure",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7ade-73f7-bcec-6ea9fe5dda59",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Pure",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f36-7299-81aa-10babb0f6d06",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Pure Aero",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f48-70ed-ad93-88a6fd58c3ff",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Pure Aero Backpack",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-86ee-7321-a83c-05b6ae7701b0",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Cool Link",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86d6-72c6-a065-c35a70f9518c",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Cool Link Tower",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86df-723e-b2d2-5a7b08560b3e",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Cool Me BP01",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86db-722a-a870-666df95147a4",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Cool TP04",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f34-7243-a168-bada766fcec1",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Pure Drive",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f4a-7077-b483-0960836fb22e",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Pure Drive Racket Holder",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-86ed-73e6-af39-635e3e49cdab",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Hot+Cool",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86dd-71a5-b894-8ae8b22df329",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Hot+Cool HP04",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86d4-703f-9b43-5a6dea748ba8",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Pure Hot+Cool Link",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7159-7085-8658-8d0c9bebc0f5",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Pure Pro Heat",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8f38-7351-b4c9-6661a994fcf9",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Pure Strike",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-80ed-7380-8d9d-5aee7f244859",
            "brand_id": "019f426a-80e7-7070-822b-75c13f312f2b",
            "wording": "Pure System",
            "brand": {
                "id": "019f426a-80e7-7070-822b-75c13f312f2b",
                "wording": "Esthederm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-54ed-7320-ac3f-4a1ae6f31040",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Pure Torsadée",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8cba-71dc-a583-e8fae8ea25b6",
            "brand_id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
            "wording": "Pure'line",
            "brand": {
                "id": "019f426a-8cb4-71b7-ae67-e75ba49d3ef9",
                "wording": "Novy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-918a-72ef-b6b7-acfe209a1ec2",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Pureboost",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8158-7118-be5f-d0a65ab4f904",
            "brand_id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
            "wording": "Pureté",
            "brand": {
                "id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
                "wording": "Yon-Ka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-827c-728e-896e-5cc71cd993d0",
            "brand_id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Pureté Balinaise",
            "brand": {
                "id": "019f426a-827a-734d-be46-40c77ace37a5",
                "wording": "Pura Bali",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8019-728a-95c0-895f23ec96f6",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Pureté Marine",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8160-7074-a919-adc93d496b53",
            "brand_id": "019f426a-815b-711a-b5ad-0909f1c1a547",
            "wording": "Pureté Sublime",
            "brand": {
                "id": "019f426a-815b-711a-b5ad-0909f1c1a547",
                "wording": "Galenic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8228-7385-8254-4ac4e218a07a",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Pureté de Lotus",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8237-738a-a559-27179bf199d6",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Purifiant",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82be-72fa-a208-29ce0cbc0d3a",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Purifiant Andin",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-809e-71b4-a123-eba6f3b02db7",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Purifying",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-782e-70bb-a12a-1edf52947b82",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Purrrfect",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-908a-7074-b92e-6b4e8fe674b1",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Putters",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6c33-735b-b00f-ce70041e6791",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Puzzle",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7b4c-731e-aa85-4766d5cfd4ba",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Pyjama Bottoms",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b48-704b-9f04-26235f3a4f87",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Pyjama Set",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9380-7280-9771-e6b2455f6c02",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Pytho",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-57f7-73d7-9f7c-05e7d08ad380",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Python",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-72db-7355-b3cc-1e0f6a6619f2",
            "brand_id": "019f426a-72d6-71f8-b00a-12873bdb434e",
            "wording": "Python",
            "brand": {
                "id": "019f426a-72d6-71f8-b00a-12873bdb434e",
                "wording": "Zagliani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7fa9-7201-ba9b-11b434100c64",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Pâte Grise",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5582-716b-bf39-e4ae72fd209e",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Pénélope",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5e5f-7065-ac43-61ffc4161e49",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Pétales",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8d97-7364-9439-ba9090b03136",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Q",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-66aa-7090-a3cc-c8afb13afe97",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Q",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-84be-723c-ba7e-94f0958300b8",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "QA511D10 Masterchef Gourmet",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6298-729f-8a35-08a884495696",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "QATAR 001",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8a7b-73a7-8856-a9b6ec25b815",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "QD658A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a78-7277-94ca-6c33db487e07",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "QD867A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a7e-728c-af6b-8f94374e91ca",
            "brand_id": "019f426a-8a71-7383-a0bd-a74e32062954",
            "wording": "QD870A",
            "brand": {
                "id": "019f426a-8a71-7383-a0bd-a74e32062954",
                "wording": "Riviera & Bar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8639-7145-8f45-974706e99b9c",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "QHM18DX",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-859d-7262-8449-7a067b91ed6c",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "QLED QN90A",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f04-7016-923a-85334f8e77bb",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "QST",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6384-7288-a9e0-bc76b747bd40",
            "brand_id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
            "wording": "QUAI DES BERGUES",
            "brand": {
                "id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
                "wording": "Czapek & Cie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6d88-7383-8b77-08dc0595ff97",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "QUEENIE",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6dda-71c2-b53c-111e2acb84a9",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "QUOTIDIEN",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-91cf-71d3-8964-e895699d2444",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Qualifier",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8ed9-717b-914d-bb84f94ad35f",
            "brand_id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
            "wording": "Qualità Oro",
            "brand": {
                "id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
                "wording": "Lavazza",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8edf-72e1-be19-0131bf3f3799",
            "brand_id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
            "wording": "Qualità Rossa",
            "brand": {
                "id": "019f426a-8ed8-73c0-82a7-419ceb7479bc",
                "wording": "Lavazza",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9422-72e9-a9fd-dae66b7942b5",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Quandary Pants",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92e0-7005-9739-3ba13d732038",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "Quantum",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-62d9-7331-8e14-ee00e16697dc",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Quarta",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8874-7382-b617-e11692457bf1",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Quasar",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4854-71f8-b494-3b9c3beb8003",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Quatre",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4862-727d-b6d5-0b503d84b177",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Quatre En Rose",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5557-7234-a3fe-b9beeb641aed",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Queen",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-684c-7185-84a0-d3e28e424d78",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Queen Of The Court Tennis",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8f00-705b-9892-8a76d35455ad",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Quest",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-91ea-710c-b338-7bd1713aee47",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Question Mid",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-84d8-7100-8c0e-89a49917f5e6",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Quickchef",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8ef0-730c-ac14-146bb14f5d9a",
            "brand_id": "019f426a-8eed-7332-983d-520b0da44271",
            "wording": "Quickhiker",
            "brand": {
                "id": "019f426a-8eed-7332-983d-520b0da44271",
                "wording": "Quechua",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7edb-71a2-823f-bbaa40075803",
            "brand_id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Quilted",
            "brand": {
                "id": "019f426a-7ecf-7389-8f01-6e4933499394",
                "wording": "Jack Wills",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7b85-7030-858d-9eee489f4aa4",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Quilted Coat",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-74c3-722d-a638-b2216a66581e",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Quilted Jacket",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-78ed-7033-b1d3-535444a17c3d",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Quilted Leather Shoulder Bag",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a8c-7327-be70-cba8e73ea60b",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Quilted Pouch",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7463-707b-a7f8-3445e30af779",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Quotidien",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5dc8-71ec-bb5e-50c381d095c3",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Quotidien",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8719-723e-99c6-41b70e1300b7",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "R-S700P2M",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7164-726d-ba94-9dfe2656b843",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "R-Skin Sport",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8fb6-73a2-9677-ca3a7d6f8dd9",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "R-Tech",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-871d-7093-933d-596fc8b582ae",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "R-WB480P2M",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-871b-7329-9bb6-c5c0ecdff114",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "R-WB550P2MS",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9421-72bc-9232-74a3b7656cd8",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "R1 Pant",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-942e-71c0-ae21-cc12823004d6",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "R1 TechFace Hoody",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8fe2-7103-9e8c-5ac11eca9021",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "R100",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6435-71a4-a5b2-5b4f60a5f157",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "R12-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-868a-71f2-a405-ebe32e018367",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "R204S",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8685-72b4-84c6-ec9b14fd9917",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "R360SLM",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6436-7121-a763-50eb2c521b3b",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "R46-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-624c-72f4-8bfd-7ac9389c0206",
            "brand_id": "019f426a-6245-70b2-b71a-f270c02cbec9",
            "wording": "R50",
            "brand": {
                "id": "019f426a-6245-70b2-b71a-f270c02cbec9",
                "wording": "BRM Chronographes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6438-71ee-b7ac-2ea0cef5c5bf",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "R50-50MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8fe0-70ef-b7c4-364e3412efa1",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "R500",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fe4-711e-badd-84b376c90bdb",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "R500 Shorts",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6433-7135-aa0b-8dae437b0543",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "R6-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9325-715b-a964-c45c67211af3",
            "brand_id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
            "wording": "R7 GORE-TEX Shakedry Trail",
            "brand": {
                "id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
                "wording": "Gore Wear",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9328-71c6-b844-d3a19b7d34fc",
            "brand_id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
            "wording": "R7 Sport Shorts",
            "brand": {
                "id": "019f426a-931f-7119-8da2-0b2db3cc10e1",
                "wording": "Gore Wear",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-868d-70c9-ba6f-b81cc46aab4b",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "R860SLM",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8726-7115-836d-9138645f5f27",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "RAC-20CW",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8727-7149-bd62-667149c05abd",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "RAC-35YHA",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5d9b-73b0-841e-8d62563a4944",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "RAF SIMONS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6568-7000-8947-b276f2d2ab7b",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "RANGER",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8724-73d1-8ecb-9fd8372f35d5",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "RAS-10KH",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-59dd-7126-b115-bca8404022a5",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "RAY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-87bc-72a0-be30-24f7a3a08ab3",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "RB403N4EC2",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-847b-724a-a11e-09128456147a",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "RCB63826OX",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8e49-72c9-b486-115a021e2c60",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "RCR-4202USR",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5fb0-73ed-9e2a-9844c8716eb0",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "RCSA",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8608-7183-ba9b-6cfbd4cca6dc",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "RCSA330K30DW",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8618-73e9-b01e-907bf953a832",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "RCSA365K20W",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87be-73bc-bfa6-5e818580a3a3",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "RD-73WR4SA",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-58e8-7180-8294-4a57c9dd0e67",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "REED",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6ed5-7183-8341-168555ee7205",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "RELIEF",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-76c3-71ea-8924-2ca2fd47a4bf",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "RES",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-63e6-72a7-a9ec-a0f985a1135b",
            "brand_id": "019f426a-63e5-72ff-b091-5a04d2b69cd6",
            "wording": "REXHEP REXHEPI",
            "brand": {
                "id": "019f426a-63e5-72ff-b091-5a04d2b69cd6",
                "wording": "AkriviA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8627-7363-a8a1-7752c11b34fb",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "RF-628AN6",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d43-72c3-b33a-c8e0155f7009",
            "brand_id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
            "wording": "RFCU400MW",
            "brand": {
                "id": "019f426a-8d40-70e7-8d64-0c76ad6292c2",
                "wording": "Listo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b5e-738a-9598-d49b797937a7",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "RFSE200T20S",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8808-705c-9981-35948052362e",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RFU5172FWH",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-880a-7089-a683-b7b634896e68",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RFU5172IX",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-880c-714b-83af-ac2ac7187d03",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RFU5172IXL",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6439-727c-b87a-1e9033b55bbb",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "RG-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5dce-73e4-a880-6237f96ae0a4",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "RHODON",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d2a-7252-b947-8da8b3492064",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "RICK OWENS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5958-7019-98da-8d02e933d5ec",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "RILEY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-55c4-7346-a36a-3bfb637df0ad",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "RIMA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5336-73f0-82b6-1277305cde37",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "RIO",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5537-7076-97e0-c98a20b319ac",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "RIO",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-553e-71f0-a2fc-9bfe70672ea7",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "RIO Bordeaux",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6e70-705c-8591-47394ab02fb7",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "RIPSTOP",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e10-7056-a690-461fc550e265",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "RIRI",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b01-70a5-a0ec-1a5909a8156d",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "RL 888",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-64d9-7101-bae0-092cf2eb73df",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM  UP-01 Ferrari",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64fe-7143-a72d-ab720490fadd",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 025",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64fb-712c-88d4-4b34e0c0e604",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 028",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f8-7270-bbaf-64b657bed203",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 032",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6505-7208-b4e8-07d998539530",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 07-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6504-73a7-8aa9-53665a416fe0",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 07-04",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6502-7159-a061-25a059ab1a96",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 11-04",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6501-7201-9cc2-b62559a17871",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 17-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64ff-73ef-a6af-1ba332a4ea87",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 21-02",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64fc-71a9-a65c-9d28a5d278f6",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 27-04",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f9-7108-ab79-be53d9e7ef5f",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 30-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f7-7116-99d8-55e7c0eb5d86",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 35-03",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f5-72be-ac04-304148e62516",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 37",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f3-72d8-98d4-3e8102f2ea06",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 38-02",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f1-710d-931e-e7b715ce555e",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 40-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64f0-7341-9df2-335d76d0de97",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 47",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64ee-711f-a835-18935e1d713f",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 52-05",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64eb-72e0-aa31-7368434b420c",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 60-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64e9-7170-aa09-ad5f59089d27",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 62-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64e7-708c-92ba-ea66ac8caf99",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 63-02",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64e4-72ea-b96f-ce778d326a29",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 65-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64e2-7187-91c0-2879e62de051",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 66",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64e1-7098-bdc8-f2c834f0b912",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 67-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64df-71f2-b1fb-803c2fb4aa1f",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 67-02",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64de-72ac-817a-2dc8d61344a6",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 72-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64dc-72d0-bcd6-da6e5d6a858e",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 74-01",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64db-72e6-a6b2-247cb60e4534",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 74-02",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64d7-7143-9720-763d9c8272bb",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM 88",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64ed-72ec-abb5-f6a3e884537d",
            "brand_id": "019f426a-64d5-73c1-9095-f74d314f6287",
            "wording": "RM S05",
            "brand": {
                "id": "019f426a-64d5-73c1-9095-f74d314f6287",
                "wording": "Richard Mille",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8e88-7053-b607-718031980aa6",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "RO380",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-59b4-739c-b121-24f21052e9c8",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "ROBBY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59e8-73c8-a5f1-591ba84ae251",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "RODNEY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-556d-70f2-9460-a6578562f148",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "ROSA",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-556a-731e-b488-28ef2e044f83",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "ROSE",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6aac-72e4-919a-81bc945e7218",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "ROSEAU",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6570-7372-ac42-d8a49678b211",
            "brand_id": "019f426a-6563-7337-a322-19ff214866a0",
            "wording": "ROYAL",
            "brand": {
                "id": "019f426a-6563-7337-a322-19ff214866a0",
                "wording": "Tudor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-881a-7300-8bd4-6cd49edfd2bd",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RPA1477IX",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8818-72d2-b9c7-8d1495587b88",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RPA1477S",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8816-70e2-8e5f-0d666a73d5a9",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RPA1477W",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f39-732d-8842-48e4d8a6f1e7",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "RPM Blast",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-917b-71b7-9022-03bf49bbe267",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "RS-X",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-87ba-71c7-b391-5ab63a4196f1",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "RS694N4TF2",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8803-72d6-8677-98ecba541189",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RSAO102WD",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8805-70be-916f-252de134d806",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RSAO102WDIX",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8806-71b7-8010-66d4c46ae51f",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "RSAO102WDIXL",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5eed-71a2-b4fa-87b887e2d8aa",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "RUBAN",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d99-7318-a3af-591e0bf33185",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "RUDY",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-91cc-70e1-8b40-e3e64a4be679",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "RUSH",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-59e1-7353-ae53-46e09206f973",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "RUSSEL",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-597c-72d4-a91b-c405bd94fc64",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "RYDER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6d77-70c1-9fa8-9c544d4996fe",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Rabat",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-73de-71f1-a887-7a2effabc05f",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Rabat",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5bba-71ac-8a9d-eb79eba1890a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Rabbit x Coral & Tusk",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9306-7160-ad4a-9f3292881aa8",
            "brand_id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
            "wording": "Race",
            "brand": {
                "id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
                "wording": "Suunto",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-953e-7372-b28a-3c0f13b4eb3d",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Race Boot Bag",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-74c4-71cc-9b97-51a8607ebb8c",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Racemaster",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9526-700b-88c8-6f6adf8ef950",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Racetiger SL",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9332-70d9-bb08-8340b642a9e9",
            "brand_id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "Radiactor",
            "brand": {
                "id": "019f426a-9329-7339-9d07-2b866765b6d6",
                "wording": "X-Bionic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-80fc-7197-8e23-ff616dc195a0",
            "brand_id": "019f426a-80f3-7154-9825-6d4cd0198c06",
            "wording": "Radiance Enhancing Gommage",
            "brand": {
                "id": "019f426a-80f3-7154-9825-6d4cd0198c06",
                "wording": "Gatineau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-829d-72df-b645-ff77cfa002ec",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Radiance Matin et Soir",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6730-707d-9114-596bb328fc5a",
            "brand_id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Radiomir",
            "brand": {
                "id": "019f426a-6729-7222-aa9d-873696a39660",
                "wording": "Panerai",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5263-7202-9a04-994e5c4a5d20",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rafaella",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-787e-70b8-95d5-6c7394ecda7e",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Raffaello",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-65be-7252-9341-40b89f2ebd7a",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Railroad",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5688-7270-87a3-1d449dd0bace",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Rainbow",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-4e4c-7178-a5fe-97935a4a3370",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Rainbow",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-77cb-721c-916b-dc4bdacf039d",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Rainbow Rose",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6b40-73c0-8f50-f96aabf91631",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Rali 75",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5f6f-71cf-8afd-058ec85e723a",
            "brand_id": "019f426a-5f59-7214-b398-c7ae70dd5440",
            "wording": "Rallye",
            "brand": {
                "id": "019f426a-5f59-7214-b398-c7ae70dd5440",
                "wording": "Lip",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6024-70ec-b36e-9ebbd21bb247",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Rallygraf",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5bd0-7397-bf40-3e3c26a815d7",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Ralph",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7f11-71c4-ba88-e9803f68b66e",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Ralph Lauren",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5a76-73ba-90dd-1b38bce7e764",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Rama",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5ade-72fa-bf47-de40e834f940",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Rambha",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-93b0-72ab-b3e0-2a999ca7bb1c",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Rampage",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4ea1-728c-9cf3-5f745bfb9dd5",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Ranger",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5020-7151-9da5-8ccab990893c",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Rangs",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-55f1-7133-af8c-cf4304ad251c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Raphael",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6c0e-72c5-9814-673c8f284121",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Raphaèl",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c8f-738d-b8f9-d7f7962061ce",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Raphia",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-875d-7129-b168-02730749d489",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Rapid'O RO 16104DWHC7/1-S",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8760-70f2-bfbc-039893217241",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Rapid'O RO H10A2TE-S",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-715e-707c-87bc-ffffcccac9a7",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Rapide Jacket",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a0f-702b-805f-170e90b22b66",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Raven",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9110-73a0-95ef-ba4df289a2f9",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Ray Tracer",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5218-726d-8121-593aee949eab",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Raymond",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7385-7235-9e4f-c78d46546bd1",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Rayna V-Neck",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7ec2-72d4-8558-e265623e8737",
            "brand_id": "019f426a-7ebf-735e-ac6e-7d807d659587",
            "wording": "Rayures",
            "brand": {
                "id": "019f426a-7ebf-735e-ac6e-7d807d659587",
                "wording": "Inés de la Fressange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7df9-72c7-880f-4a069bc8bb0d",
            "brand_id": "019f426a-7df7-72e6-b700-f56e04794297",
            "wording": "Rayures",
            "brand": {
                "id": "019f426a-7df7-72e6-b700-f56e04794297",
                "wording": "Green Coast",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-67c7-7138-a71f-a32c5ae887e5",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Re-Edition",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67a6-72e7-a930-2d3d5a44ffba",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Re-Edition 1978",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67b5-71ca-a341-29bff1d27f00",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Re-Edition 1995",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67bc-72ac-8e98-0f17cf4d3da9",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Re-Edition 2000",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67b9-70ad-8655-381dad608ac5",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Re-Edition 2005",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67a9-72ab-9fce-7518d718d293",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Re-Edition2002",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-679b-70f5-a975-8e76c798df22",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Re-WEB",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-919e-71e2-aec3-ee6d791d0e04",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "React Infinity Run",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7024-7114-818d-8ad5aa209f71",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Rear window  Overnight Case",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7035-722b-ba39-305b8789e228",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Rear window  Slim Case",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-66f2-73d4-a90b-69be71aa4f5a",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Rebel",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-75b8-72a8-9dac-1ee46598354e",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Rebel Heart",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d2e-7177-b1e4-f81df612ab5f",
            "brand_id": "019f426a-7d29-71a5-920d-8c161765a592",
            "wording": "Rebound",
            "brand": {
                "id": "019f426a-7d29-71a5-920d-8c161765a592",
                "wording": "French Connection",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-914a-70af-838d-c1d729b94a79",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Rebula",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-671b-721b-9470-a8db73cfdb9a",
            "brand_id": "019f426a-6719-7201-9a1c-c6eb47b54451",
            "wording": "Record Collection",
            "brand": {
                "id": "019f426a-6719-7201-9a1c-c6eb47b54451",
                "wording": "Longines",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9049-705a-a0c9-352315f5f6ba",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Recovery Drink",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fc0-70ba-8bdb-34bf4ffdd86d",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Recovery Socks",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7bbe-722f-864a-f1294125f8e4",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Recycled Nylon Jacket",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bf4-7061-b37c-b7fcd1868212",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Recycled Sleeping Bag",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bce-7313-b3f0-9639702cec8e",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Recycled Sneakers",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7be4-73e3-9d4d-c211df9ea0b2",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Recycled Tote Bag",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4e59-71ba-8218-b82935c07dde",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Red holly x Frosted Mistletoe",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-79c0-71be-895a-25fab2f7f03f",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Redmond V2 Mid Waterproof",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4865-700e-a5a4-d1e4eb9e1c5c",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Reflet",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5e17-7209-9613-b2e110b1c985",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Regard",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7ec8-731c-ba5c-8a16fdcc6d0b",
            "brand_id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
            "wording": "Regent",
            "brand": {
                "id": "019f426a-7ec4-72d0-b234-cb8472f4a0f1",
                "wording": "J.Crew",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4e35-7175-932e-f0bc075da5f5",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Reglable",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7719-70ca-b09f-312e09fc0b4a",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Regular Cargo Pant",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-639e-73fc-bdcc-34e7cb798366",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Reine de Naples",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6f2a-70ca-b4d8-4a333bf79761",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Reine desPapillons",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-682a-73b5-bc53-801442cd66d5",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Relais Fourre-tout 34",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-81fa-7220-86bc-5d77df871ded",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Relaxante",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7cac-7317-9aad-ea999f7873d6",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Relaxed",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ba9-71be-bedd-cdabf4104a2b",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Relief",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-90b3-70c0-8276-dd952ae26a68",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Repas de Préparation",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4fa3-736c-9afe-f949ee832437",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Reptile",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-654d-72dd-be91-eba9f98b90ef",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Resilience",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6c5f-7350-969e-4fc6e8c926da",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Resort 2024",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d7a-7370-b2e1-4bbc8800f04a",
            "brand_id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
            "wording": "Respira",
            "brand": {
                "id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
                "wording": "Geox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-82ae-716e-8baf-263d11f39a89",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Respiratoire",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-90f2-71c8-9cde-6ac823ed3d83",
            "brand_id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
            "wording": "Responsiv Series",
            "brand": {
                "id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
                "wording": "Raidlight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7fbc-7322-830c-baa3c0074b34",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Resurfacing Peel",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f8d-73dd-9bb1-b595b3bf44c8",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Resveratrol Lift Firming Serum",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e47-71cb-9999-40c1a30fd3bf",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Retreat",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70f7-71bb-b68d-3b720235c9a5",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Retro Court",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9065-7253-b0f6-5b0804358793",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Retro Jersey",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-77f0-7103-a18e-6f2ebc441d97",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Retro Logo",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75d0-71a9-b57f-6cc818d2d1c4",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Retro Vibes",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77e8-714e-a752-a9ac953495c6",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Reverse Weave",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7684-7297-9569-e31973fe1b65",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Reversible Belt",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-94c0-726c-b466-04c20183db54",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Reversible Innsbruck Hat",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6758-7110-a7da-992c2c74099f",
            "brand_id": "019f426a-674d-7327-869f-6e3c527d4081",
            "wording": "Reverso",
            "brand": {
                "id": "019f426a-674d-7327-869f-6e3c527d4081",
                "wording": "Jaeger-LeCoultre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5c5c-700e-af88-c3fbc8fe396e",
            "brand_id": "019f426a-5c5b-7250-8b72-7185478e5a05",
            "wording": "Reves",
            "brand": {
                "id": "019f426a-5c5b-7250-8b72-7185478e5a05",
                "wording": "Vanessa De Jaegher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-952e-7058-b9c3-fe1dd1b7f6e3",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Revolt 121",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9533-70df-9e53-1344b17d5508",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Revolt 95",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8b82-72e7-a207-f300cd14797e",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Revolution V3",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-679d-7212-a084-7719db24e2cb",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Rhyton",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-74d0-73d2-88a4-4eb95ed4cd8c",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Ribbed Tank Top",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6d35-70a6-9f42-e400e657b7e7",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Rica",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bfe-70a0-b63d-d418d7e3cb8e",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Riccione",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5c27-72cb-a515-08cf329fe4f8",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Richmond",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6b03-724c-b18c-fd6a43b8ebd9",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Ricky",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7cdc-735f-9037-b7aaa63e73da",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "Ride",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8fa2-7290-a3be-1f24faf7f6a8",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Ridge OTG",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9272-72f9-82ad-43ee9762b87f",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Ridgeview Tee",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5c24-72bb-a9c4-2ef7f02cbc6a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Ridgewood",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-724d-7338-bf97-ba493a9de6c0",
            "brand_id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "Riflesso",
            "brand": {
                "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
                "wording": "Trussardi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-76b9-70cb-b686-880a8993dd5a",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Right",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7eeb-7154-a39c-e95c16adb554",
            "brand_id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "Right Pack",
            "brand": {
                "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
                "wording": "JanSport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6bb9-72b4-8ef1-344583ac8b18",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Rigide",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5216-715a-8cf1-218f5481c292",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-92ca-71b2-8aa9-1c2dc2390515",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Rincon 3",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-553a-70d7-b3ff-008f5b378997",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Rio AMBRA",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9531-705e-8a5f-50be6e2bbe76",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Rise Above 88",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6bfb-72df-8fb7-2c2609040adb",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Ristonchi",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-736a-720e-9509-17cd7ea36e5b",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Rita",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5415-73ec-92a0-943335858355",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rita",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-82dd-7106-a011-9e3664880d95",
            "brand_id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Rituel Apaisant",
            "brand": {
                "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
                "wording": "Elixir & Co",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82c0-73c5-9cf7-de094cfb38af",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Rituel des Andes",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8049-73f5-b710-adf4a9cedd41",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Rituels de Beauté",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8287-7219-9370-739438a2e293",
            "brand_id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Rituels de Bien-Être",
            "brand": {
                "id": "019f426a-827a-734d-be46-40c77ace37a5",
                "wording": "Pura Bali",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5b53-7031-b0ba-e4b81dc956e3",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Riverdale",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7f1a-70f7-ab02-aacc45f901f2",
            "brand_id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Riviera",
            "brand": {
                "id": "019f426a-7f17-735b-b944-c2b58be34b83",
                "wording": "Joules",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-70f0-7273-8a43-4cba2ea0c117",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Rivière Bleue",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-681e-7174-9f0f-ed36d65f5693",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Riya",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-74c1-706a-a800-9b722fa1dbeb",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Roadmaster",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-58d1-71dc-99d1-32bde1eea421",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Robby",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6a1b-73fe-b84e-cd5b01359033",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Robe",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b6e-732a-8189-93e2fc1c1937",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Robe",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6fb3-716d-a705-8ea6af423f58",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe A-line",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4a16-7286-bc7a-e4e07f4df239",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Robe Drapée",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-72e9-7386-ba0f-016bc09eca02",
            "brand_id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
            "wording": "Robe Fit-and-Flare",
            "brand": {
                "id": "019f426a-72e4-7389-a4dc-e6c93556ef29",
                "wording": "ZAC Zac Posen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7192-734b-9676-97c41b44c95c",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Robe Gaia",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4a12-7209-ace9-ec1cfbe81b15",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Robe Wrap",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6fa5-73da-b133-3f0606e032e1",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe bustier",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7eaf-7009-a570-2353f851bf2a",
            "brand_id": "019f426a-7eab-7093-8dc6-3dc871422580",
            "wording": "Robe chemise",
            "brand": {
                "id": "019f426a-7eab-7093-8dc6-3dc871422580",
                "wording": "Ikks",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7308-7396-a935-e606b183dd4a",
            "brand_id": "019f426a-7306-7061-8a56-57026329a932",
            "wording": "Robe chemise",
            "brand": {
                "id": "019f426a-7306-7061-8a56-57026329a932",
                "wording": "8 by YOOX",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6fa8-7041-a978-d1f5b6659e9c",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe empire",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6236-70f2-a15b-1e9b4f86e11a",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Robe en soie Tink",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6fb4-72b4-9062-52a81a5e6280",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe fourreau",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fa7-736f-b0ad-3fd23f271ff4",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe sirène",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6faa-7284-8df8-58b2b4853443",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe à col bateau",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fb1-7283-845a-c97bb7ed8aae",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe à col rond",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fab-727a-a39b-a6f15209a6bd",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe à dos nu",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fb0-72f6-acee-e13b03723fef",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe à manches courtes",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fad-71bf-ad77-92def61f33d0",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe à une épaule",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fae-7293-85c7-184186dc258a",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Robe à volants",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7008-7350-a36b-f59dfa620dfc",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Robe-camisole",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ad7-711f-b583-475d7e598567",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Robes",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6ea4-7246-9cf6-3894e47092cf",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Robes",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f7e-7146-8788-1a2bfbc3c308",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Robes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-732d-7240-834d-c0ad383e30b7",
            "brand_id": "019f426a-732b-7122-9a70-9e68239375f1",
            "wording": "Robes",
            "brand": {
                "id": "019f426a-732b-7122-9a70-9e68239375f1",
                "wording": "Alba Moda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4d05-73ca-a7e3-81099f4e06cb",
            "brand_id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Robes de mariée bohèmes",
            "brand": {
                "id": "019f426a-4d01-738d-9cda-a38d664e6506",
                "wording": "Maison Guillemette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d08-7342-9217-532d91674fef",
            "brand_id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Robes de soirée",
            "brand": {
                "id": "019f426a-4d01-738d-9cda-a38d664e6506",
                "wording": "Maison Guillemette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c9f-7195-b2ce-7b04de6d7f7c",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Robes fluides et légères",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6491-7142-ae16-f6743d0c3a36",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Robinetterie 2 Sorties \"U\"",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6acf-73c2-b91a-c7e84c114f32",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Robinson",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8b88-71ab-9cb0-1a7bb4bce965",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Robot Cuiseur",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8460-72af-b8fb-dc8d5041431a",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Robot Multi-fonctions FDM307SS",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8b85-7198-a076-5f82a0912a15",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Robot Multifonctions",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b86-7257-ae68-d6e086d5f49a",
            "brand_id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
            "wording": "Robot Pâtissier",
            "brand": {
                "id": "019f426a-8b7f-72d8-8c28-0ab591b5301c",
                "wording": "Kitchencook",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-82f4-71ae-b109-92e26abf89ad",
            "brand_id": "019f426a-82e8-71d1-aa6b-802465c658e8",
            "wording": "Robot-Cuiseur",
            "brand": {
                "id": "019f426a-82e8-71d1-aa6b-802465c658e8",
                "wording": "SEB",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8596-726c-90d9-0d0613f564b6",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Robotic Vacuum",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8bd2-721c-a813-f2d8caaf9fc5",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Robots culinaires",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-626d-706d-bf84-833b36862526",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Rocher Délice LAIT",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-626b-70f4-a956-b7dcaa402587",
            "brand_id": "019f426a-6250-722e-a006-93a613f221ff",
            "wording": "Rocher Praliné",
            "brand": {
                "id": "019f426a-6250-722e-a006-93a613f221ff",
                "wording": "Michel Cluizel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-61a8-7324-85c1-77f512725b32",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61c5-7003-9613-b6aa1b750fa1",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock Lucky",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61bc-71b5-ba60-031b8b2e4c15",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock Matelassée",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61ae-72d1-bcf8-528d1b798a99",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock Nano Suédée",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61c1-73ed-a7fb-0d3b2fb7d7b7",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock Soft",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-75d7-739e-808e-511ace07fe97",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Rock Star",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-61aa-71e7-8fa2-284d57bb81ef",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock Suèdée",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61f9-7010-a8f8-1d3125861010",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rock'N Roll",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9404-7336-ac45-5e359c9a1e5b",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Rock'N'Wool Beanie",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6476-7363-b600-db392003743f",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Rockboots",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-92d6-730b-84bf-1c32dda6be3b",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Rocket X",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-68d6-71c0-af61-1876f370f20c",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Rocking Horse",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-90d2-73ea-a068-85878dda1afa",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "Rockrider",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6a7d-71f5-b388-032bcc6d3f8b",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Rockrunner",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a66-7220-9845-4db366a702e2",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Rockstud",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-61b8-7208-8916-f486f3348697",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Rocky",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-695c-72b2-97a5-48e88791e86e",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Rodeo",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8d9e-738a-93d7-636606cff1ce",
            "brand_id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
            "wording": "Roger",
            "brand": {
                "id": "019f426a-8d8f-72d9-ab2d-4b200658271e",
                "wording": "Stadler Form",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-681a-73ed-9f8c-1b3d46b2d096",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Rogue",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-90bf-717a-b61d-28a6ae4c0d72",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Roller Skates",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-71a1-73f6-965c-d61b811f3d45",
            "brand_id": "019f426a-718e-7392-aaaa-19582b7d5624",
            "wording": "Rollie",
            "brand": {
                "id": "019f426a-718e-7392-aaaa-19582b7d5624",
                "wording": "Simon Miller",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9540-7104-a0bc-90091e767a69",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Rolling All Pro Gear Bag",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9343-72a3-a7b3-e0da13804c18",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Rolling Circle Hood",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7a39-7217-9b4c-85ad856494b6",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Rolling Duffel",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d51-72d0-adc2-66eb4a18d863",
            "brand_id": "019f426a-7d4e-734c-804a-09dc46656020",
            "wording": "Rollingsoft",
            "brand": {
                "id": "019f426a-7d4e-734c-804a-09dc46656020",
                "wording": "Gabor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7763-73d4-aaaa-9329b327e364",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Roma",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7868-704f-9903-de92c1467fef",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Roma",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e9c-728a-a17a-2748a245becf",
            "brand_id": "019f426a-7e97-71ca-844a-c96cb50c0617",
            "wording": "Roma",
            "brand": {
                "id": "019f426a-7e97-71ca-844a-c96cb50c0617",
                "wording": "I Medici",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5601-7077-b76c-83651435f69e",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Romane",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5330-72fe-a81d-4284fd0f8e4e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Romea",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7425-71e5-850a-b8558602a423",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Romy",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5491-716a-a2fa-493de3eed04b",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Rond",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6465-708d-b8a7-206c2f42ef4e",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Ronde d'or",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-52ac-7226-a03b-efcf2e59d403",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rondie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8a6a-72fb-b087-f6250ac0fb22",
            "brand_id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "Roomba 980",
            "brand": {
                "id": "019f426a-8a65-718c-97ba-329682898047",
                "wording": "IRobot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a66-73bd-8c64-6e4adb942ffe",
            "brand_id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "Roomba i7+",
            "brand": {
                "id": "019f426a-8a65-718c-97ba-329682898047",
                "wording": "IRobot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a68-73ce-8e21-da46ffc21fbf",
            "brand_id": "019f426a-8a65-718c-97ba-329682898047",
            "wording": "Roomba s9+",
            "brand": {
                "id": "019f426a-8a65-718c-97ba-329682898047",
                "wording": "IRobot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-811d-7278-8abc-291af28a29b6",
            "brand_id": "019f426a-811c-7328-be82-c107f6ea8639",
            "wording": "Roop",
            "brand": {
                "id": "019f426a-811c-7328-be82-c107f6ea8639",
                "wording": "TAAJ",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-55f3-71e6-801f-ac788c594e34",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Rosa",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-533a-7065-a699-34c6a80c7447",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rosa",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7ff6-72ab-8161-3d0a80629a1e",
            "brand_id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
            "wording": "Rosa Angelica",
            "brand": {
                "id": "019f426a-7fed-72e4-bc04-fe0fa5cbd1ab",
                "wording": "Sanoflore",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-55c0-71e0-8892-287e8ffdb28c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Rosalie",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5227-700b-978b-ca01008b269a",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rose",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7fe8-709d-a062-cbf06228e4c1",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Rose",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-65b3-7277-b9ff-5f18855c017c",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Rose Argile",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-81a0-721a-a175-1436447591cd",
            "brand_id": "019f426a-819c-7253-95e2-b756d2c64062",
            "wording": "Rose Bio",
            "brand": {
                "id": "019f426a-819c-7253-95e2-b756d2c64062",
                "wording": "Melvita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7781-729c-8bbe-bc1b0a44bc67",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Rose Gold Hearts",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4bf8-73e5-9221-c0f69d22af5a",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Rose des Vents",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4f95-7164-92e6-e37f1e53822a",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Rose des sables",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8197-711d-a71f-39123af650d6",
            "brand_id": "019f426a-8192-70da-b75c-eaa48af00b37",
            "wording": "Rosehip BioRegenerate Oil",
            "brand": {
                "id": "019f426a-8192-70da-b75c-eaa48af00b37",
                "wording": "Pai Skincare",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7fb2-701f-9ad3-64118ce327fa",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Roselift Collagène",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4e4f-72f7-86f9-f1eb1554827f",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Rosewater",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-534b-7237-9c81-c136ae7424d4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Rosi",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6836-738d-abae-b1b7ee6043b7",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Rosie",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78cd-7259-a3f3-36fc3b971a71",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Rosie",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-62d7-72ca-a48a-bac0b47bb9d3",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Rotonda",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-90bc-7156-ad6f-e131b9553e2c",
            "brand_id": "019f426a-90b5-7078-a678-f0d7386ad169",
            "wording": "Roues et Trucks",
            "brand": {
                "id": "019f426a-90b5-7078-a678-f0d7386ad169",
                "wording": "Oxelo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5bad-721f-a0e1-109a5179cd28",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Rouge",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5f4f-73ee-bc53-8cbb1390966c",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Rouge Allure Lipstick",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7f79-730e-855d-f5eb155ec893",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Rouge Edition Velvet Lipstick",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80bf-71e7-bbbf-625567713f60",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Rouge-Expert Click Stick",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-80d2-70bb-b384-a3f41416370d",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Rouges à Lèvres",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7ef2-727a-a44e-eb1008904cb8",
            "brand_id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "Roulettes",
            "brand": {
                "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
                "wording": "JanSport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-70c2-7384-bd14-8c117808de6b",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Roulettes",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-77af-7095-a58d-df07d737a894",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Round Sunglasses",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-795a-7219-b169-aef3012cb203",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Round Sunglasses",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b0c-72ef-abe1-c2bc1c16a41c",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Round Sunglasses",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-63dc-70a2-a4da-b34dcde97caf",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Route de la soie",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7107-735c-bb54-1a297e6f52ae",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Rover",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9382-7025-afc4-f1dbc908f07f",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Rover",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7cdb-72a0-8859-d5cba892bc17",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "Rover Trolley",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5fe1-7072-9440-3184d968e03f",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Roxane",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7e53-734f-b031-9ebdc216f198",
            "brand_id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
            "wording": "Roy",
            "brand": {
                "id": "019f426a-7e4c-7168-8650-545ea5f0ed27",
                "wording": "Herschel Supply Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-78aa-70ce-8078-65c202429361",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Roy",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-49fb-71f8-881d-0f6121f82213",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Royal",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-665a-7308-81dd-691ef4c2af19",
            "brand_id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Royal Oak",
            "brand": {
                "id": "019f426a-6658-730b-8c56-248220cc560f",
                "wording": "Audemars Piguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6661-71f3-8e95-08153cfdd8db",
            "brand_id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Royal Oak Concep",
            "brand": {
                "id": "019f426a-6658-730b-8c56-248220cc560f",
                "wording": "Audemars Piguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-665f-724d-974b-5b28fd73d2f5",
            "brand_id": "019f426a-6658-730b-8c56-248220cc560f",
            "wording": "Royal Oak Offshore",
            "brand": {
                "id": "019f426a-6658-730b-8c56-248220cc560f",
                "wording": "Audemars Piguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5f8d-7180-a30e-f554fd48c98c",
            "brand_id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "Royale",
            "brand": {
                "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
                "wording": "Pequignet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4e9d-71cf-bb26-6c55811d1a79",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Royale Bronze",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5f8f-7074-92e3-1fc1f00d7372",
            "brand_id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
            "wording": "Royale Saphir",
            "brand": {
                "id": "019f426a-5f88-7346-bc3e-05aa4f01c530",
                "wording": "Pequignet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5362-718c-b85e-f0c1552841cb",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ruban",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-9136-737f-9b23-de816b840c3a",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Ruben",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9133-714e-a95e-1f11091201ed",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Ruck",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d10-7280-b21b-308650a9a8ec",
            "brand_id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
            "wording": "Rucksack No.21",
            "brand": {
                "id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
                "wording": "Fjällräven",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-612b-7241-bf0c-c08fcc98eb14",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Rue Du Rhone",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-68fb-7388-83bc-1b30f9cf518f",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Ruff",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78b4-730e-9607-cdc3d095364c",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Ruffled Cotton Blouse",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78e8-73ce-8c39-e34e5e1d0352",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Ruffled Silk Camisole",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78af-71b2-aad3-6de1b08566d9",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Ruffled Silk Dress",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-90ea-72b3-8507-1c2890a26e6b",
            "brand_id": "019f426a-90e7-73eb-a977-8898ad949ebf",
            "wording": "Run Comfort",
            "brand": {
                "id": "019f426a-90e7-73eb-a977-8898ad949ebf",
                "wording": "Kalenji",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9476-7232-92fe-f6d75001369a",
            "brand_id": "019f426a-9472-72e5-b4ae-56043962374d",
            "wording": "Run Targeted Cushion Low Ankle Socks",
            "brand": {
                "id": "019f426a-9472-72e5-b4ae-56043962374d",
                "wording": "Smartwool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6932-715e-bc1c-f815dd9e5309",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Runner",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-76b3-7357-93ac-818f637d6534",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Runner",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-94bc-7097-8797-25d78a02c12b",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Runner Base Layer Bottom",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7b6f-7059-9fe6-cb27396b7ab3",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Runner Sneakers",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-90e6-73f4-9707-764e2f619493",
            "brand_id": "019f426a-90e2-7013-b476-b36964968f1b",
            "wording": "Running",
            "brand": {
                "id": "019f426a-90e2-7013-b476-b36964968f1b",
                "wording": "Joma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91f6-7361-8b9c-75d90e90f8a8",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Running Jackets",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-907c-72e6-af85-eacafa06d7e0",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Running Short",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-91f4-7110-9aef-f49d010e50c7",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Running Shorts",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9108-735b-ab80-50c7b488cfe8",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Running Shorts and Tights",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9106-737b-b92d-b51be1eb816d",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Running Tops",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66ce-714f-981c-98cdb7c7a3f1",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Runway",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5a71-7159-91fa-23a39476832a",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Rupee",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-749b-70fd-ba07-f34c2970d950",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Rupert",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-641d-7283-8d01-75234a8d1856",
            "brand_id": "019f426a-640e-72ec-8deb-152dbae9305e",
            "wording": "Ruthénium",
            "brand": {
                "id": "019f426a-640e-72ec-8deb-152dbae9305e",
                "wording": "F.P. Journe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-66b4-701e-b78d-5b9ae28c6c97",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Ryder",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78bf-7064-b216-77d08990ada6",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Rylee",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-55b4-736a-9635-f60e59d3a480",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Rym",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6e43-73c4-853b-0676962197b3",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Règlemen",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5a0a-70b6-b915-4a6a18b91b8c",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "Rève",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6de7-73fb-ae24-38c0a208e2f7",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "Rève",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-603e-72cb-bc93-e512ab90f0cf",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "Réedition MN64",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-882c-722d-ac33-a00e1a5cb967",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Réfrigérateur 1 porte",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-882e-7110-985d-0f58f5ddb0e0",
            "brand_id": "019f426a-8823-7088-af16-d04d48d59623",
            "wording": "Réfrigérateur congélateur bas",
            "brand": {
                "id": "019f426a-8823-7088-af16-d04d48d59623",
                "wording": "Vestel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8348-7098-b9c2-c9dee4e88bd4",
            "brand_id": "019f426a-8340-735d-9020-8a9df3f74faf",
            "wording": "Réfrigérateurs",
            "brand": {
                "id": "019f426a-8340-735d-9020-8a9df3f74faf",
                "wording": "Candy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8356-7197-b2a0-9926cbe7e228",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Réfrigérateurs",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8370-72d7-b5bf-58b8168d1a1e",
            "brand_id": "019f426a-8367-715e-aa0e-0097f389b4a4",
            "wording": "Réfrigérateurs",
            "brand": {
                "id": "019f426a-8367-715e-aa0e-0097f389b4a4",
                "wording": "Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8ce9-73ea-b397-2c8446c4f2dc",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Réfrigérateurs",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8319-73a6-a430-8b0a54d92c5f",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Réfrigérateurs",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5200-7321-a086-24508f88aa93",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Régénérescence Naturelle",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6ee4-71fa-8ebf-451d7c15cc6d",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Réjane",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-82a2-7065-8a40-564a5c9f7a79",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Réparation Intense",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7110-706c-a601-fc14a586ba28",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Rétro Runner SLIM",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7db0-7190-8150-db9d1927d1fe",
            "brand_id": "019f426a-7dab-7302-a31e-9b10153c2998",
            "wording": "Réversible",
            "brand": {
                "id": "019f426a-7dab-7302-a31e-9b10153c2998",
                "wording": "Giani Bernini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-629e-7254-8c80-2435cb3dffce",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Révolution Spatiale",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6b73-7007-bc2e-1727641f32c0",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "S",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8c0e-717a-aeae-d4dce528ea2c",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "S 600",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6177-712a-b00e-018398743b6e",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "S Tribales New LOOK",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5a14-7146-9532-b7cc448a9634",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "S'ASSEOIR",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8f9b-72f7-9235-7cd9f50342fd",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "S'Track",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-938d-7070-8c04-1168bc557db7",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "S-100 FF",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8696-70e5-b133-104c458f6ea7",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "S-HFB8145W0",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8698-7094-b901-46479984cc7f",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "S-HFH9145W3",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f02-73b5-87b6-84383994f641",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "S/Pro",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6bd4-7146-a19d-8e16dd391027",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "S110/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bd8-72bc-8a83-927f0bebf099",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "S168/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bd6-72d7-a723-725fe82e160e",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "S188/PCE",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8aec-732b-aef4-06d4fa0ef62c",
            "brand_id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "S5 Max",
            "brand": {
                "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
                "wording": "Roborock",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8af1-7106-8424-eedf8b2fdf5a",
            "brand_id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "S5 Max+",
            "brand": {
                "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
                "wording": "Roborock",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aea-70f2-85b1-f6bb6e637734",
            "brand_id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "S6 MaxV",
            "brand": {
                "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
                "wording": "Roborock",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aef-719a-8813-08f6d7db8186",
            "brand_id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "S6 Pure",
            "brand": {
                "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
                "wording": "Roborock",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ae8-73a1-b43b-f5cde690f7af",
            "brand_id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "S7",
            "brand": {
                "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
                "wording": "Roborock",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8aee-7132-a414-5855ea28b0cc",
            "brand_id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
            "wording": "S7+",
            "brand": {
                "id": "019f426a-8ae5-72ac-8436-36fc3e7ae6c9",
                "wording": "Roborock",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8896-70b9-8df7-6b0bd4bab658",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "S8",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8949-72fb-a361-c3a7072c1bd2",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SAB4301W",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e0c-70b0-86df-3f508d738bd1",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "SABIAN U",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5a99-7024-b711-b237913a1ac3",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "SATRA",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8ce1-712f-acbf-27822b7ed0fd",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "SB100",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ce3-70e9-8e8d-8e6fd3e52f28",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "SB110",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ce6-7324-951e-fc2df836d6e1",
            "brand_id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
            "wording": "SB120",
            "brand": {
                "id": "019f426a-8cd6-70f1-8489-283e6dd43fc5",
                "wording": "Finlux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-890d-71ac-9237-ede0490b68f5",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "SC100",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-890b-739d-bbaf-f2fb2e8db6ba",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "SC250",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8909-7005-b1f3-8fc8045c81f6",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "SC351",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e94-7140-9c21-536724cf9bca",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "SC380",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8946-7374-8049-3fcde7a015db",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SCB1800B",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8948-737d-93bb-137a0cfcedd4",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SCB1890N",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-893c-7138-8092-0bb16599b104",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SCB4400W",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8acd-70d5-8d95-4e85832896c1",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "SCB6060",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-847e-7393-b108-61b269be61bc",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "SCE81921LC",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8aca-70d9-9571-7120afc2a349",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "SCI1161W",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ad5-7091-9b7c-2da9d06dce28",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "SCS51800F1",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8adc-705e-bd28-9630c65f3494",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "SCS51800N",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ad9-73b8-b3b6-9aee5dd8daf5",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "SCS51800S1",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8670-739c-bc86-aa582ebbc3cd",
            "brand_id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
            "wording": "SD-ZB2512KXC Machine à pain",
            "brand": {
                "id": "019f426a-8643-70f4-9df1-0abeb76fffe6",
                "wording": "Panasonic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6ddd-72a7-9a2e-d3cca4336d3e",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "SEAU",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5d83-7269-9aee-7ab17f7e1009",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "SECRET OF MANNA",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-62ce-7234-b194-a1895309d47d",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "SECTORA",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8ebb-704c-a6d2-5d8d87e8d9be",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "SECURE HOME",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7175-716a-b197-03a7a61f6fc1",
            "brand_id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
            "wording": "SEE BY BYE",
            "brand": {
                "id": "019f426a-7168-7082-b6ef-7d7d4ce99a2f",
                "wording": "See by Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-618b-711b-aa2e-05d5dcbe511f",
            "brand_id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
            "wording": "SELENE",
            "brand": {
                "id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
                "wording": "Michel Parmigiani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-871f-7296-af78-4ea9114876a7",
            "brand_id": "019f426a-8718-705f-831e-bc7ed787ce43",
            "wording": "SF-130XAV",
            "brand": {
                "id": "019f426a-8718-705f-831e-bc7ed787ce43",
                "wording": "Hitachi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-847c-7377-b5fa-5372bb0301ea",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "SFB68821AS",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87a2-7274-a461-97a430e634ff",
            "brand_id": "019f426a-8798-7337-ab21-02fab69a4c96",
            "wording": "SFE-81 L",
            "brand": {
                "id": "019f426a-8798-7337-ab21-02fab69a4c96",
                "wording": "Fagor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-894b-71f9-aba6-cbe8bbc3dee2",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SFP930X",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-894c-71b5-a703-a45cc1ff2b3e",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SFP945X",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-849e-713f-9d97-75c851e1cb44",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "SFPA7395X",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8f45-7123-98b8-4bcf4e9483d2",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "SFX3",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-59ac-717f-bdab-b53400bec7a7",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "SHANE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8943-70f2-b604-4afb46b0565b",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SHB4901XF",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8945-73b7-b586-004324110614",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SHB4903XF",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8942-7106-a2e3-4c237c22d6f7",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SHD4130BF",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6ed3-7272-bde8-ced5a32fab38",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "SHINY",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7397-725f-a2ff-27f2ee27e32f",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "SIF",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8f8d-72ce-a492-f4ea47751da0",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "SIP Protection Chainsaw Boots",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8690-73e5-9501-f425f39e1068",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "SJ-BB05AS",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8694-7171-8653-35309470916c",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "SJ-EX820FSL",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8692-70af-be7d-888cd71139ac",
            "brand_id": "019f426a-8676-7389-af59-053ce5e9d76b",
            "wording": "SJ-LX55ESL5",
            "brand": {
                "id": "019f426a-8676-7389-af59-053ce5e9d76b",
                "wording": "Sharp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-65e8-7240-ae71-aba86a9ef72e",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "SKATEBOARDS",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d8a-736a-ac6c-bab827103424",
            "brand_id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
            "wording": "SKYE LIP",
            "brand": {
                "id": "019f426a-6d7c-7354-8152-5a6e631b4cbe",
                "wording": "Lulu Guinness",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6e7d-7236-ac46-30092ea2801a",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "SKYMASTER",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-84a5-7295-8b33-f25be91ee6d5",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "SLB147X",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8a01-708b-b12d-0300539a8f5d",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "SLC85",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8930-7068-881f-53c95f3eef80",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "SM20",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-63f4-71ad-abda-ff1af8885532",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "SM300 Scuba Master",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8ac7-7337-b0d1-a0453bebea3a",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "SMC614WF",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6aaf-707f-b27c-1471b258a921",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "SMILE",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6949-724f-83cb-962e903fd9c7",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "SOCK 90 MM",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5d34-7378-8425-4e3f7dfd1e29",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "SOLID",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-893a-70aa-8d70-3d2b220a2e84",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SOP4430B",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7f9e-70da-9e54-e9865d4c5ddc",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "SOS Masks",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-76cc-71eb-ab9a-3e3f87f05703",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "SPACE",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-644e-7056-a052-8cb930aeed9f",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "SPEED ART",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6450-739e-b844-fbaeafb38f45",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "SPEED TITANE",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5982-73ec-9942-79067575707c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "SPENCER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-893d-738d-9879-17205187f146",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SPG4465B",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8940-7392-a42b-461dede1e346",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SPI4360B",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8939-7266-bc86-d31df7f7be30",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SPI4467B",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e1e-73b4-a597-6471846c1c68",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "SPONTANEOUS L",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e1b-71bb-ab1e-b509e5c86b13",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "SPONTANEOUS M",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-64ac-739c-abe7-2f3cffc96973",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "SPY",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64b4-703f-a010-b558b0f8bb49",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "SPY CAMO",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64b1-7199-967a-74e0d5440337",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "SPY Purge",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62b7-72dc-af84-7502e3b98637",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "SQUELETTE",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9032-7238-8542-e1866280e94f",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "SR",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92ef-729b-89c5-2b3bf930ee0d",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "SRL 65, 45, et 32 LDT",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-84a1-70a8-867f-54dfc7b51e40",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "ST2FABRD",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84a3-73cc-85bc-b3e2719dce40",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "STA4525",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5bcd-7296-94a8-5ec6398cdbd5",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "STANLEY",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-89fe-711a-a512-b2b21036d643",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "STC68",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5999-71d4-911b-922ddc9100c7",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "STEFAN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-59d6-7299-86be-18c4fc9f9f31",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "STEVE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-893f-7090-8a25-3a531bd26265",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "STG1021BF",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5d26-721e-95a1-8d9e5626654e",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "STOLEN",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-76ca-70ce-94b3-aa20b51912a8",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "SUM",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6c07-7144-8d6f-80a95375e50a",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "SUMMER",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4fd9-7290-9236-0c25e105b07d",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "SUN",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6de5-7140-85d0-93e0a871f4a8",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "SURDIMENSIONNEE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-894e-73d4-8c39-9ac80d3fc60e",
            "brand_id": "019f426a-8937-732a-b4d9-34c46e6f4127",
            "wording": "SUT4390B",
            "brand": {
                "id": "019f426a-8937-732a-b4d9-34c46e6f4127",
                "wording": "Sauter",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8e90-7020-83e7-899dff8ff9c6",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "SV510",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84cc-73f2-a7bf-6716d54031b9",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "SV6035F0 Centrale Vapeur Easy Pressing",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84ca-7049-8ec9-8a38f058d939",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "SV7110C0 Centrale Vapeur Express Compact Easy Plus",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8525-7183-8461-f85181c78d68",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "SV7110C0 Centrale Vapeur Express Compact Easy Plus",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8907-71dd-9c98-467b84758c66",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "SW200",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8905-73b8-a73a-437cbff03191",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "SW250",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8903-72c2-9b6e-5a06854ddaa1",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "SW5500",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9392-73a4-b58b-e1cde2cc6cfe",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "SX-100",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-874a-700b-a473-4822b82e09af",
            "brand_id": "019f426a-8735-7341-be9d-3dbacc27fbef",
            "wording": "SXBHAE 924 WD (EU)",
            "brand": {
                "id": "019f426a-8735-7341-be9d-3dbacc27fbef",
                "wording": "Ariston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5550-70a1-975d-799447321c38",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Sabine",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6dbd-70a1-ada7-b9a3e48c87ec",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Sablonneux",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d2a-720e-abff-054b919a4560",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Sabre",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6da5-71d4-8d52-de50080dad39",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Sac Midi",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-701a-7023-a5a3-a0c0c40205e3",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Sac banane",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5e63-7288-824d-04d3bf270264",
            "brand_id": "019f426a-5e3f-73b0-9107-d66df64f961b",
            "wording": "Sac de Billes",
            "brand": {
                "id": "019f426a-5e3f-73b0-9107-d66df64f961b",
                "wording": "Isabelle Langlois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-696f-704d-8b42-18e9702d574f",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Sac de Jour",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6fcc-7217-acc9-c96360cf76d2",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Sac seau",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f88-73bc-9d8d-491bc3f98bbb",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Sac à bandoulière Wander",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6fca-72d5-85a9-5833b4385bec",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Sac à dos",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7eb3-7113-b22b-59d827f905f5",
            "brand_id": "019f426a-7eab-7093-8dc6-3dc871422580",
            "wording": "Sac à dos en cuir",
            "brand": {
                "id": "019f426a-7eab-7093-8dc6-3dc871422580",
                "wording": "Ikks",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6f86-7285-ab40-e35b823285af",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Sac à main Bindle",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5553-7257-8d72-8c0cbde84552",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Sacha",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-90af-706d-bbf5-c5f3596672a3",
            "brand_id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
            "wording": "Sacs de Froid/Chaud",
            "brand": {
                "id": "019f426a-9097-71ff-b8d7-712db0a43d9d",
                "wording": "Aptonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-90ce-73d0-ad56-2250821e31e1",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Sacs de Sport",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-731f-72da-be5f-1daabdf8e422",
            "brand_id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Sacs à main",
            "brand": {
                "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
                "wording": "Aerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4cf7-7135-8919-c0fae0de03ac",
            "brand_id": "019f426a-4cee-7161-803c-0ac72405dea2",
            "wording": "Sacs à main",
            "brand": {
                "id": "019f426a-4cee-7161-803c-0ac72405dea2",
                "wording": "Gaspard Yurkievich",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6164-7383-8e71-6adf6854b00e",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Saddle",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-68ec-704c-b079-f487acc10029",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Sadler",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7ab7-73da-8298-c5f3ee13523e",
            "brand_id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
            "wording": "Safado",
            "brand": {
                "id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
                "wording": "Diesel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77a3-7028-873c-d24a4e95c700",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Saffiano",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4eb1-7392-a5de-a1884e75fbcd",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Saguaro Iindian Agate",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5ad0-71cf-b7a7-418ef02a820e",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Sai",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6ca7-7030-acb0-0b0be0325cbb",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Saigon",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-63d1-72f2-9862-632f060171ec",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Saint-Gabriel",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63d4-7361-86ed-47640e6e52b4",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Saint-George RC",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6a59-709e-8e20-3fc973da3b51",
            "brand_id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
            "wording": "Saint-Marc",
            "brand": {
                "id": "019f426a-6a34-72ca-848a-a5ae4cbeb948",
                "wording": "Marc Jacobs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5a66-713b-9b67-ceafe4a49b6b",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Salee",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8f8b-7390-b880-caa419ed7137",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Salewa Ultra Train 2",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5517-7070-a28b-206fbbc34819",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Sally",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-553c-72b6-95ff-0550cd31cf83",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Salvia Vitello",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-62d3-701d-8ee9-836a4070441e",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Samara",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5a7b-70c9-9310-9def39495636",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Samay",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5abc-72aa-8964-a230169dc979",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Samba",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a64-72a2-84b2-c8d6b9c71b4e",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Samhita",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5b5f-73c9-93d3-ca1b926fd78c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "San Francisco",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-620e-7174-bfb8-cbaea663f1c0",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Sanchi Skull",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7001-72a6-8d47-540e63602340",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "Sandales",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f9a-70fe-bfc7-493b90c85fb5",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Sandales",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d2e-70f7-95d3-716b6403fd1b",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Sandales",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7021-7365-878b-5d6307fb9dc9",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Sandales",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7541-7002-ac4e-13c32b655fea",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Sandals",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4dbc-70ea-9a68-2f4d31c5e27e",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Sandra",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-532c-7367-838a-2eed1adddac4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Sandro",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-670b-70f5-bf55-90b2b4306f90",
            "brand_id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "Sang Bleu",
            "brand": {
                "id": "019f426a-6709-73b7-833d-0e3813509c15",
                "wording": "Hublot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4a0c-73ca-abef-bc054f5833de",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Sangle Flipperball",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-88dd-70b6-ad66-16653f38c305",
            "brand_id": "019f426a-88d4-7246-af73-a81bc748fc3b",
            "wording": "Sanitation Accessories",
            "brand": {
                "id": "019f426a-88d4-7246-af73-a81bc748fc3b",
                "wording": "Dometic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-4f2d-70c3-8d51-c70158063fe4",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Santeria",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-49d8-714a-93a8-2f7f48af9ac3",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Santorini",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-483a-7392-b92a-81b7ffc66ea8",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Santos de Cartier",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-645a-73d5-8b31-9db6ae273dc1",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Saphir",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4dc9-73f5-a22a-22c61f03e3c0",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Sarah",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-74a7-7360-b513-80653ff85218",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Sarani",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5539-7274-8350-941d0d864d9f",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Sarcelle de RIO",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-69c9-7140-9e2f-395f5aa5b17d",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Sardine",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7a7a-70e2-9fc2-7fa430d3e36e",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Satchel",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7df5-702f-8b24-b40b74e8f249",
            "brand_id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
            "wording": "Satchel",
            "brand": {
                "id": "019f426a-7dec-73c8-890e-e723d8ef3d91",
                "wording": "Grafea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8f53-7073-852a-84e8837166e6",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Satelite",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-669f-7359-bb93-5b5a3204c2b4",
            "brand_id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Satellite Wave",
            "brand": {
                "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
                "wording": "Citizen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5ab8-7114-96ac-0b28ce7822d6",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Sati",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-67c0-72ab-b0d3-8e0961be965c",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Satin",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4b28-7275-a472-dc04bedec542",
            "brand_id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
            "wording": "Sautoir",
            "brand": {
                "id": "019f426a-4b16-7118-83a6-7cf3bd7b479d",
                "wording": "Agatha",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4eb5-70f9-a803-ece72f099c9c",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Sautoir cauri",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4aa5-7389-8cfd-f63bf113119f",
            "brand_id": "019f426a-4a8a-723f-8be5-980ec97e9410",
            "wording": "Sautoirs",
            "brand": {
                "id": "019f426a-4a8a-723f-8be5-980ec97e9410",
                "wording": "Gas Bijoux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4db8-70da-955c-8b3275dae062",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Save",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-676d-72f5-9126-5ab36939c30b",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Savoy",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78c8-7032-833a-5441ecf4dfe6",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Scalloped Leather Ballerinas",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7fd7-71c7-8446-27c423ce0f91",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Scandaleyes",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4fe3-72da-a6f1-78010fb921ad",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Scapulaire",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5768-72b5-8412-036968716516",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Scarabée",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-74fa-72cd-b3fe-82cd59ff433d",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Scarf",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-759e-71d9-94dd-627f5e3bd92c",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Scarf",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74e8-7084-817f-78cb941ad490",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Scarf",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7532-7317-ab1f-882471cfa022",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Scarf",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a97-71df-a36e-37f4a734b274",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Scarf",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c2b-70ca-9ad4-8dea2473b517",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Scarlett Statement Earrings",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77d2-7154-ad4f-8777561c0a43",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Scattered Anemone",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76a2-72c1-9ce6-fa51fa998867",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Scented Candle",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8dcb-723f-8898-92b8f3c1255f",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Scies",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8bc2-713d-a9b0-63ee68bc637a",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Scies circulaires",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7720-725e-bc52-53fd91fbf2a3",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Script",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6824-7065-b3c8-7426dc1cf12c",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Script",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7712-7165-b0d6-bb0a4e980c5c",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Script Embroidery",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77e9-7265-92fa-741c1a829e81",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Script Logo",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-66c6-7306-8993-3224cf2dfde8",
            "brand_id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "Scuba Libre",
            "brand": {
                "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
                "wording": "Swatch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6bef-70eb-a8fe-8f9f5e2d3eea",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Scudieri",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7cc8-7230-89f1-14dff12629c7",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Sculpt",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6635-719c-8a97-23a62cbbfa52",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Sea-Dweller",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4ee0-726a-9534-88f1ace090c6",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Seal",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6647-73b3-bd83-7ba4e0564f87",
            "brand_id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "Seamaster",
            "brand": {
                "id": "019f426a-663f-7380-94b2-06517b63aa0a",
                "wording": "Omega",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6642-71f4-ab25-112ae24642c9",
            "brand_id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "Seamaster Aqua Terra",
            "brand": {
                "id": "019f426a-663f-7380-94b2-06517b63aa0a",
                "wording": "Omega",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6641-7385-89ba-a5c9b6835ce3",
            "brand_id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "Seamaster Planet Ocean",
            "brand": {
                "id": "019f426a-663f-7380-94b2-06517b63aa0a",
                "wording": "Omega",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7ce5-72ec-a188-8541eef6f30c",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Seamless",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9247-70fa-9d3f-e32028613c6a",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Seamless",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9164-711b-aa80-06ecceb57904",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Search",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6f65-737c-afc5-255d53ed8ee7",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Seaton",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9415-72af-9412-adeb3039b4f5",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Seattle Sombrero",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-68dd-7046-bc89-e66a2420c468",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Seau TB",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7f58-7013-b3f4-3d8d7383ca17",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Sebium Gel Moussant",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6be8-73b9-b460-ce7df0db3cb6",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Secchiello",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c1c-7371-bdc4-235012d64da4",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Secchieta",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-639c-7016-8eb3-579cc6bba1f1",
            "brand_id": "019f426a-638b-71a3-9bc3-865f0a220c01",
            "wording": "Secret de La Reine",
            "brand": {
                "id": "019f426a-638b-71a3-9bc3-865f0a220c01",
                "wording": "Breguet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-828a-7318-9838-d2b57472ccbd",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Secret de Provence",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8292-7330-89b4-f4fd2fd7492c",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Secret de Provence Cheveux",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8298-71ae-a75a-279f814ee129",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Secret de Provence Spa",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82cc-7036-9f82-5ea6c1ae698b",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Secrets de Provence",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82c2-7189-b1f8-9e5a42357f2a",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Secrets de l'Amazonie",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8284-7056-b7b1-e19c6c672086",
            "brand_id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Secrets des Balinaises",
            "brand": {
                "id": "019f426a-827a-734d-be46-40c77ace37a5",
                "wording": "Pura Bali",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-686f-70dc-b735-5b65a57dccd0",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Seersucker",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-667a-707a-b265-4f1c5d0b8fc0",
            "brand_id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
            "wording": "Seiko 5",
            "brand": {
                "id": "019f426a-6669-734f-b62b-5161f6f4a3f9",
                "wording": "Seiko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8911-739f-b568-d519926e2aa7",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "Select",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6478-7094-9519-70de6edb80b7",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Semi DRY X-TREM",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64aa-7321-9613-26794ff8b64c",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Senior securit",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-75e3-7098-b1a8-583a4e190a1a",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Sensational",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8efc-7220-88e1-39017627ffac",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Sense Ride",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7f55-73c5-a8a1-0974fa12da30",
            "brand_id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
            "wording": "Sensibio H2O",
            "brand": {
                "id": "019f426a-7f53-73fd-a0be-2c2389b2e4f4",
                "wording": "Bioderma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-818c-73ea-bdf6-7157ab6f7fe6",
            "brand_id": "019f426a-8189-7363-93e6-15e1783a6be6",
            "wording": "Sensitive Skin",
            "brand": {
                "id": "019f426a-8189-7363-93e6-15e1783a6be6",
                "wording": "Mixa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-94b2-72e6-85f9-dec5fdd2d0c5",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Sentinel GTX Pants",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5fcf-7233-8814-02014d4ebcbf",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Sentinelle",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9366-7358-92bb-033a10ef35f8",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Serac",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4ebf-7202-b413-39e45800d567",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Seraphina",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8637-732e-bac6-284b414e8ee5",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "Serenity Series ESAQ406T",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7344-7258-abcf-9ffd19855662",
            "brand_id": "019f426a-7337-711a-958e-920485f14fc0",
            "wording": "Serge de Lin",
            "brand": {
                "id": "019f426a-7337-711a-958e-920485f14fc0",
                "wording": "Alberta Ferretti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-839a-7361-b9cb-8aa232669208",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 4 BGC05AAA1",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-838b-7328-9479-6b567e84597e",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 4 HBA573BR0",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-837a-71d2-b3c2-a80caa28ee8b",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 4 KGN36VIEA",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-838d-71a8-8ad5-27959f8c96d9",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 4 PKE645B17E",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8381-72fd-8a04-b966c8713f62",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 4 SMS46KW00F",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8386-7010-bf3b-8515aa61ba7f",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 6 HBG672BS1F",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-837d-735a-8903-7f21bd5152ab",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 6 KGN39VWEA",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8390-7174-b2c6-1ad674e0766f",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 6 PXE651FC1E",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8395-72dc-8994-bbb0ad48d960",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 6 ProAnimal BBS611PCK",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8383-710e-8b1b-51660978d28e",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 6 SMS68TW00E",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8388-723d-ae24-09bc6e9c5634",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 8 HBG672BS2F",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-837f-72b6-b153-f45dc5067305",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 8 KGF39SBAD",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8392-7018-a858-29fa927f5d7a",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 8 PXE875DC1E",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8384-7003-91a8-0bf9fbcb765c",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 8 SMS88TI36E",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8398-72eb-ba54-786a9adfc981",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Serie 8 Zoo'o ProAnimal BGL8ZOOO8",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6ef0-7223-ab81-b8a9d8e5cfe2",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Serie S",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-86b9-7237-a493-299a6677a48f",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Series 2200 EP2231/40",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86a7-71cb-b7fb-e0154aec3b59",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Series 7000 S7788/55",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86a4-73c1-bd65-a7d59b4c6806",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Series 9000 Prestige SP9863/14",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-744c-73ab-8e5d-8ee8ba579166",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Serpent",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4fab-700c-82bf-70c469df10d5",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Serpent",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4852-7024-971d-de603dd8ca32",
            "brand_id": "019f426a-4850-728c-a77b-1963f47bc79f",
            "wording": "Serpent Bohème",
            "brand": {
                "id": "019f426a-4850-728c-a77b-1963f47bc79f",
                "wording": "Boucheron",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5ad4-72cb-8519-055571c12b41",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Serpent Phytia",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-48d3-71f0-aefb-b350f9722460",
            "brand_id": "019f426a-48cc-73fc-8f86-52181bd63c58",
            "wording": "Serrure",
            "brand": {
                "id": "019f426a-48cc-73fc-8f86-52181bd63c58",
                "wording": "Dinh Van",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5078-7367-800a-f5240ba5255e",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Sertis",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7978-73af-9385-257ba2cd8df4",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Serum",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6552-71c8-ae54-69566db43fdd",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Serum",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5166-725f-92fb-ace444e968a9",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Serum Energisant",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-51e0-73f4-9620-4075307eb073",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Serum de soie sublimateur",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4af7-712d-8b1f-877616e91f42",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Service de Table Jardin d'Eden",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-9442-71f2-b823-506011ed9f70",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Sesvenna TirolWool Responsive Jacket",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-911f-72a4-9ed8-9da12a70b368",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Settanta Track Jacket",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6e5d-713b-938f-ac1888b6a405",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Settlement",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e41-7096-a373-c8259f33053f",
            "brand_id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
            "wording": "Seven J",
            "brand": {
                "id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
                "wording": "Helly Hansen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-934e-7086-9ff5-32449e60456b",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Seven Summits+",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6afb-710f-9d81-c0f83be8ef61",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Severn",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6e4c-7263-b7d6-814e01e8c42a",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Seymour",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-816c-7346-8fe1-0eaa021b632e",
            "brand_id": "019f426a-8167-711c-9789-8705d8b5fc78",
            "wording": "Shampoings et Soins Capillaires",
            "brand": {
                "id": "019f426a-8167-711c-9789-8705d8b5fc78",
                "wording": "L'Erbolario",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-516a-71e6-9efe-aa148b915f84",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Shampooing Energisant",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5179-70d6-baef-6013d2c9b5c7",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Shampooing Sublime",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5196-7219-b195-3fa70e1c5dc3",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Shampooing au Miel",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-81cd-72af-91f7-eb99d49e8b60",
            "brand_id": "019f426a-81cb-71b1-8022-f2c4314b1048",
            "wording": "Shampooings",
            "brand": {
                "id": "019f426a-81cb-71b1-8022-f2c4314b1048",
                "wording": "Christophe Robin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8251-724d-9bb0-b70307e4e4c6",
            "brand_id": "019f426a-824a-72a1-a3ba-1d133b9ccf7d",
            "wording": "Shampooings",
            "brand": {
                "id": "019f426a-824a-72a1-a3ba-1d133b9ccf7d",
                "wording": "Planter's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-58dd-723b-966b-8c572451d065",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Shane",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-9503-738c-89fc-70af63aff55c",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Shangri-La 10 Double",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5af3-7301-8362-8529f2c5decf",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Shanka",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-91ec-7345-b1fd-d5546712e4a5",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Shaqnosis",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-69b1-72f6-bff9-3c9632d06606",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Shark",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b7c-7328-bb07-2912d2748e63",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "She Wood",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-757a-7338-a0cf-faba5368a337",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Shearling Coat",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7661-7005-adf3-cf7bf2ce6ff0",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Sheath Dress",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-668f-730f-a493-14143617aead",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Sheen",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9505-7375-8dd2-ca3b7b0366ca",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Sherpa 65+10",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-690a-71ac-8e33-a0cd0a7a5b98",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Shield",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8f77-7340-bc50-34b0cd4ce0c6",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Shift Bottle",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ac5-702f-9418-eafdf7c60213",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Shift Dress",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b91-7114-a978-5e2228aee47c",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Shift Dress",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b1c-72da-ad2d-8c1b883a56e2",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Shift Dress",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f59-71ec-8fb5-db06e7d22127",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Shift Gore-Tex Jacket",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-70f4-706f-8270-4148f919605f",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Shiloh",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-71af-7202-b8b6-e4eef1677c77",
            "brand_id": "019f426a-71a5-728f-84dd-af5a49786b07",
            "wording": "Shirley",
            "brand": {
                "id": "019f426a-71a5-728f-84dd-af5a49786b07",
                "wording": "Staud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-79ec-7056-842d-bd17343d9521",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Shirt Logo-Print Tote Bag",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-76d7-707b-96a5-c3561f5769e6",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Shopping Bag",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6782-73e3-be19-a5c0ae168227",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Short en TOILE",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-90c8-700f-bba4-3b740b87f668",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Shorts de Sport",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6481-7262-a134-dec460b2d524",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Shorty 1Dive",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7abf-7150-b029-207a1d5c8a3b",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Shoulder Bag",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7be6-70fd-b591-83dc41609289",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Shoulder Bag",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-76de-7161-b10c-d2c41c9e344e",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Shoulder Bag",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e6d-7339-9f10-008ae129ed6e",
            "brand_id": "019f426a-7e66-72bb-83e4-8dd08920539d",
            "wording": "Shoulder Bag",
            "brand": {
                "id": "019f426a-7e66-72bb-83e4-8dd08920539d",
                "wording": "Hogan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-69b8-735b-8886-22eddc4f3ed9",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Show",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5aa9-717c-8d57-64d1e9021fbf",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Shri",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7dbb-7262-8003-9c79611867c4",
            "brand_id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
            "wording": "Si Intense",
            "brand": {
                "id": "019f426a-7db4-718c-8e55-02ae48dac1d5",
                "wording": "Giorgio Armani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7af4-72dc-a937-bb4cef5161d5",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Sicily Bag",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7105-70e8-ae48-bc4e075d1d9d",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Sid",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7716-730a-9fee-637a8fd950f4",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Sid Pant",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-85a3-706b-9a40-ecc891417c9c",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Side-by-Side",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8f95-73fa-9bbb-bfdd48567bcf",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "Sidi MTB Tiger",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-59ef-7374-9776-094a86ed5339",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Sidney",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7379-70db-b289-6276340d54fc",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Sidney Wool",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-52fa-738a-b3ed-4cc43f4d98c4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Sidonie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7e9f-713e-b315-997add7c75ac",
            "brand_id": "019f426a-7e97-71ca-844a-c96cb50c0617",
            "wording": "Siena",
            "brand": {
                "id": "019f426a-7e97-71ca-844a-c96cb50c0617",
                "wording": "I Medici",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-786e-71c1-8415-9daf2b85cbf7",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Siena",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d2f-71b0-8c66-11609b03c773",
            "brand_id": "019f426a-7d29-71a5-920d-8c161765a592",
            "wording": "Siena",
            "brand": {
                "id": "019f426a-7d29-71a5-920d-8c161765a592",
                "wording": "French Connection",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f6c-7213-b008-5b2dc93f809d",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Siesta 2",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-75ac-7141-a586-f5b07c53393c",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6361-705b-b741-c75bf494c4c8",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-74f4-731e-880d-680e43d59762",
            "brand_id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-74eb-73a5-8e28-531b5dd297e8",
                "wording": "Berluti",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7205-70e8-98ea-fee72a820b77",
            "brand_id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
                "wording": "The Kooples",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-669d-72d5-9302-2cdc97e92605",
            "brand_id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
                "wording": "Citizen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6cea-7087-a001-75fa4fd168e9",
            "brand_id": "019f426a-6cdb-720a-8332-a26320938e45",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-6cdb-720a-8332-a26320938e45",
                "wording": "Rimowa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6bab-70c4-a669-5f5a18e0c57b",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ca5-72a5-97d6-9aa359f01830",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Signature",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6831-7366-b4e7-74e7b3906cd8",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Signature Spade",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6799-71b8-9f9b-b07ff1357aba",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Signoria",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5864-710e-8e2e-fdcbdfa5334c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Silas",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-843a-738d-917b-6e0e9958cd79",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "Silence Force Cyclonic",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-66a1-73b3-8e8a-fd1a5fd8d888",
            "brand_id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
            "wording": "Silhouette",
            "brand": {
                "id": "019f426a-6695-735f-8cf8-fd00c6b95be5",
                "wording": "Citizen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4d10-73a6-80b3-e651f7bb85de",
            "brand_id": "019f426a-4d01-738d-9cda-a38d664e6506",
            "wording": "Silhouettes fluides",
            "brand": {
                "id": "019f426a-4d01-738d-9cda-a38d664e6506",
                "wording": "Maison Guillemette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-801d-717d-8818-d1b429acb7cd",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Silicium Marin",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9497-7079-a9a5-889c73484ba7",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Silicone Solid Cap",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7a72-710a-9aef-ebff0b68ddaa",
            "brand_id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "Silk Blouse",
            "brand": {
                "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
                "wording": "DAKS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7aef-73e9-96fa-076caa6dc865",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Silk Blouse",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b97-73ef-bbfc-fd22846aa900",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Silk Blouse",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78b3-730e-ad62-28ba04124b3f",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Silk Crepe Blouse",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b12-7319-9071-fe1767dde593",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Silk Scarf",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a54-722a-8209-51a120b9f28c",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Silk Scarf",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78f0-739e-a2ea-ef0025bb9e17",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Silk Scarf",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b9d-7326-98d6-c69bdcdaa185",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Silk Shawl",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ae8-7015-9e09-e9e352422616",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Silk Slip Dress",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7534-735a-b5eb-e73ca5741771",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Silk Square",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9243-71fa-a550-85083cd6bf40",
            "brand_id": "019f426a-922a-7208-9747-41966d143d2a",
            "wording": "Silver",
            "brand": {
                "id": "019f426a-922a-7208-9747-41966d143d2a",
                "wording": "Asics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-799b-72c6-b5ab-f63ce38c85e8",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Silver Ridge",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79ca-736d-b8db-67c2e487022e",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Silver Ridge Convertible Pant",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4f26-7118-9c04-8411cb8d347d",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Silveta",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6213-72ff-a9cf-2f59ba209c8f",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Simba",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7495-731f-b667-c456753c08d4",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Similicuir",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5375-7220-8f09-4444ab7dfa95",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Simon",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-576e-7044-a11b-d545bc84aa4c",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Simple",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8762-704d-8769-b7bf9ccf22e9",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Simply-Fi CVS C10DG-47",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7718-73f2-9189-7557fa760c24",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Single Knee Pant",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-50ee-70c9-b105-862fcb332c3f",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Singles sat",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-88af-7257-8c93-000ce607bdeb",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Sion Pull-Out",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9518-71a2-96c7-8127e2edd7cf",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Sioux 800 SYN",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-88cb-73ee-b600-45fe8db3e9e8",
            "brand_id": "019f426a-88b8-707c-b83e-ec2e993e9428",
            "wording": "Siphon Coffee Brewer",
            "brand": {
                "id": "019f426a-88b8-707c-b83e-ec2e993e9428",
                "wording": "KitchenAid",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7c51-7370-b20b-f50f6fd1d69d",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Sirena",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8e41-73ed-b86d-781aceeff0e9",
            "brand_id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
            "wording": "Sirocco",
            "brand": {
                "id": "019f426a-8e38-7171-aaa0-583d4fb7c76f",
                "wording": "Airstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4e1d-738d-bfa6-7b5e46c37e67",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Sirène",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7ffd-710b-9e40-af1a415c596c",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Sisleÿa L'Intégral Anti-Âge",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8008-707c-b81a-c2c0b0ef292f",
            "brand_id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
            "wording": "Sisleÿa Le Teint",
            "brand": {
                "id": "019f426a-7ffc-72da-b31f-0ff5a4dc47c4",
                "wording": "Sisley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5103-70bf-9950-bdab7ce61915",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Situ Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5149-70cd-8e37-4c81e18f2689",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Situ Ring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5d91-710b-8d80-b4929b7c069a",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "Situationist",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5423-736a-bf9a-398e88a75c24",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Sixtine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-691e-702a-b18b-142328cdd24e",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Skater",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b61-7090-bc34-d03db7b5e0d5",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Skater Jeans",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4c0b-70cb-a700-c6fe0de0d527",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Skeleton",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-9454-72db-bf52-dc7b94f68a50",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Ski Jacket Fiss 2",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7160-7217-8166-a3f555a3d6a7",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Ski Pants",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9456-7371-be54-34c08a0a42f6",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Ski Pants Pinzgau",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66c2-7161-9ba1-ec9cc5d78ad3",
            "brand_id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "Skin",
            "brand": {
                "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
                "wording": "Swatch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8101-7392-b07a-252c4721b54d",
            "brand_id": "019f426a-80fe-70ac-8078-326a880c7810",
            "wording": "Skin Caviar",
            "brand": {
                "id": "019f426a-80fe-70ac-8078-326a880c7810",
                "wording": "La Prairie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81e4-7122-b6ca-5db76598f259",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Skin Clean",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7f74-70d4-9aa0-f53a6da1edaa",
            "brand_id": "019f426a-7f66-738e-9325-b329d300d08d",
            "wording": "Skin Oxygen Cooling Gel",
            "brand": {
                "id": "019f426a-7f66-738e-9325-b329d300d08d",
                "wording": "Biotherm",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8012-7335-a5ea-096023c79dbb",
            "brand_id": "019f426a-8009-733a-a71a-79bebdae1ab1",
            "wording": "Skin Retouch",
            "brand": {
                "id": "019f426a-8009-733a-a71a-79bebdae1ab1",
                "wording": "Talika",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7cf8-708f-bdcd-0759111e2af7",
            "brand_id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
            "wording": "Skinny",
            "brand": {
                "id": "019f426a-7cf0-71b8-8558-446c4fdcf9be",
                "wording": "Faith",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ea5-703c-8d57-d6722a2cc16f",
            "brand_id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
            "wording": "Skinny Fit",
            "brand": {
                "id": "019f426a-7ea1-7389-9f0b-a6c7f37f6ca1",
                "wording": "Iceberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7b27-70f7-b3ad-97ef8b5432f9",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Skinny Jeans",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-764e-7152-aec6-591763e02c2a",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Skinny Jeans",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-794d-7011-9591-fadaa18d72de",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Skinny Jeans",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7acd-7387-8599-f977b10a9684",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Skinny Jeans",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-751b-7197-bf70-88dfc263e801",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Skinny Jeans",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7202-7271-a2f2-d15c463a09ca",
            "brand_id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
            "wording": "Skull",
            "brand": {
                "id": "019f426a-71ff-73f8-8f8e-5c2acca4eecc",
                "wording": "The Kooples",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-92d0-70a5-80ab-d4be269cd09e",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Sky Kaha GTX",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92d3-71a9-94b8-2dfa12669081",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Sky Toa",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-663c-7305-b0a4-b4244a17b8f8",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Sky-Dweller",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7447-7228-a3a3-b3e93c1bc064",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Skylar",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-65f6-71c1-86d7-5120013fc41b",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Skylark",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b50-735b-b923-fa8d01fea178",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Sleep Tee",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7bcd-718b-bac8-84692cf71629",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Sleeve Top",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8a2d-72dd-8cfa-e9ca13114d2c",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Slide",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-7de6-730e-a7e5-8368e968de15",
            "brand_id": "019f426a-7dde-7074-a915-515a9b7a4f53",
            "wording": "Slide",
            "brand": {
                "id": "019f426a-7dde-7074-a915-515a9b7a4f53",
                "wording": "Golden Goose Deluxe Brand",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6f38-70e2-b153-ba11f97297af",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Slide Slim",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f14-7217-87c1-909d7b28cd5b",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Slim",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7e2c-7193-8c86-f0b19128b94b",
            "brand_id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
            "wording": "Slim",
            "brand": {
                "id": "019f426a-7e28-728f-bff1-63a7d4b26a3f",
                "wording": "Havaianas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-69a5-72e3-bc95-866d84fd5619",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Slim",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7cc4-720f-9506-991680317d99",
            "brand_id": "019f426a-7cc1-70b1-a38d-317738454f29",
            "wording": "Slim Fit",
            "brand": {
                "id": "019f426a-7cc1-70b1-a38d-317738454f29",
                "wording": "Eton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ed7-725c-9271-f7e46d14e789",
            "brand_id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Slim Fit",
            "brand": {
                "id": "019f426a-7ecf-7389-8f01-6e4933499394",
                "wording": "Jack Wills",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7650-71ad-856d-24641b541334",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Slim Fit",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7f16-724b-9677-e3713ebba811",
            "brand_id": "019f426a-7f14-72c0-90f3-865e60a91f50",
            "wording": "Slim Fit",
            "brand": {
                "id": "019f426a-7f14-72c0-90f3-865e60a91f50",
                "wording": "JOOP!",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7667-732e-8fb4-22155fa9a0b4",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Slim Fit Suit",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6d67-7344-8c0c-cfabaa4817a3",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Slim Out",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7a32-73ab-93f1-724004153ff9",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Slim Wallet",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-76ed-72e4-aad7-7564dae65ba7",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Slim Wallet",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-84db-7229-aec6-612a2fb35a76",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Slimforce",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6963-73c4-b159-d2a581ed0933",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Sling",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-68e8-717e-95ce-faf85e6f1441",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Sling",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6c88-7226-9117-a063b9b6f365",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Slingback",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7968-736b-b2bc-77624fff88ba",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Slingback Heels",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b02-73f4-aeb4-24a6d54fb881",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Slingback Pumps",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-794b-72f4-9064-426aff9db11f",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Slip Dress",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7963-7244-96ca-a327af33827d",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Slip-On Sneakers",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ad8-7009-b76a-554c8ca264f4",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Slip-On Sneakers",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7e76-70d3-aa1a-56d6c6837f9a",
            "brand_id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
            "wording": "Slogan Tee",
            "brand": {
                "id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
                "wording": "House of Holland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8041-7188-a82f-28d03bcccd34",
            "brand_id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
            "wording": "Slow Âge",
            "brand": {
                "id": "019f426a-8038-7357-8f38-7fa9b89f34f4",
                "wording": "Vichy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7387-709d-9999-e13ea3740e88",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Slvina Oto Floral",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-615d-73e9-ab37-b895a3f3ef78",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Small",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6b82-70f8-bb91-501c7203ac92",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "Small",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-86d2-72cf-94e9-daef1bebe747",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Small Ball Allergy",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-76e3-710f-a987-1b7d1425fd39",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Small Crossbody",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78ac-717a-a579-b20b16711a83",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Small Woody",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-88a2-7095-8f8f-d7581f2f2307",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Smart Connect",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-875c-7308-85a1-00d19cd3ca8a",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Smart Pro CSO 14105TWME/1-S",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-875f-7139-a3e1-ab52adbbe529",
            "brand_id": "019f426a-8758-70d8-b96a-d1738b0d280f",
            "wording": "Smart Pro CSOH10A2TCEX-47",
            "brand": {
                "id": "019f426a-8758-70d8-b96a-d1738b0d280f",
                "wording": "Candy Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8329-7288-ac26-72341ab2f3a9",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Smart TV",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-93bd-7072-a585-966506cd4ca2",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Smart Traveller Carbon",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5dba-73dd-ae3a-cf3eabba56ff",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Smarties",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7987-7368-8e26-a3e6a100abd2",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Smartphone Accessories",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b0f-704d-919b-a175e6e8795d",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Smartwatch",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5c1a-739b-acd8-f0ad59719932",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Smiley x Mathilde",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5bf7-70b5-9074-49a7705058b8",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Smith",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7f7e-71f6-b5dc-2f469af235dd",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Smokey Stories Eyeshadow Palette",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6c34-718f-bfcb-dd0f05e3c257",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Smooth",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7587-71e1-ab24-ca948a27726c",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Sneakers",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-752f-7351-ac83-9143cd604327",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Sneakers",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7b6c-70b2-b1d6-6cd00d43c550",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Sneakers",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4c93-70c1-89e5-0b64005325ce",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Sneakers \"Bobby\"",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-68d9-7309-b2f8-c709e7b7471b",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Snip",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-5b11-7063-a69d-ce979c8dcd48",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Snoopy",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-79d3-704d-9e1c-148619eeddde",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Snow Gun Pant",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-926e-7358-8387-853321437983",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Snowbound Midlayer",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9470-7047-9a4b-16e82cd32755",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Snowthing™",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-84ee-726d-bbb0-38fb2259f001",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "So Intensive D50404",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7aae-70bd-b08b-cdc8493ea81f",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Soccer Ball",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-55d0-73f6-99dd-002ad96bce1f",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Sofia",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7776-7249-9f4d-94c208659daa",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Sofia",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-66d3-72b3-a988-d2433fe3abf5",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Sofie",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-908d-7330-a547-8a12b8017198",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Soft 500",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-957d-72ca-b7f5-f4c39351e043",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Soft Play Volleyball",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8f7e-7119-a612-c3e264f578b9",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Soft Resist",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9079-71a3-9cbf-9a9980fb1d7f",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Soft Touch",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-702f-7238-8d2f-f3f6b0bbc05d",
            "brand_id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
            "wording": "Soft Trunk",
            "brand": {
                "id": "019f426a-7023-73e0-8b6e-b3b5d39ddb35",
                "wording": "Mark Cross",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7132-7190-b839-215e2e329aaf",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Softshell",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6d78-70c9-9f40-26784eabbb0b",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Soho",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7460-73b1-9bb5-3f38ac0c8c82",
            "brand_id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
            "wording": "Soho",
            "brand": {
                "id": "019f426a-7453-71c2-ac4f-e9463dba9b1f",
                "wording": "Baggallini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7299-732d-8e1e-76e0e4dd2cc1",
            "brand_id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "Soie",
            "brand": {
                "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
                "wording": "Victoria Beckham",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-81ab-73ca-a7c0-83ae62062db2",
            "brand_id": "019f426a-81a4-70ce-8c58-3655343fb469",
            "wording": "Soin Anti-Âge Intégral",
            "brand": {
                "id": "019f426a-81a4-70ce-8c58-3655343fb469",
                "wording": "Lierac Homme",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8296-70fb-acd3-993160bfbf6b",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Soin Capillaire Précieux",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81b2-70d6-a16c-d73f4b9ab860",
            "brand_id": "019f426a-81af-7125-a055-22e2aaff2c80",
            "wording": "Soin Contour des Yeux Anti-Âge",
            "brand": {
                "id": "019f426a-81af-7125-a055-22e2aaff2c80",
                "wording": "Ixage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82a0-719d-af01-bacf369b927c",
            "brand_id": "019f426a-829a-73ca-8d5a-2743d236aceb",
            "wording": "Soin Corps Velours",
            "brand": {
                "id": "019f426a-829a-73ca-8d5a-2743d236aceb",
                "wording": "Kadalys",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8280-705a-a514-f1052e29d75b",
            "brand_id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Soin Nourrissant Coco",
            "brand": {
                "id": "019f426a-827a-734d-be46-40c77ace37a5",
                "wording": "Pura Bali",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5192-7324-9056-a352718a3dbe",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Soin Repigmentant Chatain Glacé",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-518c-7377-ac27-4aa09ed36393",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Soin Repigmentant cuivré Naturel",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7328-73dc-812a-b08cbda69ff7",
            "brand_id": "019f426a-7319-7238-9bb2-fec5b627ce68",
            "wording": "Soin de la peau",
            "brand": {
                "id": "019f426a-7319-7238-9bb2-fec5b627ce68",
                "wording": "Aerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-806d-7255-9b24-1810ac5a1a1f",
            "brand_id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Soin du Corps",
            "brand": {
                "id": "019f426a-8068-7063-bfbd-093dac92f505",
                "wording": "Annayake",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-828d-71e2-9db8-a81228f566c7",
            "brand_id": "019f426a-8288-71b8-a8ac-b70845722edb",
            "wording": "Soin du Corps Tradition",
            "brand": {
                "id": "019f426a-8288-71b8-a8ac-b70845722edb",
                "wording": "Le Petit Olivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8069-7021-bd6d-00dd767c4d2c",
            "brand_id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Soin du Visage",
            "brand": {
                "id": "019f426a-8068-7063-bfbd-093dac92f505",
                "wording": "Annayake",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8149-7398-b59d-9820e22c917b",
            "brand_id": "019f426a-813b-7245-880a-d1047e8549fc",
            "wording": "Soins Capillaires",
            "brand": {
                "id": "019f426a-813b-7245-880a-d1047e8549fc",
                "wording": "Weleda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-810d-710f-adff-90a1075fbfa9",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Soins Corps",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-810e-73f6-9c3f-7f19d9cabd4c",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Soins Mains et Pieds",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-820e-70b2-8abb-fa27be36f058",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Soins des Lèvres",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-80da-714b-b942-09100d3650c8",
            "brand_id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
            "wording": "Soins des Ongles",
            "brand": {
                "id": "019f426a-80cf-7375-b14a-dbe6be3059bf",
                "wording": "T.LeClerc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81d8-7265-b403-027a82b948b0",
            "brand_id": "019f426a-81d4-7077-b134-45f9f78252fc",
            "wording": "Soins du Corps",
            "brand": {
                "id": "019f426a-81d4-7077-b134-45f9f78252fc",
                "wording": "Fleurance Nature",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-81d1-729f-8089-b784a203eda1",
            "brand_id": "019f426a-81cb-71b1-8022-f2c4314b1048",
            "wording": "Soins du Cuir Chevelu",
            "brand": {
                "id": "019f426a-81cb-71b1-8022-f2c4314b1048",
                "wording": "Christophe Robin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-813e-730d-ace7-ab05842af309",
            "brand_id": "019f426a-813b-7245-880a-d1047e8549fc",
            "wording": "Soins pour Bébés et Enfants",
            "brand": {
                "id": "019f426a-813b-7245-880a-d1047e8549fc",
                "wording": "Weleda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8145-7364-9b18-6cd618d0f153",
            "brand_id": "019f426a-813b-7245-880a-d1047e8549fc",
            "wording": "Soins pour le Corps",
            "brand": {
                "id": "019f426a-813b-7245-880a-d1047e8549fc",
                "wording": "Weleda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8140-7096-9d2e-c380f7a765b3",
            "brand_id": "019f426a-813b-7245-880a-d1047e8549fc",
            "wording": "Soins pour le Visage",
            "brand": {
                "id": "019f426a-813b-7245-880a-d1047e8549fc",
                "wording": "Weleda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6a9c-72bb-a9c9-0e8d4be34cd9",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Soirée",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-81f3-722d-9ea1-e353f72b5a52",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Solaire SPF 50+",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8da7-718a-b8d1-79c54263aa6d",
            "brand_id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Solaires",
            "brand": {
                "id": "019f426a-8da2-734a-ba8f-398809cb6407",
                "wording": "Franciaflex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8212-711f-89db-5f7defb66530",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Solaires",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9184-7257-a915-e213d062c77d",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "SolarBoost",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8a33-7068-be4d-c3a4ab7833e0",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Solaris",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6f29-7272-91e0-a4ab55b9fc4d",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Solarium",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-73e7-716c-a61a-3d8040739331",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Sole",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5ac3-7158-afda-a752da9e7757",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Sole",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-56da-7186-8729-3f6897e269eb",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Soleil",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-806b-7324-a2ed-df44855f4b31",
            "brand_id": "019f426a-8068-7063-bfbd-093dac92f505",
            "wording": "Soleil",
            "brand": {
                "id": "019f426a-8068-7063-bfbd-093dac92f505",
                "wording": "Annayake",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7233-72d4-93b6-a06002656d1b",
            "brand_id": "019f426a-7223-7023-bc1b-243b82f68f8a",
            "wording": "Soleil Glow Stick",
            "brand": {
                "id": "019f426a-7223-7023-bc1b-243b82f68f8a",
                "wording": "Tom Ford",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-80cd-72ff-8644-a7b3ff29c89d",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Solid Cleansing Oil",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-935d-72d1-a314-6438938319e8",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Solution",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-53f2-718b-b133-c065466d624e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Solva",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-86ab-72d7-91a9-4d59765fea18",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Sonicare DiamondClean 9000 HX9911/17",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86b0-70d3-99c7-bd0482a33f48",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Sonicare Essence 1 Series HX5911/10",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86ae-7258-903c-e51da2b5b1f3",
            "brand_id": "019f426a-86a2-7065-82d5-039bbded0440",
            "wording": "Sonicare ProtectiveClean 6100 HX6877/29",
            "brand": {
                "id": "019f426a-86a2-7065-82d5-039bbded0440",
                "wording": "Philips",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5889-7205-b7c3-0a9d199556f9",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Sonny",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6a89-7132-bf4f-e27aaf573e23",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Soon",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-773e-736c-901f-b2cb242953c6",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Sophia",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e59-72e9-8e7c-d69e3f48f8d9",
            "brand_id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
            "wording": "Sophia",
            "brand": {
                "id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
                "wording": "Hobbs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-747a-7032-8034-58095d113fb0",
            "brand_id": "019f426a-7465-7187-b785-d1aa02a53e95",
            "wording": "Sophia",
            "brand": {
                "id": "019f426a-7465-7187-b785-d1aa02a53e95",
                "wording": "Ballin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c28-7126-8c2d-fbd23afe6e1d",
            "brand_id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
            "wording": "Sophia Off-Shoulder Dress",
            "brand": {
                "id": "019f426a-7c1e-73d0-af88-6f53527bdab6",
                "wording": "Eliza May Rose",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-776c-709c-8e77-844df30aacc1",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Sophie",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a0b-7084-9707-5c03bbc23925",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Sophie",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-53fd-7086-af43-4f944557b1b1",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Sophie",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7a50-7206-98ba-7b63b384de7a",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Sophie Card Holder",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a27-7352-b622-3bbdb5794139",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Sophie Slim Crossbody",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-75da-7101-9aff-b89252b7794c",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Sophisticated Edge",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6403-7258-8dca-c5fa4c4c1e09",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "Soprano",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-938a-7362-806b-a61b146836f8",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Sorix",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7895-70ff-a79b-c24eefd9b682",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Sorrento",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b04-731b-9ef8-deea15a49a66",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Sorrento Sneakers",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8bca-72d8-9664-cd872e7d4f50",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Souffleurs à feuilles",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-946e-722f-b82d-be6b04318a92",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "SoundTouch™ All Weather™ Glove",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6f59-7236-b8bd-22ffacb55f35",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Souple Vere",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-808c-71c7-a53e-906f947e14d5",
            "brand_id": "019f426a-8083-7030-ace2-5c10ef695684",
            "wording": "Source Micellaire Enchantée",
            "brand": {
                "id": "019f426a-8083-7030-ace2-5c10ef695684",
                "wording": "Garancia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-601d-70ba-b91c-ab6226f96fb1",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Sous Marine",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9115-7079-a750-f2431e294081",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Spaghetti",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-69b6-7317-877b-8ec3cf4c48de",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Spectre",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6936-732f-b9ea-e7bf337cb722",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Speed",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8efa-7143-a14c-15485859ea4a",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "Speedcross",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92cb-7370-a14f-4f2cd9377769",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Speedgoat 4",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5047-714d-ad68-a582662d1e8f",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Speeding",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6648-7147-b0b0-11e91734d18d",
            "brand_id": "019f426a-663f-7380-94b2-06517b63aa0a",
            "wording": "Speedmaster Professiona",
            "brand": {
                "id": "019f426a-663f-7380-94b2-06517b63aa0a",
                "wording": "Omega",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-91f8-703d-a725-d93386604256",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Speedwick",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4b5e-7046-8794-c4123ab0925d",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Speedy",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4be9-7305-b3c9-e62a40b71251",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Spell on You",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5bfb-73be-9681-a2e33b33ac30",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Spencer",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-9138-73ef-a519-73a576a2a6ad",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Spencer",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7404-7219-bf99-4d32cfa4cc01",
            "brand_id": "019f426a-73fd-7086-b1ac-6f436093163b",
            "wording": "Spider",
            "brand": {
                "id": "019f426a-73fd-7086-b1ac-6f436093163b",
                "wording": "Ash",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7848-7234-8412-cdf51b80cd9d",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Spike",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-93bf-7089-b090-0674baaabbe5",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Spin Shark SL",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-734b-7047-8a46-6af734b08711",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Spinna",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-62c8-70e3-91e8-b38d36d7b79d",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Spinnaker 1528",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62c6-7048-94c5-7518e7f38384",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Spinnaker Lady",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-501b-717b-9b6b-a09d0d36c0e9",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Spirale Pop Stripes",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7115-731e-98cb-7cbd1fa3a4b2",
            "brand_id": "019f426a-70e0-718e-8a01-74780b886972",
            "wording": "Spire",
            "brand": {
                "id": "019f426a-70e0-718e-8a01-74780b886972",
                "wording": "Rag & Bone",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9383-709d-90e9-ab8716abdfd9",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Spirit",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-654f-7079-b929-1753dba0898b",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Spirit",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6712-707d-a30d-122967e898f1",
            "brand_id": "019f426a-6709-73b7-833d-0e3813509c15",
            "wording": "Spirit of Big Bang",
            "brand": {
                "id": "019f426a-6709-73b7-833d-0e3813509c15",
                "wording": "Hublot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-63f2-734a-b0e9-74ee355a73a1",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Spirotechnique",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-93b5-702e-aa72-2793cdeea764",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Spitfire",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-951c-73fc-91db-47ec897ae52c",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Splash 20+5",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-56ec-7250-b33d-10d4d2f659f2",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Splatch",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6f17-7222-a065-37fba171538c",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Splendide",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-610e-71f7-b396-01010524a63e",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Sport",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6692-7118-9d4a-8df49de88c5c",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Sport",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-66a9-7331-9380-d81c46738886",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Sport",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9056-72a3-a53a-77bb2888c3bd",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Sport Chocolat",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9054-73d3-a6c3-3726b54a4782",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Sport Citron",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7c4b-719a-8e78-318f3c3a2a29",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Sportive Trentino",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-91d6-73f3-a2bf-c74184fc02e9",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Sportstyle",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-936b-7389-bfa3-9e12c2169c47",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Spot",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7787-710f-9cac-2ee9106e8a3d",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Spot Mono",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91c5-7185-9cfb-fe05a447de16",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Spotlight",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-81fe-7307-b82b-2c0d404fa495",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Spray",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7078-71f9-8356-0abc19b6d108",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Spray City PA",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5177-7041-85ff-20599b43d66b",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Spray structure",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6c5c-73a8-b60f-3a50c951621a",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Spring 2024",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-877e-71ae-a754-c325041c5367",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "Sprint evo SE71SE40011",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-92e7-709a-81e3-0ccf99d708a1",
            "brand_id": "019f426a-92d8-7096-9dd1-5628034f9abe",
            "wording": "Sprite",
            "brand": {
                "id": "019f426a-92d8-7096-9dd1-5628034f9abe",
                "wording": "Icebreaker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94f2-7272-a26c-26ab53c3a063",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Squam Lake Stretch Chino Pants",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6c25-7124-8bb6-16c6956db93e",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Squeeze",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5adb-7163-8641-cad826a0d893",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Sriphala",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5a4d-7027-80c4-d7528fe761e1",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Sriphala topaze",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-57ab-7206-9ac2-54d66206184a",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "St Jacques en Nacre",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6a9e-71ae-849c-80e92a2843f0",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Stacked",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9575-72ab-8b51-64cac3b7137f",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Staff D9 Irons",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9576-70dd-a1e1-ad22e7b610b4",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Staff Model Golf Balls",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6228-719a-bf48-a55856c02749",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Stan",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9195-719c-8e3a-d74034c8ebb5",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Stan Smith",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6c95-72b5-8dfb-41349d52fd11",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Stanton",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5c08-7071-9930-d1f1ee6c7814",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Star",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7841-7078-987c-c7339d7b9eeb",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Star",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7857-72de-a491-7692c2ee14a6",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Star Aviators",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-785b-731a-a0db-4b744f409412",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Star Print",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4b8e-70cd-b012-29fbb8e3b701",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Star Trail Ankle Boots",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7852-705a-8a25-c538f3ab22af",
            "brand_id": "019f426a-783d-702f-b8ea-35f6889e44c3",
            "wording": "Star Zip Wallet",
            "brand": {
                "id": "019f426a-783d-702f-b8ea-35f6889e44c3",
                "wording": "Chiara Ferragni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5dca-7331-8249-3a69731060c5",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Stardust",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5bd6-70fd-9475-219906f0569c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Stardust",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7de4-7014-97af-51e437b957ec",
            "brand_id": "019f426a-7dde-7074-a915-515a9b7a4f53",
            "wording": "Starter",
            "brand": {
                "id": "019f426a-7dde-7074-a915-515a9b7a4f53",
                "wording": "Golden Goose Deluxe Brand",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7521-7189-be95-71299c77d530",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Statement Earrings",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bb2-7318-986c-f501e59e6bc8",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Statement Necklace",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-712d-7194-9422-71671d446277",
            "brand_id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
            "wording": "Station 2019",
            "brand": {
                "id": "019f426a-7116-7264-b2fe-7c94a80bd31a",
                "wording": "Roksanda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7fdd-73d2-b2e5-c7393572ec48",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Stay Glossy",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fd6-72c8-95b2-6efd194ac659",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Stay Matte",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8b4b-727f-ad23-324ace93053f",
            "brand_id": "019f426a-8b41-703c-914e-8a6f0d89df67",
            "wording": "Steam Fresh Power Plus",
            "brand": {
                "id": "019f426a-8b41-703c-914e-8a6f0d89df67",
                "wording": "Vax",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8510-703d-a0b4-07e2d6ea2994",
            "brand_id": "019f426a-8502-7064-ada2-15049a0e0542",
            "wording": "Steam Iron DW9230",
            "brand": {
                "id": "019f426a-8502-7064-ada2-15049a0e0542",
                "wording": "Krups",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7678-738a-a44d-2529322e1d4a",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Steel Watch",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6225-7219-9508-07afcbd9dda5",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Steeve",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-73ed-72a8-a020-541de202e0d9",
            "brand_id": "019f426a-73e2-71df-a370-3f77d73ac012",
            "wording": "Stella",
            "brand": {
                "id": "019f426a-73e2-71df-a370-3f77d73ac012",
                "wording": "Antonello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7c11-73b7-b63e-8406b4a4dc8f",
            "brand_id": "019f426a-7c09-7252-be95-424411fe45da",
            "wording": "Stella Wristlet",
            "brand": {
                "id": "019f426a-7c09-7252-be95-424411fe45da",
                "wording": "Elena Ghisellini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-511b-72be-8cd4-78c90d2320d1",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Stereotype",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-735f-72f7-a866-6ea642453b0d",
            "brand_id": "019f426a-7346-72b4-a22a-383499e7ea57",
            "wording": "Stessy2.0",
            "brand": {
                "id": "019f426a-7346-72b4-a22a-383499e7ea57",
                "wording": "Aldo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-74b5-7195-ac21-95973b9d9d64",
            "brand_id": "019f426a-74aa-7034-90c0-bf055789f4c2",
            "wording": "Stina",
            "brand": {
                "id": "019f426a-74aa-7034-90c0-bf055789f4c2",
                "wording": "Becksöndergaard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-68f6-7005-a33a-a2012183f6a0",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Stingray",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-69ad-73fb-9ccd-a6e6ccf3d8d0",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Stitch",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6220-73ec-86a8-0d81abfa8be3",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Stockholm",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-54bb-7389-a788-b4ff16480d96",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Stones Pendantes",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8f1a-7052-a5e8-57e1d560c817",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Stop",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9369-72c5-ae5f-75080b67ae36",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Storm",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7ee5-7107-ad94-1649b63741e8",
            "brand_id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Stormlock",
            "brand": {
                "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
                "wording": "Jack Wolfskin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6e52-723c-a44f-e2a8c0bce92c",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Strand",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7902-716a-83d9-0714985c9b9a",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Strappy High Heel Sandals",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6d4c-70c4-8871-a78de2b97986",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Strass",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7d6f-718c-9634-ca1b50a7f38e",
            "brand_id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
            "wording": "Strass",
            "brand": {
                "id": "019f426a-7d69-7257-a880-6ac7f41eb1ac",
                "wording": "Gedebe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5113-71f5-8deb-5ef541ac3bd9",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Strata",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50f0-72a0-b598-4d1379566668",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Strata Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-713c-7343-b971-30cb49508a45",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Strato STR",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-79f5-70c3-9d50-fd8fb59d7716",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Straw Hat",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77d8-715e-8219-76ecb045016a",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Strawberry",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91ce-7080-b561-d8d8c2d015c8",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Streaker",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-608a-7204-a84b-6317ab195b55",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Streamliner Skeleton",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-605c-70e5-a0d4-804ea03d6136",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Streamliner Urban",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-608e-72c0-8405-24ddcf600167",
            "brand_id": "019f426a-6058-728e-805e-722197a15832",
            "wording": "Streamliner Urban AUTO",
            "brand": {
                "id": "019f426a-6058-728e-805e-722197a15832",
                "wording": "Briston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-75d8-71ab-b030-71fe6aa4918a",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Street Style",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-91fa-71e0-9bc9-d12abf894f94",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Strength",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-68cc-7273-ab77-6534458d1bc9",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Stretch",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6a01-7193-a32c-985e5de77604",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Stretch",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6785-73df-b749-9f5c269323ab",
            "brand_id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
            "wording": "Stretch",
            "brand": {
                "id": "019f426a-675a-724f-b5af-b9e491f9a9ae",
                "wording": "Gucci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7e7e-7165-9c73-632758629f75",
            "brand_id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
            "wording": "Stripe Mini",
            "brand": {
                "id": "019f426a-7e72-7323-8e3a-82b91a518c1c",
                "wording": "House of Holland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7daf-71bf-adc9-bb163bb70d67",
            "brand_id": "019f426a-7dab-7302-a31e-9b10153c2998",
            "wording": "Structuré",
            "brand": {
                "id": "019f426a-7dab-7302-a31e-9b10153c2998",
                "wording": "Giani Bernini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6c99-7134-8407-bc4e5cbc81d8",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Structuré PM",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7da7-716e-88a1-ef17b6d6bfcf",
            "brand_id": "019f426a-7da2-7214-a498-c984102528bc",
            "wording": "Structurée",
            "brand": {
                "id": "019f426a-7da2-7214-a498-c984102528bc",
                "wording": "Gianfranco Ferré",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6ebe-70e0-93e3-1df61609ab2e",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Stuart",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7bb8-7208-8f28-3a8680738c2e",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Stud Earrings",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-790a-73e1-8128-080b083f3f6a",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Studded Ankle Boots",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76f6-7236-9290-349cf5fe1527",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Studded Belt",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-77a9-7325-8e25-a78e338a86bc",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Studded Belt",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6bc2-70ce-af4f-81cbafc51ec1",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Studio Soft",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-941c-72f2-b428-c108f59bda92",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Stuff Sack",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8c66-732a-8904-056f981eac29",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Styling Comb",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-80be-7018-ad8d-f970b25716f9",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Stylo-Expert Click Stick",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-84de-702c-b89c-b9732bd2f180",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Subito",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84fd-703a-ab67-11baed09d858",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Subito Select CM360811",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7fd0-73d6-b410-532d5dcbfcf2",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Sublime Curl",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6630-7391-beb8-94e12b305140",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Submariner",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6733-7203-a3d4-535f31a10206",
            "brand_id": "019f426a-6729-7222-aa9d-873696a39660",
            "wording": "Submersible",
            "brand": {
                "id": "019f426a-6729-7222-aa9d-873696a39660",
                "wording": "Panerai",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-694c-7183-84a5-9f5fe19837bf",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Subway 25 MM",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-48e6-727c-915d-83ba6d4386e5",
            "brand_id": "019f426a-48e2-730d-9de5-fd7a50701704",
            "wording": "Success",
            "brand": {
                "id": "019f426a-48e2-730d-9de5-fd7a50701704",
                "wording": "Fred",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9179-7054-a5e4-49344930afcf",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Suede",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-790c-7002-bfd9-16e2d6cbcbd2",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Suede Booties",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a5b-72f7-8680-fece608ea213",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Suitcase",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-759a-705c-a37d-bedf5f322fb8",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Suitcase",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5be3-73aa-8ca0-837c7a6e6b4e",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Sullivan",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e36-7091-a7a8-1069cd82664f",
            "brand_id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
            "wording": "Sullivan",
            "brand": {
                "id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
                "wording": "Hayden-Harnett",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-510d-71af-994c-2e531d21bb35",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Summa",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8098-723b-bd96-c6af591549c2",
            "brand_id": "019f426a-8097-7039-a438-59c6c44679b3",
            "wording": "Sun Care",
            "brand": {
                "id": "019f426a-8097-7039-a438-59c6c44679b3",
                "wording": "Patyka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7bac-73dd-930f-30c2e794a4cd",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Sun Hat",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8187-7378-8d55-71aeaab7b19e",
            "brand_id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "Sun Protection",
            "brand": {
                "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
                "wording": "Eucerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7fb0-738b-ba29-240788510d95",
            "brand_id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
            "wording": "Sun Sensi",
            "brand": {
                "id": "019f426a-7fa4-7226-98e7-8d0226e9203e",
                "wording": "Payot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fb6-719e-83f0-b5e5cbbd6920",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Sun Solution",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7d31-72f8-9561-700d98e1bfff",
            "brand_id": "019f426a-7d29-71a5-920d-8c161765a592",
            "wording": "Sundae",
            "brand": {
                "id": "019f426a-7d29-71a5-920d-8c161765a592",
                "wording": "French Connection",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-69f3-71d2-91df-1bf6c55ca991",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Sunday",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ed9-7080-be50-cd1f3c0bf344",
            "brand_id": "019f426a-7ecf-7389-8f01-6e4933499394",
            "wording": "Sundress",
            "brand": {
                "id": "019f426a-7ecf-7389-8f01-6e4933499394",
                "wording": "Jack Wills",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-74fb-72c4-a5a8-a17c6242c127",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Sunglasses",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a9b-70b8-bd2b-8c8c34a386c2",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Sunglasses Case",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-805f-71b6-a132-b3422331170d",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Sunissime",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5df0-72b4-8f65-9a665d364355",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Sunlight",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-61ba-72ff-a78c-7c6e5a43fa2c",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Sunny",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5039-71b5-97bb-31ac42ed8743",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Sunny Side Up",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7f4f-73aa-95b4-7ae6c34029e8",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Sunscreen",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-56d3-71ea-8b16-b52e37d17d96",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Sunset",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5b6a-723f-8c16-2742f225e449",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Sunset",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e1d-71b4-aeed-ce37b7161a17",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Sunshine",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-689f-733c-b284-88ff925c4450",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Sunshine",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-64a9-7353-8e4d-5a1e28c0f897",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "Super Compensator",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-629a-702e-b97e-d8d169f9e7ca",
            "brand_id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
            "wording": "Super LUNE",
            "brand": {
                "id": "019f426a-628e-736b-9f68-ddd0ef0b0b21",
                "wording": "Louis Moinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7f99-7331-8491-0559a499c46c",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "Super Restorative",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-927a-704c-b91b-e72eb3834394",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Super Trident GTX",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-84e6-7122-89a5-86365fc1e9dd",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Super Uno",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7eea-71d7-80f2-c0d5c313683b",
            "brand_id": "019f426a-7ee8-7052-8691-e7e5c221b480",
            "wording": "SuperBreak",
            "brand": {
                "id": "019f426a-7ee8-7052-8691-e7e5c221b480",
                "wording": "JanSport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6959-73d3-8691-996387ddeca2",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Superbusy",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8f7a-7163-b918-fe8f72267b96",
            "brand_id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
            "wording": "Supergrip+",
            "brand": {
                "id": "019f426a-8f79-7276-a8be-d7e3fcc6a7f1",
                "wording": "Uhlsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6013-71dc-9c29-9e427b19cb47",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Superman",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-4e5e-7232-860f-354cf20ecd7d",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Supernova",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6704-70b9-a8d2-7714709a05ce",
            "brand_id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
            "wording": "Superocean",
            "brand": {
                "id": "019f426a-66fa-7312-bfd9-a11a8fd28825",
                "wording": "Breitling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-86e1-716b-9f2f-58dfc037ed9a",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Supersonic",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86e2-70a8-8b6e-fd7fd0eb6a3b",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Supersonic Professional",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86e4-722e-86aa-327d453086f1",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "Supersonic Special Edition Gift Set",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9196-73ba-bce9-b5858a9371af",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Superstar",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7dea-728e-a157-446ef6655cb9",
            "brand_id": "019f426a-7dde-7074-a915-515a9b7a4f53",
            "wording": "Superstar",
            "brand": {
                "id": "019f426a-7dde-7074-a915-515a9b7a4f53",
                "wording": "Golden Goose Deluxe Brand",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8061-7353-995c-c9b82b37a451",
            "brand_id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
            "wording": "Supra Radiance",
            "brand": {
                "id": "019f426a-8057-70d3-8f04-3706a05ee1a4",
                "wording": "Lierac",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-85d6-73be-866d-6054c5b0c32f",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Supreme Care FSCR 10432",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85d1-738c-b87e-f7b6daebc6d4",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Supreme Care HSCX 80421",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85cd-7259-a3ae-ba1569e94c8b",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Supreme Care HSCX 80424",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85cb-7197-a3af-057d22992533",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Supreme NoFrost WQ9I MO1L",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6b47-72f2-b244-37da5d281304",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Supérieure Lana",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4bcd-728d-89e9-13d63984708e",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Sur La Route",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-9339-7274-9279-cdbbe295ec50",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "SurfSilk Mikey Arch 19\"",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-54ef-73f6-9993-70bfc2d07fa4",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Surfer",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-93a2-7381-8197-66d0658e13e0",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Surge",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-939a-736d-af16-fef19a1e27b9",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "Surge grip",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9398-7215-85f3-c547057c1e75",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "Surgrip PU Super",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9352-73e0-bc9e-bc0b2325e334",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Surpantalon DNA 3 Couches Unisexe",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6196-73bc-afbc-631c306a074a",
            "brand_id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "Surpiqure",
            "brand": {
                "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
                "wording": "Dodane 1857",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6e45-7198-a3b2-ede26c3bd47b",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Survey",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a40-7135-a020-a36c3414b3dc",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Susan Shopper Tote",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-78c3-701a-983c-c3b877440b48",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Susanna",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7bd8-7034-8847-f952e3e11b37",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Sustainable Espadrilles",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-92fa-7305-bf3a-c675e69114b9",
            "brand_id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
            "wording": "Sutro Lite Patrick Mahomes II Collection",
            "brand": {
                "id": "019f426a-92f6-718e-b02d-b70ae03b1fa4",
                "wording": "Oakley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-55d9-7338-b033-1ab23439d06e",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Suzanne",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5ba7-7224-b809-e61a66acc5a0",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Suzanne",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5340-736c-9ac2-d600630539bc",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Suzon",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4da8-72ab-8f94-7aa027ee4ca7",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Suzon",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-68e3-705d-8f77-f6320788bc37",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Swan",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7ac0-71db-b1de-d1a547b27235",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Sweater",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-752d-729d-8434-53e743908480",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Sweater",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-75a8-713c-9591-a8898d7a0a45",
            "brand_id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
            "wording": "Sweater",
            "brand": {
                "id": "019f426a-75a2-7098-af2f-868b47bf4b8f",
                "wording": "By Malene Birger",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7c35-7002-b5f7-a8bb116ce5d6",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Sweatshirt Prado",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-489b-70bb-9526-4c36a6ccfb51",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Sweet",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-48a3-7299-8296-6d1451d28220",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Sweet Alhambra",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-54ea-7303-85ef-b7c40856cf8e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Sweet Heart",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7ccb-725a-81d9-955ebf144732",
            "brand_id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
            "wording": "Swift",
            "brand": {
                "id": "019f426a-7cc7-71b7-88bc-f8149e7186b5",
                "wording": "Every Second Counts",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9081-7173-94e7-d5eb80efb012",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Swim Pro",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5c45-7113-8486-b0d7316aefaf",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Swing",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8105-70b8-9abe-922bf2d73ae5",
            "brand_id": "019f426a-80fe-70ac-8078-326a880c7810",
            "wording": "Swiss Ice Crystal",
            "brand": {
                "id": "019f426a-80fe-70ac-8078-326a880c7810",
                "wording": "La Prairie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6134-7011-94cc-608514547152",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Swiss Icon",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8c57-7308-8294-69f1246eb7b3",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Swiss Light 3300",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c53-720b-9315-9958748a95ab",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Swiss Metal Master",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c58-721e-a424-13164d6a587b",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Swiss Nano 9000",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-62cc-7332-ab5f-5a7d916063a9",
            "brand_id": "019f426a-62c4-720a-975b-6bf5df2ab482",
            "wording": "Swiss Reverso",
            "brand": {
                "id": "019f426a-62c4-720a-975b-6bf5df2ab482",
                "wording": "Jean d'Eve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8c5c-7383-b8b5-98af6d3b9cc3",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Swiss Silent Jet 7500",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c55-70a1-9f47-97e0de546ab5",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Swiss Silent Jet 8500",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c5a-7301-9d3a-c34542b12a01",
            "brand_id": "019f426a-8c51-7032-bb80-a3961915f07c",
            "wording": "Swiss X 1000",
            "brand": {
                "id": "019f426a-8c51-7032-bb80-a3961915f07c",
                "wording": "Valera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-949c-7117-9cf9-947628fade06",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Switchblade Fins",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-52b9-7366-adac-152c53e2800d",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Sybil",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-53c8-72e8-9797-11ddcde4b8fa",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Sylvestre",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dd9-7145-bf4b-3d7a90fe6ca5",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Sylvia",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4906-73e3-aad0-027093e0758e",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Symbole",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7566-7001-b15b-ecc720e2664f",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Sympatico Backpack",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7571-71d2-af97-9bfff2680d64",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Sympatico Expandable",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5ffd-71ef-90d8-dd4f0afb6104",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Symphony",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-82ad-7367-911e-0c2cd58d7b92",
            "brand_id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
            "wording": "Synergies pour Diffusion",
            "brand": {
                "id": "019f426a-82a7-7061-81aa-f0cc8afbe8e0",
                "wording": "Puressentiel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-94b8-7348-af8e-2e8c03fb95f7",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Syrround Down Vest",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8cf7-71c5-866e-6b33fccffa72",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Systèmes audio portables",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8314-72b8-a987-89fc6fdacfff",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Sèche-linge",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-835c-73ee-88f8-09c14371623c",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Sèche-linge",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-833c-71bf-baad-c4de2c33efdb",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "Sèche-linge",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-812c-7311-87e8-5ae42ec7d947",
            "brand_id": "019f426a-8125-7158-91db-f5e5d523d7b7",
            "wording": "Séborégulateur",
            "brand": {
                "id": "019f426a-8125-7158-91db-f5e5d523d7b7",
                "wording": "Topicrem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5ffb-72c6-8303-e846e20ed41c",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Séduction",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5f25-7321-9578-5df6192b6e8f",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Séduire",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8378-7009-87e1-a54d0fa174f5",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Série 4 WAN28208FF",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8373-71fa-b87c-51ebe4585753",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Série 6 WAJ24006FF",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8376-73d7-84d2-da7d8901e876",
            "brand_id": "019f426a-8371-7226-9b6a-50d264a67e60",
            "wording": "Série 8 WAU28S00FF",
            "brand": {
                "id": "019f426a-8371-7226-9b6a-50d264a67e60",
                "wording": "Bosch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6547-7110-8c5b-e8fc4c7eb848",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Série D'ART",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-9086-719e-a442-40b7105b212a",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Séries de Clubs",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-810a-7202-94d9-549c0859d202",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Sérum",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81b6-714a-b748-c72d269f62fe",
            "brand_id": "019f426a-81af-7125-a055-22e2aaff2c80",
            "wording": "Sérum Anti-Âge Intensif",
            "brand": {
                "id": "019f426a-81af-7125-a055-22e2aaff2c80",
                "wording": "Ixage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8178-73a5-b5bf-7df7241019d7",
            "brand_id": "019f426a-8171-726a-a030-2570fad0321d",
            "wording": "Sérum Rose & Aloe Vera",
            "brand": {
                "id": "019f426a-8171-726a-a030-2570fad0321d",
                "wording": "Akane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-804b-72ef-b26d-063d6ab896ae",
            "brand_id": "019f426a-8047-722a-bf5e-8f317a0a143b",
            "wording": "Sérum Végétal",
            "brand": {
                "id": "019f426a-8047-722a-bf5e-8f317a0a143b",
                "wording": "Yves Rocher",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8111-7142-93aa-006bfb448d2e",
            "brand_id": "019f426a-8107-738a-ae89-222da3d19c33",
            "wording": "Sérums",
            "brand": {
                "id": "019f426a-8107-738a-ae89-222da3d19c33",
                "wording": "Polaar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7c71-727b-aa60-4ae00c23cbea",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Sérénité",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-82c8-724f-8ac9-1c4d88cb42d3",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Sérénité Inca",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82e6-70a8-a57c-97b54f987322",
            "brand_id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Sérénité au Quotidien",
            "brand": {
                "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
                "wording": "Elixir & Co",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6ac4-7049-8f98-c1b82d371b72",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "T Monogram",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6cd0-7044-a478-0551c996f6fa",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "T Timeless",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-938f-7050-87a2-0d57e0fd2470",
            "brand_id": "019f426a-938b-7106-9605-0ac254322059",
            "wording": "T-120 FF",
            "brand": {
                "id": "019f426a-938b-7106-9605-0ac254322059",
                "wording": "Karakal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-661f-708b-a396-3c5a7b9c9aad",
            "brand_id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "T-Classic",
            "brand": {
                "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
                "wording": "Tissot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7241-73de-a1e6-083cc3914e60",
            "brand_id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "T-Evolution",
            "brand": {
                "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
                "wording": "Trussardi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6620-730b-a23f-4de08d04505a",
            "brand_id": "019f426a-661c-7233-a653-30d5a4e64ffe",
            "wording": "T-Sport",
            "brand": {
                "id": "019f426a-661c-7233-a653-30d5a4e64ffe",
                "wording": "Tissot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b24-7266-bf69-d55761a7ae72",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "T-shirt",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6b9d-700b-b4dd-6c156ea604fd",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "T-strap",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-85e1-7042-b2a7-57fe91bcf873",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "T1 Classic",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85df-711e-81b6-7d19b7147fd4",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "T1 Heat-pump dryer",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-93c9-73f8-856d-e50d182e8735",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T2 Midweight Hiker",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93c7-721f-9f7d-07f95b6c2275",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Light Hiker",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93d2-73f2-8413-cbb76c738e6f",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Light Shorty",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93d1-70be-8f00-b7af2f6acf81",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Light Trail",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93cb-7387-a120-19accd3d6da5",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Ski Light",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93cc-700b-b580-a0873551c386",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Ski Midweight",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93ce-731e-baf0-6d923f44b61c",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Trekking Expedition",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93cf-717d-8ae9-59da070a0fd7",
            "brand_id": "019f426a-93c6-737a-8d92-78c35defe2fe",
            "wording": "T3 Trekking Midweight",
            "brand": {
                "id": "019f426a-93c6-737a-8d92-78c35defe2fe",
                "wording": "Lorpen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8475-7031-8f40-679a70e4eef5",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "T8DEE862",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8477-7279-bd2f-d500d91e045e",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "T8DEE863",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8479-72ca-a189-2d4031378eef",
            "brand_id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
            "wording": "T8DEE864",
            "brand": {
                "id": "019f426a-846d-723c-b0d7-e4f5be7bc38b",
                "wording": "AEG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8c4e-72f4-849d-a6e630a83d1a",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "TA 424",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5e6d-7105-aff9-8e7d33583a83",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "TAC TAC",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8bbb-702b-824f-be750a74e853",
            "brand_id": "019f426a-8b9b-70a3-9761-5d5063212f37",
            "wording": "TAEG30",
            "brand": {
                "id": "019f426a-8b9b-70a3-9761-5d5063212f37",
                "wording": "Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6e04-7396-bb61-5cb30b5e8fb3",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "TALLY",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5993-7028-95fe-2d6595a80dd0",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "TANNER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8d3e-71ee-b8da-77268b8de7c0",
            "brand_id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
            "wording": "TC250",
            "brand": {
                "id": "019f426a-8d36-73c3-95d4-47b4e0ee2aa6",
                "wording": "Casselin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e0d-71dd-8a7f-8cdd9ef7545b",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "TCH7090ERD",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e0b-71ea-b956-b0c6dbecf17e",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "TCH8093ER",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f92-70ef-b93f-b63d930d387d",
            "brand_id": "019f426a-8f87-7236-b235-8a640ec2389d",
            "wording": "TCX Baja Gore-Tex",
            "brand": {
                "id": "019f426a-8f87-7236-b235-8a640ec2389d",
                "wording": "Michelin Technical Soles",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e73-7340-bb2c-59e7572b1c22",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "TD580",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-85e2-73cd-8044-152af7618099",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "TDB 130 WP Eco",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6e25-7320-89f6-39e4024e6cd5",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "TEAGAN C",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5997-7249-b9a4-9a25b0531a90",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "TEDDY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e2e-7158-8f21-9053aa0f42e9",
            "brand_id": "019f426a-6e26-737a-824d-e2168aae68ce",
            "wording": "TEGRA LITE",
            "brand": {
                "id": "019f426a-6e26-737a-824d-e2168aae68ce",
                "wording": "Tumi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-638a-7223-ba2b-213bb5b5366d",
            "brand_id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
            "wording": "TEMPS DE CRISTAL",
            "brand": {
                "id": "019f426a-6380-70b7-9f0a-e5326822eb6e",
                "wording": "Czapek & Cie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6e80-7363-90be-aca2958511c8",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "TERRY",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8e9c-7117-bb7e-ae5d7be60875",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "THERMO200",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6ed7-71e0-90b3-28884e05d16b",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "THOMASINA",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5627-7229-bc38-23314f36d5c5",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "TIA OR",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-59b0-70fa-8404-177012768047",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "TIBER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e7a-70d0-aa3e-679788aa9656",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "TIGRE ALPHA",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-598c-7178-98bb-49ca63396fc9",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "TIM",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-597e-7229-b1d7-db39d0b85855",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "TIMOTHY",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8ad3-72ed-be6e-d7a6390fbdad",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "TIS633XF",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8ad2-7380-b55f-820a4fbfe9cc",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "TIS640XF",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8acf-7384-b03c-1fbb47820fb0",
            "brand_id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
            "wording": "TIS643XF",
            "brand": {
                "id": "019f426a-8ac5-7392-b404-0f7f74e1912c",
                "wording": "Scholtes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6d39-72c4-900e-af56e653837b",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "TITOLO",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-92c0-716a-90dd-6fa6b563ddf0",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "TKA Glacier 1/4 Zip",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8b33-7090-b460-f3e6e6ae0141",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "TKEK Sense 81F",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-84c6-7069-a1ec-26ed3581439a",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "TL3701 Toast'n Grill",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-934c-713d-b704-870716b973ed",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "TLT X",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8c4d-7159-a3a6-e490e5a99d7c",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "TM 401",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8bf5-7141-a568-b8db383fce7b",
            "brand_id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
            "wording": "TO 2058",
            "brand": {
                "id": "019f426a-8bf3-71e9-a1a3-29859c84fc8c",
                "wording": "Severin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-58ed-70d2-8b74-443255cf870b",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "TOM",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5d3d-7233-9ace-22af7950a80d",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "TOM WOOD",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6189-7345-a114-356ff8b9701f",
            "brand_id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
            "wording": "TONDA",
            "brand": {
                "id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
                "wording": "Michel Parmigiani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6a0b-71f6-ba81-d2cdaf9095e9",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "TOP",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-618e-714d-9ef5-05e3aa540e3f",
            "brand_id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
            "wording": "TORIC",
            "brand": {
                "id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
                "wording": "Michel Parmigiani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6345-7372-a686-7e7e656988be",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "TOURBILLON",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6190-70d6-8565-f0714fc3aedf",
            "brand_id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
            "wording": "TOURBILLON",
            "brand": {
                "id": "019f426a-6187-71a0-aa6e-d882c0c752e6",
                "wording": "Michel Parmigiani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6306-7203-ba55-01385934cd9f",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "TOURBILLON DÉCENNAL",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6314-70be-9590-fbec8cf48b76",
            "brand_id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
            "wording": "TOURBILLON PARALLAXE",
            "brand": {
                "id": "019f426a-62fe-7303-a329-fcc9c6f27b13",
                "wording": "Grönefeld",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6ddc-72b4-babe-22fc13af69b3",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "TOUS LES JOURS",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-87e9-72e7-b014-59e45f7cba0c",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "TP 1414",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87d0-70e6-b427-9fd59324843e",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "TP 1720 Comfort",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87eb-7234-b537-b01378b66343",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "TP 1760",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8c4b-7352-b990-c36cdb7c4600",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "TP 441",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8c3e-7022-b8a3-c032fbb14363",
            "brand_id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
            "wording": "TP 560",
            "brand": {
                "id": "019f426a-8c33-70f7-9b0c-88ded54911bf",
                "wording": "White & Brown",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-87e8-70ac-abba-7af01bbed328",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "TP1720",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9030-71c5-918c-c03bdbdb2f91",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "TR 3.0",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e53-722d-8f86-6f38f9dbe33e",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "TRA-1965",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e4e-714c-aeac-92ff0e46b1e7",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "TRA-2350",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8e55-733e-915b-b968d599912b",
            "brand_id": "019f426a-8e45-7262-967f-0f3e27aaae60",
            "wording": "TRA-2355",
            "brand": {
                "id": "019f426a-8e45-7262-967f-0f3e27aaae60",
                "wording": "Roadstar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4911-73af-92b8-e06207f3aff9",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "TRESSE",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-920b-73f3-a92d-1916d4747ee3",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "TRNR",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7568-722b-b56b-cbf84912a9f8",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "TSA Cable Lock",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6de3-70ce-a41c-f8464088da96",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "TULIPANO",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-832e-710f-afeb-70f439b16217",
            "brand_id": "019f426a-8325-737c-9092-4e3489424478",
            "wording": "TV LED",
            "brand": {
                "id": "019f426a-8325-737c-9092-4e3489424478",
                "wording": "Thomson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-614a-7185-b2fb-3036a735d18c",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "TWINS",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9213-7161-aa40-2278075efb5a",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "TWO WXY",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-76ba-7312-a304-5c0ab7695af3",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "TWS",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8e89-71dd-b637-68611781adae",
            "brand_id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
            "wording": "TX410",
            "brand": {
                "id": "019f426a-8e7d-70c0-9e7b-bb7e3c3fd8e1",
                "wording": "Orva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-72d2-7300-9fae-4b12eb579d70",
            "brand_id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
            "wording": "Tab",
            "brand": {
                "id": "019f426a-72c6-70c2-afa6-6a1bbcc3563e",
                "wording": "Yuzefi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6915-7014-85a3-e1b6ae0bdc50",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Tablecloth",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-836e-72ea-b95b-014a95666fd5",
            "brand_id": "019f426a-8367-715e-aa0e-0097f389b4a4",
            "wording": "Tables de Cuisson",
            "brand": {
                "id": "019f426a-8367-715e-aa0e-0097f389b4a4",
                "wording": "Electrolux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8355-7200-bcf0-336ff7453ad7",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "Tables de Cuisson",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8310-70fe-959a-3f54c08bf598",
            "brand_id": "019f426a-830b-71fd-91dc-dad4677080a6",
            "wording": "Tables de Cuisson",
            "brand": {
                "id": "019f426a-830b-71fd-91dc-dad4677080a6",
                "wording": "Brandt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-758b-70e9-b439-44e623125004",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Tableware",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7165-713c-ad8c-5c7c4b2975f0",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "Tactic Ski Poles",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7da5-703a-b5bb-e03e5f0c62d2",
            "brand_id": "019f426a-7da2-7214-a498-c984102528bc",
            "wording": "Taille haute",
            "brand": {
                "id": "019f426a-7da2-7214-a498-c984102528bc",
                "wording": "Gianfranco Ferré",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8bc9-7311-8499-5ac372a1ff3e",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Taille-haies",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6b0b-7329-887c-9194f92f07c2",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Tailles 2T à 6X",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b08-701f-a843-e7f128dd20d1",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Tailles 2T-7",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b0d-72ab-a7fa-a3bfaf50f31e",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Tailles 7 à 16",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7297-709d-a814-312ea5e86285",
            "brand_id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "Tailleur jupe",
            "brand": {
                "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
                "wording": "Victoria Beckham",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6912-727a-953a-33d8559e9fd6",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Tailored",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7caa-70eb-888d-75c0da4b5c80",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Tailored",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7aee-7089-8021-c71549db2849",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Tailored Blaze",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7579-7019-8bf7-dbb7530ec8cc",
            "brand_id": "019f426a-7575-709e-8162-d9e9473b5e95",
            "wording": "Tailored Suit",
            "brand": {
                "id": "019f426a-7575-709e-8162-d9e9473b5e95",
                "wording": "Brunello Cucinelli",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-84ec-7384-83ba-c7903f24e651",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Talent Pro E44006",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5298-704e-9a64-d58c912cb077",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Talia",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5fdc-711a-b84b-089e7d31ab1b",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Tallia",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7d1d-73fd-a359-2ce2585eb3fd",
            "brand_id": "019f426a-7d16-717d-8efc-af23cfe895fd",
            "wording": "Talons Margot",
            "brand": {
                "id": "019f426a-7d16-717d-8efc-af23cfe895fd",
                "wording": "Frances Valentine",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4c05-71e3-adf5-78ef5cb2c467",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Tambour",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4bfb-730a-a131-6a05a07f3160",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Tambour Horizon Light UP",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4c09-7295-b193-4028b342c2cc",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Tambour Street Diver",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b7c-7294-9cdb-897f4788445b",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Tambourin",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-79cd-73bf-90cd-bdc0d54116ca",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Tamiami II Shirt",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a15-7010-a830-60998a14e76c",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Tan 'Esme'",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a1b-7301-a749-81cc2c20ec61",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Tan 'Frances'",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6043-7123-96df-c605be3e59e4",
            "brand_id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
            "wording": "Tangerine",
            "brand": {
                "id": "019f426a-603a-72f6-9acb-b389b2b6d5e5",
                "wording": "ZRC",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9002-71c2-bf2f-84ab0ac1d9b6",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Tania II",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-741c-7066-acab-0c51a0813988",
            "brand_id": "019f426a-740e-726e-b178-4bbd1f64efb8",
            "wording": "Tanine",
            "brand": {
                "id": "019f426a-740e-726e-b178-4bbd1f64efb8",
                "wording": "Ba&sh",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-483c-731b-a917-f4d1aa0c0f97",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Tank",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9068-72c8-bf08-ea643c98844d",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Tank Top",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7aa6-70d9-8c98-ea2c335f5d44",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Tank Top",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-74e1-701a-ad29-dc50cb823626",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Tank Top",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7ac2-7101-b4a0-fafbf9962214",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Tank Top",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-57ec-7187-b6b0-5b3fd7003fc3",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Tannage",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-57e1-7378-9f0f-797bb86301dd",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Tannage Végétal",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5a3c-713e-a23e-a865fe4288db",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Tanza",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-94e3-70bf-93b5-7b6c0449d74a",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Tanza Kids",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5a9d-720b-85d9-5306d3f08959",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Tapaz",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-64cf-73db-b137-82c1be5961b6",
            "brand_id": "019f426a-64c9-7087-af1c-9494e4f2f611",
            "wording": "Tapez 3",
            "brand": {
                "id": "019f426a-64c9-7087-af1c-9494e4f2f611",
                "wording": "Ressence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64d1-7167-ad45-145b93fea6ac",
            "brand_id": "019f426a-64c9-7087-af1c-9494e4f2f611",
            "wording": "Tapez 5",
            "brand": {
                "id": "019f426a-64c9-7087-af1c-9494e4f2f611",
                "wording": "Ressence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64d3-739d-b4f7-b7b5c3a63692",
            "brand_id": "019f426a-64c9-7087-af1c-9494e4f2f611",
            "wording": "Tapez 8",
            "brand": {
                "id": "019f426a-64c9-7087-af1c-9494e4f2f611",
                "wording": "Ressence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-73b5-7155-8e7d-aacb3c2dd858",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Tara",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6285-7287-9d7e-344ea9615792",
            "brand_id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Tartes",
            "brand": {
                "id": "019f426a-6279-719f-9f35-d5110387906b",
                "wording": "Michel Roux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6865-7204-9f03-ee3451e7aff0",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Tatum",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7c45-70f1-b6c3-7bdf94239349",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Tavolini",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9345-73c4-9660-4914cda7dc85",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Taxer Cord",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9346-738f-b717-57772a41b47b",
            "brand_id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
            "wording": "Taxer Walkshort",
            "brand": {
                "id": "019f426a-9336-7067-aa1a-f1ed6e726a8d",
                "wording": "Quiksilver",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94a0-7092-aaa8-7e71e9b06b56",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Team Kickboard",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94a3-719a-a62e-f87890af7e6b",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Teamster Backpack",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-67fe-71f4-8de7-2721b509b9f0",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Tebby",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67fb-71ce-b253-a21f03875631",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Tebby 20",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-67f0-7142-bbac-9fbfe7cc54ae",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "Tebby 26",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6e40-710e-b79f-fd77886c6b6e",
            "brand_id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
            "wording": "Tech",
            "brand": {
                "id": "019f426a-6e3a-7027-b977-8e56862fdcb6",
                "wording": "Herschel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-69e3-7125-a6e8-11f491a18d2b",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Tech Cassette",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c37-72f3-9e26-0baba3cca08e",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Technical Silk",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9360-7218-b89a-9361d481d586",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Technician",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6cc5-73eb-abf0-3f6be32b431d",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Technique",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-67e2-714e-ac27-d41cf688df77",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Technique",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7f03-7060-afe4-4aeef4167a68",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Ted Baker",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-621b-72de-aa7c-a96d3f9fbe30",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Ted Photoprint",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6219-71e0-afe2-93a5e4d69921",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Ted Tag",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6b7b-73c1-8046-419731bb6dd7",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Teddy",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6207-73d4-8dd7-549c9ac6a977",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Teiss",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-920f-71e6-809b-eb64202e903a",
            "brand_id": "019f426a-9202-7244-b01b-013739fdb0f7",
            "wording": "Tekela",
            "brand": {
                "id": "019f426a-9202-7244-b01b-013739fdb0f7",
                "wording": "New Balance",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-877b-7317-99d2-82b9dc0e494f",
            "brand_id": "019f426a-8779-71b3-8fcb-88debaccd248",
            "wording": "Telios Extra TX50PET",
            "brand": {
                "id": "019f426a-8779-71b3-8fcb-88debaccd248",
                "wording": "Hoover",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-822d-7393-8f5e-051a5ae34a19",
            "brand_id": "019f426a-8219-719a-80b7-aacbc6e3029a",
            "wording": "Tendre Gourmandise",
            "brand": {
                "id": "019f426a-8219-719a-80b7-aacbc6e3029a",
                "wording": "Fun'Ethic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-90e4-7063-9d83-db216fb4213e",
            "brand_id": "019f426a-90e2-7013-b476-b36964968f1b",
            "wording": "Tennis",
            "brand": {
                "id": "019f426a-90e2-7013-b476-b36964968f1b",
                "wording": "Joma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-684f-70cd-8d6d-4bdf571fe250",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Tennis Anette",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-683f-7184-b7b8-8e6178d0ec6d",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Tennis Reine",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-9581-735b-b468-a8d15481253b",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Tennis String",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-686a-72d5-ad43-53cf9fe3b0ea",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Tennis Toss",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8ee3-7011-aa3b-daafd52dfe03",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "Tenues de cyclisme",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94d5-704c-b11d-004de28d33fc",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Terra Fi Lite",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-93e6-736b-94e5-0d8c31827caf",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Terra Pants",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-94d7-70c4-b0e3-1df12a260e13",
            "brand_id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
            "wording": "Terra-Float 2 Knit Universal",
            "brand": {
                "id": "019f426a-94cc-7147-8a85-0c43a6e40e6c",
                "wording": "Teva",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-73fc-724d-a693-a88459dc020a",
            "brand_id": "019f426a-73f3-739a-b301-c48fdc613781",
            "wording": "Terrain",
            "brand": {
                "id": "019f426a-73f3-739a-b301-c48fdc613781",
                "wording": "Ariat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4973-7229-8257-c620f7457d5f",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Terre d'Hermès",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-8a25-7251-8f4d-dafacd96de53",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Teso",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5214-71f4-80d9-de1c15f6d4e5",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Tess",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-78a6-711f-b15e-a477e48888f5",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Tess",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-69ec-7056-8db1-fd4d4ab7822e",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Tex",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ee7-72bd-9280-140752a569fc",
            "brand_id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Texapore",
            "brand": {
                "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
                "wording": "Jack Wolfskin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-70d4-72a7-a3aa-a0d01373c6a0",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Texel",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5505-7211-96bd-2bb65a393641",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Thais",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-54a7-70a5-9ecd-7c7aa6f27bf3",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Thalia",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-777d-7262-94a0-d28477cb23aa",
            "brand_id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
            "wording": "Thank You Script",
            "brand": {
                "id": "019f426a-777a-7343-b5e7-d49c3d8ecd66",
                "wording": "Caroline Gardner",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-65c3-7250-aa89-9d67dc17cd19",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "The Archiwatch",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-71e3-71b7-9676-a704a935191c",
            "brand_id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
            "wording": "The Ascendants",
            "brand": {
                "id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
                "wording": "Status Anxiety",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-71da-7251-b207-62d2e074b875",
            "brand_id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
            "wording": "The Fallen",
            "brand": {
                "id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
                "wording": "Status Anxiety",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7e4a-71e3-9926-e867d8846f2c",
            "brand_id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
            "wording": "The Forester",
            "brand": {
                "id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
                "wording": "Helly Hansen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-85a0-704e-8449-43172060c31d",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "The Frame",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7e83-7367-b094-e9b9e62770ae",
            "brand_id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
            "wording": "The James/Sharp",
            "brand": {
                "id": "019f426a-7e81-72d0-a4cf-183b163f1f28",
                "wording": "HUGO BOSS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-71e0-7321-aba5-93c9db34d0ea",
            "brand_id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
            "wording": "The Lair",
            "brand": {
                "id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
                "wording": "Status Anxiety",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7b19-72d0-a9d0-65bbe5ef9adf",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "The One",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-71dd-73b4-a8ca-53ddfa87773a",
            "brand_id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
            "wording": "The Oracle",
            "brand": {
                "id": "019f426a-71d6-72ec-8c5b-fcdc07b0ca8a",
                "wording": "Status Anxiety",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-54a8-7299-8d6b-70516ade3ec9",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Thelma",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5332-70bb-9e1d-8e8e11735be6",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Theo",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-4dc6-7291-be0c-518a81eb9023",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Theo",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-946d-72a8-9288-454ba7c66952",
            "brand_id": "019f426a-945c-701a-b380-44436cfbfa66",
            "wording": "Thermax® Socks",
            "brand": {
                "id": "019f426a-945c-701a-b380-44436cfbfa66",
                "wording": "Seirus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88e9-7282-ae61-16b1a489bd10",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Thermic",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-9265-71ba-b6e3-9eee3cc3a466",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Thermo Glacier Mid Waterproof",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9257-7353-a963-c44d1b7d53dd",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Thermo Rogue",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92ba-71f2-9e06-5585214a9619",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Thermoball Eco Jacket",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-897e-709f-8682-d897b17f5e5f",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Thermomix TM31",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-897c-712b-82c0-1eb5604ca9cd",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Thermomix TM5",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-897b-732a-a31a-e832d2466289",
            "brand_id": "019f426a-896d-7336-811e-581657b6a5b4",
            "wording": "Thermomix TM6",
            "brand": {
                "id": "019f426a-896d-7336-811e-581657b6a5b4",
                "wording": "Vorwerk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-537b-7283-9c05-e2e68c229853",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Theron",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6a87-7269-b3e8-d809c25e1b54",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Thom",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ab5-7390-9a4b-fea305d3d0fa",
            "brand_id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
            "wording": "Thommer",
            "brand": {
                "id": "019f426a-7ab2-7169-b52d-9370ad0ecc2f",
                "wording": "Diesel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7674-72bd-9c9a-5147d4926769",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Thong",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6904-730a-834e-05eaccd6ec3c",
            "brand_id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
            "wording": "Thorn",
            "brand": {
                "id": "019f426a-68c1-70a1-a0cf-fb13942e6854",
                "wording": "Burberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-91d8-72be-9c99-16a032b2cd7b",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Threadborne",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7406-7374-bc60-d84069082f71",
            "brand_id": "019f426a-73fd-7086-b1ac-6f436093163b",
            "wording": "Thunder",
            "brand": {
                "id": "019f426a-73fd-7086-b1ac-6f436093163b",
                "wording": "Ash",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4dfa-732f-8525-cba259b3c256",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Thurquoise CHLOE",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7feb-7022-838b-c9dcf4166c5a",
            "brand_id": "019f426a-7fe1-7251-9169-76ed76eda992",
            "wording": "Thé Vert",
            "brand": {
                "id": "019f426a-7fe1-7251-9169-76ed76eda992",
                "wording": "Roger & Gallet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-55b8-731d-bc9b-33030b0dc219",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Tia",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-58d9-71e6-ac7e-10de46f12bac",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Tiber",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5133-73fd-bacd-a61bbddd7711",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Tide",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-50f3-73f1-a8bd-9d72638ec2f0",
            "brand_id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
            "wording": "Tide Earring",
            "brand": {
                "id": "019f426a-50bd-7101-8c30-79923a2ddfc0",
                "wording": "Lore Van Keer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7083-73ac-b5dd-932474e54671",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Tie Dye de Jeu",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-91aa-73ba-b3e9-d9bcd48f76dc",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "Tiempo",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-78ae-725a-80b3-665d1db5b1d3",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Tiered Lace Dress",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7445-736d-8c32-135b9806c4e9",
            "brand_id": "019f426a-7443-70e0-aaee-80f32c24d594",
            "wording": "Tiers",
            "brand": {
                "id": "019f426a-7443-70e0-aaee-80f32c24d594",
                "wording": "Avenue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7214-70c3-921f-b86e52a3ae9e",
            "brand_id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "Tiffany Keys",
            "brand": {
                "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
                "wording": "Tiffany & Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7213-71f3-8b19-caabecf3ac25",
            "brand_id": "019f426a-7210-70a0-8c4c-9029a8755df7",
            "wording": "Tiffany Setting",
            "brand": {
                "id": "019f426a-7210-70a0-8c4c-9029a8755df7",
                "wording": "Tiffany & Co.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-8f0b-71be-a8e2-7846a88757b6",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Tikka",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-55bf-72d2-a666-6aa6675fb43b",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Tila",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5b7e-70c7-a184-b21733dbb4d0",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Tillary",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e5e-734f-999f-39936fcc22a9",
            "brand_id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
            "wording": "Tilly",
            "brand": {
                "id": "019f426a-7e57-734b-8b8d-b41dca5ec802",
                "wording": "Hobbs",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-737c-73ae-ada4-f0909ebc1e83",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Tilly Shirred",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4b95-7259-abdb-b3b12c076488",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Time Out Sneakers",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-68a3-727f-94a7-ae75643989f8",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "Timeless",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-75bf-70b2-851b-8c49b03e5d3d",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Timeless Beauty",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-75e5-72a3-8f16-4f99703c7c53",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Timeless, Euphoria",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4e98-716a-8cfe-5a007d3f819b",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Timex & Jacquie",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4f5e-739f-af60-dd4616aadedd",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Tiny déchainée",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8df8-7094-ac58-502036909f0a",
            "brand_id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
            "wording": "Tipi",
            "brand": {
                "id": "019f426a-8de9-7114-9f6a-e9eb92cfd760",
                "wording": "Invicta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ff5-704a-b4c6-3ae0e26473d8",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Tipi II",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5355-7069-bb58-d6c46cd8e2df",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Tissu",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7aa1-731a-b210-52537a2cd1a2",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Titan",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-94ab-7059-aae2-c25d27d18fb0",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Titan GTX Jacket",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-644d-7084-a074-6be9fd3d3947",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "Titane",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6145-708b-993c-8b4cd4b3d590",
            "brand_id": "019f426a-6129-7196-9847-0e180868e309",
            "wording": "Titans Single",
            "brand": {
                "id": "019f426a-6129-7196-9847-0e180868e309",
                "wording": "Michel Jordi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6d38-70c5-a60d-6cb8e722258c",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Titre",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-92d1-723d-a476-3fac43d8b9cd",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Toa GTX",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-73be-736e-bb32-97bd500f483e",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Tobias",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-67d4-72f9-a398-97dc98100e9a",
            "brand_id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
            "wording": "Toile",
            "brand": {
                "id": "019f426a-67a2-73e6-aed9-c552c3f4af38",
                "wording": "Prada",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6926-7235-aeb5-cbd58eed5048",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Toile de Table UPCYCLED",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-70c0-709c-a596-ca80889b2ef2",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Toilette Petite",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9131-705e-bc91-ea71e50b9d45",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Tokio",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7eb7-7159-8e4e-de9267c5827d",
            "brand_id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
            "wording": "Tokyo",
            "brand": {
                "id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
                "wording": "Il Bisonte",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6173-7028-aebd-9fb50e527e12",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Tolie de Jouy Soleil",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7f46-70d1-b3ff-223271eb77aa",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "Tolérance Extrême",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-4c11-713d-8fe8-57f0d0c6d838",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Tombour Twenty",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-7d2a-71e8-b551-5d4b5727ecf0",
            "brand_id": "019f426a-7d29-71a5-920d-8c161765a592",
            "wording": "Tommy",
            "brand": {
                "id": "019f426a-7d29-71a5-920d-8c161765a592",
                "wording": "French Connection",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-621e-7081-9476-f31282f48ff5",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Tommy Skull XO",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8bc7-712b-92cc-96fe0b1461f9",
            "brand_id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
            "wording": "Tondeuses électriques",
            "brand": {
                "id": "019f426a-8bbe-72dc-a46b-f673d58fcfe8",
                "wording": "Black & Decker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-587c-708f-93d8-070ecc975bea",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Toney",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5c47-70f6-9b24-084ba5ede5e6",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Tongue",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-81fc-73a6-b392-a7b3dd48a866",
            "brand_id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
            "wording": "Tonifiant",
            "brand": {
                "id": "019f426a-81ec-704a-9efc-b7c95e519a2b",
                "wording": "Acorelle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8247-73be-a779-de3b89b9ca24",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Tonique Apaisante",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5182-728d-a9cf-29ef9051065c",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Tonique Hydratant",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-517c-713f-b71c-a36f46ddc27d",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Tonique Végétal",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6b68-718c-be18-dd93777ad105",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Top",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-71c2-706c-8bc7-41bbc4bbb047",
            "brand_id": "019f426a-71be-7236-924d-06e425f6b806",
            "wording": "Top Handle",
            "brand": {
                "id": "019f426a-71be-7236-924d-06e425f6b806",
                "wording": "Stalvey",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-616f-7244-ba5d-f2cbe3e67a43",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Top Handle",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-85a8-7174-8ff6-61d8e706445d",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Top Load Washer",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-856e-7168-b59d-a10769b950e3",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Top Load Washer",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-7ad9-72d6-b049-196ba41e3092",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Top Sneakers",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-755d-7203-b15a-0939c29f5201",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "Torino Briefcase",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-73b3-713a-83f4-a0a39ec56b3c",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Torna",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-912c-726d-9f4b-a6f21b417531",
            "brand_id": "019f426a-9126-707d-b617-635854029a13",
            "wording": "Toronto",
            "brand": {
                "id": "019f426a-9126-707d-b617-635854029a13",
                "wording": "Errea",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92cd-7342-ab12-a8a3068ac78c",
            "brand_id": "019f426a-92c5-723c-957a-4ee2f9736f57",
            "wording": "Torrent 2",
            "brand": {
                "id": "019f426a-92c5-723c-957a-4ee2f9736f57",
                "wording": "Hoka One One",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9420-714c-a96d-ca42282820f4",
            "brand_id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
            "wording": "Torrentshell 3L Jacket",
            "brand": {
                "id": "019f426a-941d-7391-8a6b-6bab02d82aaa",
                "wording": "Patagonia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5e76-73c6-8037-81f0ac42b1bd",
            "brand_id": "019f426a-5e65-734c-8768-7927b5c5ab20",
            "wording": "Torsadée",
            "brand": {
                "id": "019f426a-5e65-734c-8768-7927b5c5ab20",
                "wording": "Marion Vidal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-54f7-7353-b136-2eab4d9ed48e",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "Torsadée",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-85c9-7308-aaea-7dbe01d29066",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Total NoFrost WQ9B1LUK",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6fd2-727d-bb4b-b2d5a3a9b89d",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "Tote",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7689-701f-b8dc-53895cdb3448",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Tote",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74f7-70ca-8a9a-d59be9877672",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7b3c-71ca-99e3-f31475d2a2af",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ba1-72ac-8169-8ed032e7de28",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-758f-7216-92bf-147f84f9706d",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7abd-73d7-be76-06c52737dc4a",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b88-7214-a55e-84b264f1954a",
            "brand_id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-7b7e-7202-9e84-dddb8aa761a3",
                "wording": "Dubarry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7952-7189-b99d-97fe35ffc5fa",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a77-7374-9e78-49e5da1309a6",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Tote Bag",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6f71-7396-9cdc-3d234f0e577a",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Tote bag",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7018-7126-9e36-61d428c2836f",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "Tote bag",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f8a-7226-bd26-759ebd43efbf",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Tote bag Market",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-80b6-721e-acdd-da33be565edf",
            "brand_id": "019f426a-80b3-7251-9583-5516fb4a0270",
            "wording": "Touche Veloutée",
            "brand": {
                "id": "019f426a-80b3-7251-9583-5516fb4a0270",
                "wording": "By Terry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6160-73c0-b426-9712093d4ff0",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Toujours",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-5a0b-73b6-8e87-dd50d3f7c80d",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "Toujours",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-908e-70ca-8778-e886b853e803",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Tour 900",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-624e-7109-ab93-e0862064f418",
            "brand_id": "019f426a-6245-70b2-b71a-f270c02cbec9",
            "wording": "Tour Auto",
            "brand": {
                "id": "019f426a-6245-70b2-b71a-f270c02cbec9",
                "wording": "BRM Chronographes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-957f-7242-a5ac-b10aa03ec70a",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Tour Backpack",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-956a-71e1-813d-7bf892953f3f",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Tour Tennis Bag",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-5773-71ac-b9ea-5c46eddf3448",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Tour cuir",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-601a-732c-be5f-e1749137c258",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Tourbillon",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-62bb-736d-bcf1-958cd80bb195",
            "brand_id": "019f426a-62b2-722e-92b7-c5a4852313ee",
            "wording": "Tourbillon",
            "brand": {
                "id": "019f426a-62b2-722e-92b7-c5a4852313ee",
                "wording": "Jean Bellecour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6469-7148-8dcc-55e3fa6e4ffd",
            "brand_id": "019f426a-6457-710b-95e7-3e957ceb71f0",
            "wording": "Tourbillon",
            "brand": {
                "id": "019f426a-6457-710b-95e7-3e957ceb71f0",
                "wording": "Ateliers deMonaco",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-92a4-7206-b52b-cd940be7b0e3",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Touring Shield Pant",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9538-7388-9c95-37914d3ff460",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "Touristick Vario AC",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-4da0-7227-a117-74c81dd214b2",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Tourmaline SYLVIA",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-55ed-71aa-a91d-aa2a840c8e1c",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Tournesol",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8dc5-7127-a536-6f9939b282bd",
            "brand_id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
            "wording": "Tournevis",
            "brand": {
                "id": "019f426a-8dc4-7081-9ae7-69830d0eded0",
                "wording": "Stanley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6da7-72fc-a4a5-7a0ec403a08b",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Tourniquet Louis",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8e15-7377-8c9f-299f97977be0",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Tower",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6938-70ef-b3f1-7b9df68e728a",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Track",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-77f7-7241-a543-432c56a867d8",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "Track Jacket",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9073-7226-9c3d-e659cadd7234",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Track Pants",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9061-7058-b886-b120e91c3673",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Track Suit",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f2f-72dc-a146-b684ae190780",
            "brand_id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
            "wording": "Tracks",
            "brand": {
                "id": "019f426a-8f26-70fd-a9d5-b6158d48458c",
                "wording": "Arena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7aa4-73a6-9c63-4ed4ca8cffb7",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Tracksuit",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-93fb-715b-96b0-392712a926e7",
            "brand_id": "019f426a-93f2-7091-885e-7661947eeb30",
            "wording": "Trad 35",
            "brand": {
                "id": "019f426a-93f2-7091-885e-7661947eeb30",
                "wording": "Ortovox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6585-7220-8c5b-7da6ef41a964",
            "brand_id": "019f426a-6576-7202-a616-68f33f659679",
            "wording": "Traditionnelle",
            "brand": {
                "id": "019f426a-6576-7202-a616-68f33f659679",
                "wording": "Vacheron Constantin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8da5-7156-a252-39b058542597",
            "brand_id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Traditionnels",
            "brand": {
                "id": "019f426a-8da2-734a-ba8f-398809cb6407",
                "wording": "Franciaflex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fc6-7335-8944-1e1b9da5f578",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "Trail",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9370-734a-af15-86fd728d6926",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Trail Ergo Cork",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93eb-7063-b3e1-5f9703b6f641",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Trailblazer 30",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-926c-7057-90c1-caf0c33c71e0",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Trailhead Pant",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6aef-714f-96a2-041319f0c4d5",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Train 89",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7a3c-70f8-b521-5a077a9d2a7b",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Train Case",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8fda-7183-b856-db131a9bc5bb",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "Training Bib",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-94c5-7253-a2fe-03ad5ede3a5f",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Training GS Race Suit",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9060-7022-8f97-cd0cf541931d",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Training Kit",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-906b-7060-a729-a85c24a84fce",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Training Pants",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-955c-70fb-b7f7-6c4160e0aa4c",
            "brand_id": "019f426a-9542-70e6-9590-2424f67f5716",
            "wording": "Training Shorts",
            "brand": {
                "id": "019f426a-9542-70e6-9590-2424f67f5716",
                "wording": "Warrior Sports",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9067-70ac-9ee5-80837b5de5bb",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Training Tee",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7aa5-73f1-9832-6c8736d23d13",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "Training Tee",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-756e-708d-b73e-b2dc6b4b35a7",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "Transcend Weekender",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5ee9-73d5-ad1c-85596145e296",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Transformable",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-748a-711d-9c69-638dae176337",
            "brand_id": "019f426a-7487-73c5-a937-82a7cfd87012",
            "wording": "Trapèze",
            "brand": {
                "id": "019f426a-7487-73c5-a937-82a7cfd87012",
                "wording": "BCBGeneration",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-70cf-71d9-9888-a83dc7d05dc4",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Trapèze W",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7400-71fc-856d-be7a907aea1d",
            "brand_id": "019f426a-73fd-7086-b1ac-6f436093163b",
            "wording": "Trash",
            "brand": {
                "id": "019f426a-73fd-7086-b1ac-6f436093163b",
                "wording": "Ash",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a5d-71c4-91e9-404088e2e44e",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Travel Bag",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a3a-73b1-84b8-2d688959d7cb",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Travel Tote",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-8f75-704a-9fec-ea37226395e1",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Trekker Cap",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ac8-73a7-9afd-47ea01366928",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Trench Coat",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a6d-721f-938d-49fef885ffc6",
            "brand_id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "Trench Coat",
            "brand": {
                "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
                "wording": "DAKS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6b75-72be-904c-75633f413ced",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Trench-coat",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-75cc-7270-988c-c9c3db837cb8",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Trendsetter",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-789e-731e-9d02-a9639e02455b",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Trento",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5b0f-70d6-a8bf-aad5014d41b8",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Trenton",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4904-709a-9341-626ff2976246",
            "brand_id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
            "wording": "Tresse",
            "brand": {
                "id": "019f426a-48ff-70d0-9e48-f83f8c6bf8ef",
                "wording": "Poiray",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-93d8-718e-bcef-88a118c58276",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Trestles Elite Eco 20",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f4d-73e1-800c-11cdd75927f1",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "TriXera Nutrition",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-74be-70aa-972d-4585fa82975c",
            "brand_id": "019f426a-74bc-7358-b984-98488fc4937d",
            "wording": "Trialmaster",
            "brand": {
                "id": "019f426a-74bc-7358-b984-98488fc4937d",
                "wording": "Belstaff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-546c-7090-afdc-2143284ec36d",
            "brand_id": "019f426a-5468-73c3-9c65-21414ac58842",
            "wording": "Triangles Beige",
            "brand": {
                "id": "019f426a-5468-73c3-9c65-21414ac58842",
                "wording": "Nils Avril",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-546f-727a-a5b4-33561c674c51",
            "brand_id": "019f426a-5468-73c3-9c65-21414ac58842",
            "wording": "Triangles NOIR",
            "brand": {
                "id": "019f426a-5468-73c3-9c65-21414ac58842",
                "wording": "Nils Avril",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-546d-72a1-b1ab-3da1d97ed9da",
            "brand_id": "019f426a-5468-73c3-9c65-21414ac58842",
            "wording": "Triangles Rose Pale",
            "brand": {
                "id": "019f426a-5468-73c3-9c65-21414ac58842",
                "wording": "Nils Avril",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6171-713e-88fe-d868b4e2b660",
            "brand_id": "019f426a-6154-7314-a26c-655dabda5b31",
            "wording": "Tribales",
            "brand": {
                "id": "019f426a-6154-7314-a26c-655dabda5b31",
                "wording": "Dior",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-90d6-7245-bad7-812ca6744e5a",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "Triban",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-91be-7099-a18b-359ad31c7f78",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Tribase Reign",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-66df-7129-af64-99247e1039e5",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Tribeca",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-845b-73b2-97ad-3bdef2953e60",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "Triblade System Pro HDM804SI",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7285-72f0-bf8c-242555585616",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "Tribute",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6efc-7383-8019-3652c53f664c",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Tric Trac",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-609b-723a-a589-11d421642422",
            "brand_id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
            "wording": "Tricompax",
            "brand": {
                "id": "019f426a-6091-73b3-9b42-94cd2e8404f3",
                "wording": "Baltic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6ef6-704c-954d-102c55c0602d",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Triennale",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-76e8-70e4-a7c4-60f5914c313f",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Trifold Wallet",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8fa8-725d-b9ee-22eb59e52c75",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Trilogy",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92a7-7054-8c72-ddad99bd8557",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Trilogy Lightgrid Hoodie",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-927f-721f-a8b2-e885e5dabe17",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Trilogy V Icon GTX Pro",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9567-71af-a93b-1dd31ca411a3",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Triniti Tennis Balls",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-484a-7163-80ad-414878ca8a38",
            "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Trinity",
            "brand": {
                "id": "019f426a-4836-7046-bf76-a46201ff7027",
                "wording": "Cartier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5fb2-723b-90b8-499030bd7a99",
            "brand_id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
            "wording": "Trio",
            "brand": {
                "id": "019f426a-5f99-71ae-a69a-35d6c9ce2185",
                "wording": "Pierre Lannier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7fca-709b-87d5-752485834736",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Triphasic",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-693a-709e-9886-cc8d299f7267",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Triple S",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7a24-7087-8895-ae8668b07caa",
            "brand_id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
            "wording": "Trista Crossbody",
            "brand": {
                "id": "019f426a-7a1e-71e4-8a27-2794afdef77c",
                "wording": "Consuela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-73ba-7394-8ba1-db3d0b3c8d17",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Tristan",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6bdd-713a-aa89-274aabd330fb",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Troghi",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6ee8-721d-be69-5c95ba535c11",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Trolleys",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6a93-7344-998f-565b77bb7b07",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Trompe-l'OEIL",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f02-7325-9a02-98fde0ec0918",
            "brand_id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Trompette",
            "brand": {
                "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
                "wording": "Roger Vivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6c00-7174-8b47-9930c8eed332",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Tronia",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4d91-7298-88a5-449737229434",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Trophy",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-904a-714c-ab72-09a92771ec35",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Tropical",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7830-72ea-a0d1-79be1a5abd73",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Tropicana",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7beb-72e5-a53f-68478af22df5",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Trucker Hat",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7c47-715e-b9b4-f77f30314bb8",
            "brand_id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
            "wording": "Trucker Torices",
            "brand": {
                "id": "019f426a-7c2f-73b6-84a4-594612ec3c5a",
                "wording": "Ellesse",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-72c1-7355-b45a-e23455f81a98",
            "brand_id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
            "wording": "Trudeau",
            "brand": {
                "id": "019f426a-72b5-71fa-9ee8-32d98bf5561c",
                "wording": "Want Les Essentiels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6eea-720c-bf68-425f37591b54",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Trunks",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-766d-722d-8a80-6e91ed71c1d3",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Trunks",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5076-71b5-b109-249ee2b9694f",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Trèfle sertis Saphirs",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5075-719c-99bb-92dec329d892",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Trèfle sertis tanzanite",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6ac1-73ed-9782-48eaec2fb0be",
            "brand_id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
            "wording": "Très Paris",
            "brand": {
                "id": "019f426a-6aaa-721a-a499-853c6a6fcf6c",
                "wording": "Longchamp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4fb4-7369-bf76-88f1cd52d15e",
            "brand_id": "019f426a-4f6e-715d-8672-0555213cfa8e",
            "wording": "Tréfle",
            "brand": {
                "id": "019f426a-4f6e-715d-8672-0555213cfa8e",
                "wording": "Les Georgettes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6c2f-736c-af73-44fb68cbb63a",
            "brand_id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
            "wording": "Tube",
            "brand": {
                "id": "019f426a-6c1e-70e8-ae2c-3f252f59d6bc",
                "wording": "Loewe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6c3e-703b-8a6f-cd00262368ae",
            "brand_id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
            "wording": "Tube",
            "brand": {
                "id": "019f426a-6c3b-70a6-a32b-973e6ef03e10",
                "wording": "Alexander Wang",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6f61-7118-93f5-fca5c2540bf6",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Tube",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6aa7-712c-a95e-5019536823d0",
            "brand_id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
            "wording": "Tudor Rose",
            "brand": {
                "id": "019f426a-6a84-7148-8bb7-5d5a362f7298",
                "wording": "Alexander McQueen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4ee5-7355-84ff-6b4243909e39",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "Tulip",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5a48-712e-80a7-f87eb82b61f8",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Tulsi",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-93dd-73d4-bd00-2a8059e4c1b1",
            "brand_id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
            "wording": "Tungsten Ultralight 2P",
            "brand": {
                "id": "019f426a-93d4-7096-a2ab-6fcca7de44bd",
                "wording": "Marmot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7d01-726a-aed9-71fbe5149842",
            "brand_id": "019f426a-7cfb-7235-97cf-7f6b163da974",
            "wording": "Tunique",
            "brand": {
                "id": "019f426a-7cfb-7235-97cf-7f6b163da974",
                "wording": "Figue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6234-70a3-9706-85d9b19d59ff",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Tunisien",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-52ca-7201-af2c-530d53a0b06e",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Turbina",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-84fb-73f2-98f4-b9f586719484",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Turbo Pro FV5648",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84da-702b-936c-508f653bcf5e",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Turbomix",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-73b7-73a7-aa3e-b2ee8ad9649f",
            "brand_id": "019f426a-73b0-7316-a076-198b271500eb",
            "wording": "Turquoise",
            "brand": {
                "id": "019f426a-73b0-7316-a076-198b271500eb",
                "wording": "Annabel Ingall",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-53f1-7282-826c-1f893949485f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Tusa",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7897-704f-a5aa-30dd607bc96e",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Tuscany",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5513-71e7-a523-6ade57ac8a75",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "TuttiFrutti",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7aec-72e5-86fe-cb542b6b5cbd",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Tuxedo",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7eff-71da-86e1-c1e509243536",
            "brand_id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
            "wording": "Twee Mini",
            "brand": {
                "id": "019f426a-7ef4-73cb-ac7e-9479c99d0a2c",
                "wording": "Jerome Dreyfuss",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7ec0-7052-bbe0-16245cb168b7",
            "brand_id": "019f426a-7ebf-735e-ac6e-7d807d659587",
            "wording": "Tweed",
            "brand": {
                "id": "019f426a-7ebf-735e-ac6e-7d807d659587",
                "wording": "Inés de la Fressange",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6878-71da-8ca7-3c0809082de8",
            "brand_id": "019f426a-682f-7208-a552-a1adb6305dd3",
            "wording": "Tweed",
            "brand": {
                "id": "019f426a-682f-7208-a552-a1adb6305dd3",
                "wording": "Kate Spade",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-78e3-7113-805e-32d9b35b29cf",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Tweed Blazer",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a6b-7205-914e-fe7ead7243bd",
            "brand_id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "Tweed Suit",
            "brand": {
                "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
                "wording": "DAKS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-664c-7246-8b06-9e0198968022",
            "brand_id": "019f426a-664a-7284-9d69-a75dee56956e",
            "wording": "Twenty-4",
            "brand": {
                "id": "019f426a-664a-7284-9d69-a75dee56956e",
                "wording": "Patek Philippe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b60-71cd-8243-65a1cc03d5e3",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Twiggy Jeans",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-77c8-739e-9963-f274eab20ffd",
            "brand_id": "019f426a-77b1-735b-81c6-bd091a484829",
            "wording": "Twilight Garden",
            "brand": {
                "id": "019f426a-77b1-735b-81c6-bd091a484829",
                "wording": "Cath Kidston",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4977-7286-bff0-c3521b7bf6e7",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Twilly d'Hermès",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-85db-7342-810c-76e26dd097f0",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "TwinDos",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-76a7-72ba-bc3a-11205d71795e",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "Twins",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6a31-71c1-aea2-c434993d1830",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Twist",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-69be-7159-8e17-605d90a71366",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Twist",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6ef1-72e1-a418-68123b267547",
            "brand_id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
            "wording": "Twist",
            "brand": {
                "id": "019f426a-6eec-7152-bef6-eae0a38dd0fa",
                "wording": "Valextra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-4ba0-736e-8546-289ce664b239",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Twist Dress",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4b82-72e8-b19b-c082c949d435",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Twist Lock",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-90fc-709d-8c8c-6ac000cdc650",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Two-Piece Suits",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-932d-71da-98cc-5f44dc225f58",
            "brand_id": "019f426a-9329-7339-9d07-2b866765b6d6",
            "wording": "Twyce",
            "brand": {
                "id": "019f426a-9329-7339-9d07-2b866765b6d6",
                "wording": "X-Bionic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-61d8-71d2-9943-8071c979e38f",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Tyler",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61df-717c-8d5c-96336c7ef46e",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Tyler Studs",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61dc-72a3-bbfe-e942934442db",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Tyler Suede",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-64ca-7066-846b-91a38a321c0d",
            "brand_id": "019f426a-64c9-7087-af1c-9494e4f2f611",
            "wording": "Type 1",
            "brand": {
                "id": "019f426a-64c9-7087-af1c-9494e4f2f611",
                "wording": "Ressence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-64cc-7006-af4c-7d42f62ba460",
            "brand_id": "019f426a-64c9-7087-af1c-9494e4f2f611",
            "wording": "Type 2",
            "brand": {
                "id": "019f426a-64c9-7087-af1c-9494e4f2f611",
                "wording": "Ressence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-619e-73b3-a4fb-fcb8ee1f5064",
            "brand_id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "Type 21",
            "brand": {
                "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
                "wording": "Dodane 1857",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61a0-721a-bbb6-fea1d961ea0f",
            "brand_id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "Type 23 Flyback",
            "brand": {
                "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
                "wording": "Dodane 1857",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-61a2-73a7-9fc1-d2acde7810a0",
            "brand_id": "019f426a-6194-72b2-be44-caa528e3b3a3",
            "wording": "Type 23 GMT",
            "brand": {
                "id": "019f426a-6194-72b2-be44-caa528e3b3a3",
                "wording": "Dodane 1857",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-7d3f-723d-98a9-477cdd6bbcf2",
            "brand_id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
            "wording": "Type-C",
            "brand": {
                "id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
                "wording": "G-Star RAW",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-63f0-7271-b6ba-7bb365123104",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Type20 Flymaster",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63f6-714f-b240-e31fe7611dd3",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Type20&52 Flyback",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-63f1-70cc-a6bd-02b24e5fe058",
            "brand_id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
            "wording": "Type26 Aéronavale",
            "brand": {
                "id": "019f426a-63ee-70a3-ac16-2c69b2aef649",
                "wording": "Auricoste",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-65a6-702d-b32c-185319fd0066",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Tyrrhénien",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8cf0-70de-909f-b290a8109ab2",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Téléviseurs",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6524-71e7-b173-409589737a35",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "U1",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-652c-727f-b24d-775d7d3fd525",
            "brand_id": "019f426a-651f-72fa-9d10-b33092505ffe",
            "wording": "U50",
            "brand": {
                "id": "019f426a-651f-72fa-9d10-b33092505ffe",
                "wording": "Sinn",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-87b4-72d0-ba94-2ac1d5caf486",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "U7QF",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87b8-7103-972b-e654535cf35a",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "U8G",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8c83-71e2-b0aa-6072fa148d15",
            "brand_id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
            "wording": "UC 01",
            "brand": {
                "id": "019f426a-8c7e-712c-8f89-3d3aa822fefa",
                "wording": "Punkt",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-83cf-7249-a505-1fe58850aa28",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "UH8F1CG1",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83cd-70f7-813e-4edc0a9b5dcc",
            "brand_id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
            "wording": "UH8F1CX",
            "brand": {
                "id": "019f426a-83bc-7326-a4eb-9eafa7299d2f",
                "wording": "Hotpoint",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-855b-7037-b716-b2abf6255636",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "UHD 4K UN71",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83ed-72f3-a205-0621bf713526",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "UI6 F1 T S",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83f0-7312-8224-0ecc8c11712f",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "UI6 F1 W S",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83ea-7230-8601-6325654fbb45",
            "brand_id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
            "wording": "UIAA 55 S",
            "brand": {
                "id": "019f426a-83d3-731e-8e84-65bcbc3b3ffd",
                "wording": "Indesit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-87d3-70c6-ac9e-367d8a6ba885",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "UIK 1550",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5a28-705e-93fa-4e92b13c37f1",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "UN BAISER",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6e8b-73ba-b9b0-97d7fce90ab6",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "UNFRM",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8a19-7124-accf-80a7e64b54ca",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "UP600",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-9566-70fd-b09c-6e465f7e42bd",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "US Open Tennis Balls",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7f9a-712a-bffb-94f9b5f356ea",
            "brand_id": "019f426a-7f90-702d-8e83-a1dec2f93308",
            "wording": "UV PLUS Anti-Pollution",
            "brand": {
                "id": "019f426a-7f90-702d-8e83-a1dec2f93308",
                "wording": "Clarins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8d88-7219-8474-9e0bb035cddd",
            "brand_id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
            "wording": "Ultimate Lithium",
            "brand": {
                "id": "019f426a-8d80-70c4-84a8-c09b1b9c85d9",
                "wording": "Taurus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-84f8-7258-8a83-c28001aeb0ec",
            "brand_id": "019f426a-84e9-721b-b090-80e86d1db3bf",
            "wording": "Ultimate Pure FV9848",
            "brand": {
                "id": "019f426a-84e9-721b-b090-80e86d1db3bf",
                "wording": "Tefal",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8520-733f-8167-7df544944abe",
            "brand_id": "019f426a-851d-73ed-a8c7-a01040511bfd",
            "wording": "Ultimate Pure FV9848",
            "brand": {
                "id": "019f426a-851d-73ed-a8c7-a01040511bfd",
                "wording": "Calor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9176-73f6-b814-c100c504f8b1",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Ultra",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9564-712c-b655-8c5255c66060",
            "brand_id": "019f426a-955e-73f4-b174-9b7dede30eb9",
            "wording": "Ultra 100",
            "brand": {
                "id": "019f426a-955e-73f4-b174-9b7dede30eb9",
                "wording": "Wilson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9356-71d8-8a1c-dac1693cc02d",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Ultra DNA Unisexe",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92b2-72cb-8942-0f456549a367",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Ultra Endurance XF Futurelight",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-92af-718f-8046-4772ed0e432c",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Ultra Fastpack IV Mid Futurelight",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9354-716a-bb21-46fa17c15de0",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Ultra Pro 2 Femmes",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93e9-73c3-a1e8-d4a543ffac33",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Ultra Tour 22",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-943c-7287-b92c-338b127c494f",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Ultra Train 18L",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8126-73a8-8c0e-4c2218b228c9",
            "brand_id": "019f426a-8125-7158-91db-f5e5d523d7b7",
            "wording": "Ultra-Hydratant",
            "brand": {
                "id": "019f426a-8125-7158-91db-f5e5d523d7b7",
                "wording": "Topicrem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-84d7-7103-8c6c-b69552beddd5",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Ultrablend",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-9182-7371-a457-ba7f5d55fbb4",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "Ultraboost",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-90f5-71d9-aefd-3b3b2fca47e3",
            "brand_id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
            "wording": "Ultralight Series",
            "brand": {
                "id": "019f426a-90f0-70a7-9f19-133b5e1039c9",
                "wording": "Raidlight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4e49-733c-9f52-8df751958fb0",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Ultraviolet",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-5a92-7195-bb6b-ac8d921aac00",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Uma",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-91d9-70f4-a655-89752ea1c045",
            "brand_id": "019f426a-91b6-70d0-a006-fcb5d7607427",
            "wording": "Undeniable Duffel",
            "brand": {
                "id": "019f426a-91b6-70d0-a006-fcb5d7607427",
                "wording": "Under Armour",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-81e7-70b6-97d7-e439d81ebfb0",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Under Control",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-543d-73e2-96ab-22b77deb8cca",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Uni",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6cac-726c-911b-acd8c6cb7066",
            "brand_id": "019f426a-6cab-736f-a4bd-c9412388802f",
            "wording": "Unicorn",
            "brand": {
                "id": "019f426a-6cab-736f-a4bd-c9412388802f",
                "wording": "Balmain",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6321-7071-b550-6f43a09342a5",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Unis",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4f4d-7269-8b2b-2188f1cb391c",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "Unity Simple",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6d56-7330-bd34-8a6305f4d0eb",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Universitaire",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-84e3-71c4-a389-95de06a10fb9",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Uno",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-84c4-70a4-be91-56cd7ca1a866",
            "brand_id": "019f426a-84b3-7116-ac10-a6aac254d67d",
            "wording": "Uno XL AOV2001",
            "brand": {
                "id": "019f426a-84b3-7116-ac10-a6aac254d67d",
                "wording": "Moulinex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6cd5-7330-87ba-7191a84feb7f",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Uomo",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7244-7234-9c61-bf1b8066d6da",
            "brand_id": "019f426a-7236-7035-bc0e-3b1f579e6424",
            "wording": "Uomo",
            "brand": {
                "id": "019f426a-7236-7035-bc0e-3b1f579e6424",
                "wording": "Trussardi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-75c1-73b0-a5b3-47d48c315b0a",
            "brand_id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
            "wording": "Urban Chic",
            "brand": {
                "id": "019f426a-75ab-7018-bc51-b77f8dcf9e0a",
                "wording": "Céline Dion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6035-715f-b9f6-8b2af19a10aa",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Urban Field",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-602e-71c5-b421-5f28adb5c195",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Urban Flygraf",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-9118-73d7-85b3-f0f14ef884f0",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Urban Line Tee",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-911e-73ef-86f8-88811ac2c279",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Urban Line Track Pants",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6031-735d-881c-6326ffc774ba",
            "brand_id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
            "wording": "Urban Traveller",
            "brand": {
                "id": "019f426a-600f-70d0-ab1c-0ed9abc73767",
                "wording": "Yema",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8180-701f-a4c4-19da85da5b95",
            "brand_id": "019f426a-817d-73b8-b70c-a7b411e9be83",
            "wording": "UreaRepair",
            "brand": {
                "id": "019f426a-817d-73b8-b70c-a7b411e9be83",
                "wording": "Eucerin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-5255-7016-9314-b35e6f8c62f4",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ursule",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7caf-735c-9eb7-7cb3a8e0a3b0",
            "brand_id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
            "wording": "Utility",
            "brand": {
                "id": "019f426a-7ca1-7265-bd09-a0ef6a5ef914",
                "wording": "Esse Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7d42-7313-b50a-13e652d44b17",
            "brand_id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
            "wording": "Utility",
            "brand": {
                "id": "019f426a-7d3c-73dc-a675-21aa9c7686b6",
                "wording": "G-Star RAW",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6d0e-70f4-a9a4-693d522c5aa9",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Utility",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-750f-72e9-9792-d0a41691e949",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Utility Jacket",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7496-7363-a8d2-0085ce33125e",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "V",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6494-7186-80dc-99672d1d1c63",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "V-First",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-780b-7054-9ce0-71d242663c9f",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "V-Neck",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7659-73f4-b9d6-4b664c20beca",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "V-neck",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-86ca-7336-a629-94c62520dda2",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "V10 Animal",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8fec-71cf-b81b-59560266be2c",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "V100",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-86c7-70b8-a3fb-fec675ecf73a",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "V11 Absolute",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-642e-716e-b8ed-c9bc43b48469",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V12- SA-46MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-642b-7291-a497-1f59d86e7533",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V12-44MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-89fa-71c4-ac1d-3bddcd316449",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "V28",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6440-739d-a5df-80c17e62e052",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V3-32MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6425-70fc-952f-e4df0969c577",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V5 25MM Blanche et Diamants",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6427-7030-b524-ff7554497434",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V5 25MM Noire et Diamants",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8fea-731e-87bb-64e8996d8812",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "V500",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8fed-7222-9ccb-ee16c37bb160",
            "brand_id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
            "wording": "V500 Shorts",
            "brand": {
                "id": "019f426a-8fc8-7134-a0d5-ede68c601ceb",
                "wording": "Kipsta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-89f5-72a0-897b-a80f431b39c1",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "V5i",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-6423-71ef-8dda-0c3f24be50c7",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V6 Squelette OR",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6420-73f4-a52d-4ce204363c2c",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V6 Touring",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6428-7266-a80e-5cd9428744b2",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V6- 44MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6247-71a5-8f8a-ba90b351dfcd",
            "brand_id": "019f426a-6245-70b2-b71a-f270c02cbec9",
            "wording": "V6-44-SA",
            "brand": {
                "id": "019f426a-6245-70b2-b71a-f270c02cbec9",
                "wording": "BRM Chronographes",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-642a-737b-b33d-fd8c9a0986f9",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V6-SA-44MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-86eb-7162-8340-45d6eb1db3ef",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "V7 Trigger",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-643e-7056-b1e4-af5b1ee53d38",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V7-38MM",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6422-7297-816a-e630cb8f9d35",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "V8 20 ans Edition Limitée",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-86cc-70ce-b335-aee62c6e3fbd",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "V8 Absolute",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86e7-722c-b838-760e940d4c15",
            "brand_id": "019f426a-86c5-73e3-9b00-62bc2328be04",
            "wording": "V8 Animal",
            "brand": {
                "id": "019f426a-86c5-73e3-9b00-62bc2328be04",
                "wording": "Dyson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-89f8-7237-a471-3dabff44f002",
            "brand_id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
            "wording": "V85",
            "brand": {
                "id": "019f426a-89f3-7158-9b3a-76f0a63f856c",
                "wording": "H.Koenig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5d6b-7243-94d9-3184d5aaab08",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "VALENTINO GARAVANI",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8931-727b-b4ab-373d89f4401c",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "VC140",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8d61-70d4-8940-ea3614b97ef4",
            "brand_id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
            "wording": "VC800",
            "brand": {
                "id": "019f426a-8d54-73b9-a7a5-11dd027f0279",
                "wording": "Harper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-892b-72f4-98f4-8d6b316ca1ca",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "VCB 4W",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-892d-70ab-8d2c-af3afd7a0eff",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "VCBE11",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-892e-703b-b250-ecca78d656a4",
            "brand_id": "019f426a-8919-7239-8011-533efe853b45",
            "wording": "VCBL12",
            "brand": {
                "id": "019f426a-8919-7239-8011-533efe853b45",
                "wording": "Proline",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5d62-71cb-bdfa-9551a7b0138b",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "VEERT",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-650e-73ec-a46f-5aa2e846b05d",
            "brand_id": "019f426a-6507-71a0-a295-a0709a7fe38d",
            "wording": "VELVET",
            "brand": {
                "id": "019f426a-6507-71a0-a295-a0709a7fe38d",
                "wording": "Roger Dubuis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8ea2-72a3-93a3-37a5697533ff",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "VENTO500",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8eb8-71b5-afbb-aa44554ec909",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "VERA Access",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5d31-70dd-bf25-53134b95db52",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "VERSACE",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5d33-7165-85ef-8e95c50e74bb",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "VETEMENTS",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8900-71f2-9493-5356fd543baf",
            "brand_id": "019f426a-88fd-7318-bac0-c49964a79fe5",
            "wording": "VHS",
            "brand": {
                "id": "019f426a-88fd-7318-bac0-c49964a79fe5",
                "wording": "Nilfisk",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8ec5-726b-bc16-99008a323a83",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "VIGI Access",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4899-7100-9953-c08cd0188a1c",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "VINtage",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5de8-71c3-90bc-24459a5855c4",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "VIRGINIE",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-8de2-73dd-b223-f408de379847",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "VJ05",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6a7b-7117-90ce-43c0be670581",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "VL7N",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8d65-72d6-a169-7ecb3f13668f",
            "brand_id": "019f426a-8d62-709c-9c35-86552eae089b",
            "wording": "VLT612EX",
            "brand": {
                "id": "019f426a-8d62-709c-9c35-86552eae089b",
                "wording": "Vedette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6a76-72fe-8b05-bca4c82f52e9",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "VLTN",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8de0-7358-a6ad-1297f7d532a2",
            "brand_id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
            "wording": "VM51",
            "brand": {
                "id": "019f426a-8dd2-7102-bfcc-52db3cb22bb0",
                "wording": "Bimar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6127-703c-8739-14fdf8c66623",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "VOILES D'ANTIBES",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6454-714f-ae9f-829d7a69ea81",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "VOLANT",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-648f-715b-8519-8023e213595f",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "VR Octopus",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-648e-705c-85b1-d678460d1748",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "VR-300",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-648c-72ba-8f79-23a810c386f2",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "VR-400",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8e76-7332-99a0-8f06c75b2e98",
            "brand_id": "019f426a-8e59-70f5-902c-3979329ccaac",
            "wording": "VR510",
            "brand": {
                "id": "019f426a-8e59-70f5-902c-3979329ccaac",
                "wording": "Siméo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8f3b-7212-9bc8-388c9cdea010",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "VS Touch",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-839e-7280-88fd-7683190051b9",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "VS06A111",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83a1-732f-b7b0-8e9297915ea1",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "VS06B1110",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-63ad-727f-9972-c46688036710",
            "brand_id": "019f426a-63ac-72d9-9004-e89d3096efb5",
            "wording": "VS1",
            "brand": {
                "id": "019f426a-63ac-72d9-9004-e89d3096efb5",
                "wording": "Armand Nicolet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62f7-72b9-9d6d-99cafc6667cf",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "VSA",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d68-70f9-bb94-f19e4839d152",
            "brand_id": "019f426a-8d62-709c-9c35-86552eae089b",
            "wording": "VSA245C",
            "brand": {
                "id": "019f426a-8d62-709c-9c35-86552eae089b",
                "wording": "Vedette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-62f2-7084-bd25-f2ad49bada0a",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "VSCSM",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d67-726c-bbaa-77811d9584ee",
            "brand_id": "019f426a-8d62-709c-9c35-86552eae089b",
            "wording": "VSD516BX",
            "brand": {
                "id": "019f426a-8d62-709c-9c35-86552eae089b",
                "wording": "Vedette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-62f5-7226-b17c-bbe9c6274061",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "VSLS",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62ea-70d1-be74-34ea9b3eafb1",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "VSLSS",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8d6a-70a0-acca-9717c7038bb7",
            "brand_id": "019f426a-8d62-709c-9c35-86552eae089b",
            "wording": "VST673DB",
            "brand": {
                "id": "019f426a-8d62-709c-9c35-86552eae089b",
                "wording": "Vedette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-83a0-70c0-8fc3-8ffdea261bd5",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "VSZ3A320",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-952f-710f-a8b6-da06c5e07998",
            "brand_id": "019f426a-9523-7044-bfe0-030ebb70e255",
            "wording": "VTA 88 Lite",
            "brand": {
                "id": "019f426a-9523-7044-bfe0-030ebb70e255",
                "wording": "Völkl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-90d4-7271-9724-20c5810b3be0",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "VTT Électriques",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8449-7087-be86-132ebbcd7ef3",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "VU6210F0 Ventilateur sur pied",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8447-7078-ab46-eb9d2f635580",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "VU6670 Turbo Silence Extreme",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-57fe-7263-9119-61b7ccf8130d",
            "brand_id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
            "wording": "Vachette",
            "brand": {
                "id": "019f426a-57c0-7267-9ffe-cfe17a6555b6",
                "wording": "Maison Boinet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-65ff-70a9-b833-c9cb18dadaf5",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Vadim",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-56d7-724b-b0d8-76315479d60a",
            "brand_id": "019f426a-5672-7180-9601-314a47c7dcd8",
            "wording": "Vaguelettes",
            "brand": {
                "id": "019f426a-5672-7180-9601-314a47c7dcd8",
                "wording": "Alice Hubert",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6448-707f-bcc7-37a2c5e5254f",
            "brand_id": "019f426a-641f-73b5-8846-375852b8635d",
            "wording": "Vaillante",
            "brand": {
                "id": "019f426a-641f-73b5-8846-375852b8635d",
                "wording": "B.R.M",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5a85-7245-af7d-08e5a8fee1f8",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Vajra Saphir",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-53b2-7102-8447-a45b255b678f",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Valentin Perle",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7778-709e-bdf4-b8c86c86eb24",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Valentina",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6d74-7383-9de4-7def46210f1b",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Valentina",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-535c-700b-a523-d25af9218c02",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Valentini",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5403-7036-8bd4-cf91438e1498",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Valentiti",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5825-72d4-aa4c-5c802488a079",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Valerio",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7c07-73d7-9bbf-b25612b5a0e1",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Valet Trays",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6215-7158-ba7f-1e762639b2a9",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Valfried Cuir",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6ee6-73f6-ad1c-22139417eb82",
            "brand_id": "019f426a-6ed9-726d-9942-4c57f1422517",
            "wording": "Valises",
            "brand": {
                "id": "019f426a-6ed9-726d-9942-4c57f1422517",
                "wording": "Moynat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-65b5-71c8-8e07-5306a7cb9f2c",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Vallauris",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-536b-7349-bd53-f0f4ddeca2e8",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Valou",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5a55-711e-9fb2-37e1392a7f97",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Vamsa",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-90d8-7106-a025-ab2da6de880d",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "Van Rysel",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-4a40-7173-a9f4-197bbf8dd60c",
            "brand_id": "019f426a-4a3c-71d8-b022-27233be582d7",
            "wording": "Vanille",
            "brand": {
                "id": "019f426a-4a3c-71d8-b022-27233be582d7",
                "wording": "Reminiscence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-9059-72e3-828d-ae9ab8c6ca7a",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Vanille",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5447-73bc-9a66-6734d1ec66ed",
            "brand_id": "019f426a-5438-722a-93dc-aab71da7bbd4",
            "wording": "Vanille",
            "brand": {
                "id": "019f426a-5438-722a-93dc-aab71da7bbd4",
                "wording": "Luz",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-6d36-7003-821b-ab87e919acef",
            "brand_id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
            "wording": "Vanito",
            "brand": {
                "id": "019f426a-6d14-70ac-b73e-a764b6bbd5ef",
                "wording": "Jacquemus",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9492-7301-9071-3f52c1a0e03d",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Vanquisher 2.0",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6ba0-70a0-b4a8-5094ac07906e",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Vara Plate",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-66f0-72f1-8920-ed879bcb7857",
            "brand_id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
            "wording": "Varick Leather",
            "brand": {
                "id": "019f426a-66cb-7070-a5aa-36ce82f403b6",
                "wording": "Michael Kors",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6d0b-7348-8b9c-5f4001d758d2",
            "brand_id": "019f426a-6cee-7113-824d-368d469dd8df",
            "wording": "Varsity",
            "brand": {
                "id": "019f426a-6cee-7113-824d-368d469dd8df",
                "wording": "Kenzo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-69ab-718e-9833-00e3d7bd3b7c",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Varsity",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-498d-7124-9f46-ae5bff889d09",
            "brand_id": "019f426a-4962-7385-9029-6f477df60935",
            "wording": "Varsity brodé",
            "brand": {
                "id": "019f426a-4962-7385-9029-6f477df60935",
                "wording": "Hermès",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-4ae2-70fe-8d04-946d2a7891be",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Vase Harcourt",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4d74-7394-81fa-a3ff55ac93bc",
            "brand_id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
            "wording": "Ve Avenue",
            "brand": {
                "id": "019f426a-4d5d-71c2-8dec-8a28734313c4",
                "wording": "Herbelin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-92b1-73e4-87df-dcca951b7c76",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Vectiv Exploris Mid Futurelight",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91fe-7288-b37b-10985e31c177",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Vector",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5ab0-7179-b9b6-450e68d04a6e",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Veda",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-943e-7310-a2ea-4a50f082fcc6",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Vega Helmet",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7186-7181-9481-9f1e7c2ebc3a",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Vegan Amica",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7a94-72e1-9bc3-4b64c71e451d",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Vegan Leather Backpack",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-717d-70ac-8566-1739b7b27ea0",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Vegan Misto",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7182-725f-9e54-fff641785b2d",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Vegan Saffiano",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7181-7208-9631-dc6933c2b296",
            "brand_id": "019f426a-7177-7316-8032-d361d0ecddb8",
            "wording": "Vegan Terra",
            "brand": {
                "id": "019f426a-7177-7316-8032-d361d0ecddb8",
                "wording": "Senreve",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7bd0-722c-a0be-f5361def15e2",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Vegan Trainers",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-63e3-72fa-b37a-811a9bc2d782",
            "brand_id": "019f426a-63be-73aa-9264-303c16afdb29",
            "wording": "Veille de Conceptoin D'espace",
            "brand": {
                "id": "019f426a-63be-73aa-9264-303c16afdb29",
                "wording": "Augustin Matei",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6222-717a-962b-9ad1dbce2aff",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Veiss",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-916c-7056-88ef-2d317f311a7c",
            "brand_id": "019f426a-916a-72a0-aa7f-5f072c881775",
            "wording": "Velocity Nitro",
            "brand": {
                "id": "019f426a-916a-72a0-aa7f-5f072c881775",
                "wording": "Puma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6325-7369-bc51-18264f54176c",
            "brand_id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
            "wording": "Velours",
            "brand": {
                "id": "019f426a-6317-7134-bcd6-bc29de4b5adc",
                "wording": "Declercq",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-708a-72ed-b0f1-23e7c387f078",
            "brand_id": "019f426a-7072-7118-87ca-38402009f2d6",
            "wording": "Velours",
            "brand": {
                "id": "019f426a-7072-7118-87ca-38402009f2d6",
                "wording": "Palm Angels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-654b-71b9-a040-139cfd8dafb8",
            "brand_id": "019f426a-6540-734c-89a6-d32622373140",
            "wording": "Velsheda",
            "brand": {
                "id": "019f426a-6540-734c-89a6-d32622373140",
                "wording": "Speake-Marin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7901-7249-a4ad-ff173a7b5911",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Velvet Mary Janes",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6ca0-721e-aa42-540acde3b8f0",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Vendome",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-789c-73e9-8f6f-4de711167dfd",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Veneto",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7e9d-7208-9b5b-f4b7755247bc",
            "brand_id": "019f426a-7e97-71ca-844a-c96cb50c0617",
            "wording": "Venezia",
            "brand": {
                "id": "019f426a-7e97-71ca-844a-c96cb50c0617",
                "wording": "I Medici",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-786a-7032-85c6-295831f5ae62",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Venezia",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7767-7225-8f0e-7024b6b3ad78",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Venice",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9500-7375-8a6a-29795ede9ab1",
            "brand_id": "019f426a-94f8-7098-887a-df6479255e2a",
            "wording": "Venom 400",
            "brand": {
                "id": "019f426a-94f8-7098-887a-df6479255e2a",
                "wording": "Vango",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-8580-7352-adbf-9563202aeffd",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Ventless Dryer",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e1a-7301-a735-d9734dda556a",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Vento",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-81c4-717a-a43b-d4e33835d00b",
            "brand_id": "019f426a-81c3-72f0-82d5-da896ae60738",
            "wording": "Ventouse CelluBlue Originale",
            "brand": {
                "id": "019f426a-81c3-72f0-82d5-da896ae60738",
                "wording": "CelluBlue",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-92c1-7225-b4a9-3dc59be5f022",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Ventrix Hoodie",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9309-7350-9cd2-4eb90dc92f96",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Venu 3",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-930b-72d3-97b2-2d818bbc28b2",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Venu SQ2",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6ca9-7067-af33-f457ec8de96b",
            "brand_id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
            "wording": "Verenne",
            "brand": {
                "id": "019f426a-6c97-736d-8550-9e31aab9f7f8",
                "wording": "Goyard",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7a06-73c7-9539-1ac6d6172b73",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Verity",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5dd6-7395-902c-7fc84a875582",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Verity",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-4e60-7185-bc1c-60a63d74fcdd",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Vermeil",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6ba7-7382-9dd7-6c74b02768c1",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Vernis",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7874-73e7-be75-3b5033913c1e",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Verona",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4ac5-7253-8ddd-4b83defc4c8b",
            "brand_id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
            "wording": "Verres Harcourt",
            "brand": {
                "id": "019f426a-4ac1-71eb-a69a-ed0a90f4f473",
                "wording": "Baccarat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4aff-71ac-a055-12c9d00c5ff8",
            "brand_id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
            "wording": "Verres Modèle Graphik",
            "brand": {
                "id": "019f426a-4ae9-7387-8c4d-04ed1144e010",
                "wording": "Christofle",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-9414-7133-b963-fc46e15a2725",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Versaliner Gloves",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5f41-7029-a9fd-9b4f9a922ab7",
            "brand_id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
            "wording": "Versez Monsieur",
            "brand": {
                "id": "019f426a-5ecd-72f9-b429-c1f052749bfe",
                "wording": "Chanel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8f1e-7395-be16-054f6664d880",
            "brand_id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
            "wording": "Vertex",
            "brand": {
                "id": "019f426a-8f0a-7027-9a91-696ca73e35c4",
                "wording": "Petzl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-9304-73e5-9bc5-997766b99d29",
            "brand_id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
            "wording": "Vertical Solar",
            "brand": {
                "id": "019f426a-9301-722c-b6cc-f688aa30dc3a",
                "wording": "Suunto",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8dab-7247-b2ff-eab7fe51a690",
            "brand_id": "019f426a-8da2-734a-ba8f-398809cb6407",
            "wording": "Verticaux",
            "brand": {
                "id": "019f426a-8da2-734a-ba8f-398809cb6407",
                "wording": "Franciaflex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7892-7339-88d7-c7fa8c650f90",
            "brand_id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
            "wording": "Vespucci",
            "brand": {
                "id": "019f426a-7865-72d8-8da9-9ebe1e5651c9",
                "wording": "Chiarugi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9357-7164-9ffa-f02d6735fd52",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Veste Elevation GORE-TEX Hommes",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9359-7139-8a05-26ab9e0ef48e",
            "brand_id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
            "wording": "Veste TLT GORE-TEX Hommes",
            "brand": {
                "id": "019f426a-934a-70a4-bd00-b3dd32ea64c6",
                "wording": "Dynafit",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6ad8-70a8-802a-7e1be002663e",
            "brand_id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
            "wording": "Vestes",
            "brand": {
                "id": "019f426a-6ac2-7052-b249-10921bfbdc8c",
                "wording": "Tory Burch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6fa2-7384-aa6c-c3506a859e1f",
            "brand_id": "019f426a-6f7a-7306-9b83-a59f186bda58",
            "wording": "Vestes",
            "brand": {
                "id": "019f426a-6f7a-7306-9b83-a59f186bda58",
                "wording": "The Row",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-9093-7152-9612-2485e56f29cb",
            "brand_id": "019f426a-9084-7004-b972-4e9572939d41",
            "wording": "Vestes et Coupe-vent",
            "brand": {
                "id": "019f426a-9084-7004-b972-4e9572939d41",
                "wording": "Inesis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6ea8-7237-a45f-f46a364037cd",
            "brand_id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
            "wording": "Vestes et manteaux",
            "brand": {
                "id": "019f426a-6e9a-706e-9cd7-3d4df569447f",
                "wording": "Miu Miu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7330-70e2-a6d6-bd6c89ec4399",
            "brand_id": "019f426a-732b-7122-9a70-9e68239375f1",
            "wording": "Vestes et manteaux",
            "brand": {
                "id": "019f426a-732b-7122-9a70-9e68239375f1",
                "wording": "Alba Moda",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4ca3-7373-9771-7bd51e90a2ba",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Vestes et manteaux structurés",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-6c09-732f-99e8-aa9cbb581878",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Vetulonia",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-93ef-728d-90b2-7ee2ee1a3911",
            "brand_id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
            "wording": "Via Trail Series",
            "brand": {
                "id": "019f426a-93e1-70d3-9ba3-13e0e0ace622",
                "wording": "Montane",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5e20-7387-acaf-946f4e1f1251",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "Vibration",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-8f50-72eb-8c35-38eff56a4763",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Vibration Dampener",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-771c-73e0-92e5-59aa4e68e905",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Vicious Pant",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-4dc8-7384-9a1d-6ce710a8e3e2",
            "brand_id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
            "wording": "Vicky",
            "brand": {
                "id": "019f426a-4d9c-7251-9ccb-e46c8f6e0e56",
                "wording": "Luj",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-53b7-70f4-9483-8a121e8e6092",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Victim Of Love",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5067-7041-a58d-e7daefee81bf",
            "brand_id": "019f426a-505c-738f-9777-e0ca00eb337a",
            "wording": "Victoire",
            "brand": {
                "id": "019f426a-505c-738f-9777-e0ca00eb337a",
                "wording": "Morganne Bello",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-5436-7208-affe-4a3e41cb50aa",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Victor",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7e02-72a7-8503-98811fb14dfb",
            "brand_id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
            "wording": "Victoria",
            "brand": {
                "id": "019f426a-7e00-70da-8e41-93cb1d83ea9a",
                "wording": "Gregory Sylvia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7c81-719d-8a5b-ed13ba4810cd",
            "brand_id": "019f426a-7c7f-726f-b3fd-516023810c8c",
            "wording": "Victoria",
            "brand": {
                "id": "019f426a-7c7f-726f-b3fd-516023810c8c",
                "wording": "Erdem",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-773a-70af-920f-f89c1a87b025",
            "brand_id": "019f426a-7738-70e9-bfc9-4a33941747e2",
            "wording": "Victoria",
            "brand": {
                "id": "019f426a-7738-70e9-bfc9-4a33941747e2",
                "wording": "Carla Ferreri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-55b3-705b-b6fe-385e31ac6684",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Victoria",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-521f-7236-bacd-7ec8f6b7c076",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Victorine",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7d13-71e7-8cd1-692c07f08b0b",
            "brand_id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
            "wording": "Vidda Pro",
            "brand": {
                "id": "019f426a-7d0d-7278-b681-77a0f05b4c16",
                "wording": "Fjällräven",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-73ab-738a-9aae-b199965e666d",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Vigo",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9419-70b1-9dd9-7bfdcf41177e",
            "brand_id": "019f426a-9405-7355-a965-1a07937500aa",
            "wording": "Vigor Plus Fleece Jacket",
            "brand": {
                "id": "019f426a-9405-7355-a965-1a07937500aa",
                "wording": "Outdoor Research",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6eb7-70f1-8846-f112ccef3ff1",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Villagers",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7f84-70aa-8f0c-32ff861d0f89",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Vinoperfect Radiance Serum",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7f8b-73d8-b658-6adeb5c4771a",
            "brand_id": "019f426a-7f81-7160-9e25-1c6e522975fb",
            "wording": "Vinosource Moisturizing Sorbet",
            "brand": {
                "id": "019f426a-7f81-7160-9e25-1c6e522975fb",
                "wording": "Caudalie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-9200-70de-b3af-27ca8c5dd8ef",
            "brand_id": "019f426a-91db-701b-88cd-8530da84aa3a",
            "wording": "Vintage",
            "brand": {
                "id": "019f426a-91db-701b-88cd-8530da84aa3a",
                "wording": "Reebok",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-4892-70ab-ae73-44b52cf9d99d",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Vintage",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-6687-717d-bc7f-ae0387c2d0bf",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Vintage",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-7b5b-70d4-8976-0f767691837d",
            "brand_id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
            "wording": "Vintage",
            "brand": {
                "id": "019f426a-7b52-70f4-80c7-479c2e74d99a",
                "wording": "Dr. Martens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-66ac-71f2-bd70-9c74f0724953",
            "brand_id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
            "wording": "Vintage Muse",
            "brand": {
                "id": "019f426a-66a4-728b-afa8-40fd4e32bae5",
                "wording": "Fossil",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6914-73d6-9c63-679949a5e49e",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "Vinyl FLoral",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8f54-7092-83f1-319e69e7fc7b",
            "brand_id": "019f426a-8f32-722b-a164-061d9fad439d",
            "wording": "Viper",
            "brand": {
                "id": "019f426a-8f32-722b-a164-061d9fad439d",
                "wording": "Babolat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6106-70f1-9b93-ed32fd6e32b3",
            "brand_id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
            "wording": "Viper Aviator",
            "brand": {
                "id": "019f426a-60f9-7133-85a5-1301f5dbe00b",
                "wording": "Mer-Air-Terre",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-907b-7142-b195-9d72cecdd41d",
            "brand_id": "019f426a-9076-7175-8c2c-c844643bdd7c",
            "wording": "Virtuosity",
            "brand": {
                "id": "019f426a-9076-7175-8c2c-c844643bdd7c",
                "wording": "Zsport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8208-72dd-bec9-39fd3f5e2f2a",
            "brand_id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
            "wording": "Visage",
            "brand": {
                "id": "019f426a-8201-736c-9f3f-fdc8c953d2a8",
                "wording": "Naturado en Provence",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-823b-72c0-9c35-2efa268e8e3e",
            "brand_id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
            "wording": "Visage Exfoliant",
            "brand": {
                "id": "019f426a-8232-726a-ad30-848fe8bd5fb4",
                "wording": "Gamarde",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6a04-73aa-988e-aceda8e23e6d",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "Viscose",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-62e2-70c0-8363-58ad939de8e2",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "Vision Classic",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62e4-7352-9520-10b46a5a82be",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "Vision Limited",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-62dc-7161-a9e7-73fc40515aa0",
            "brand_id": "019f426a-62da-71b2-afb9-557d03136010",
            "wording": "Vision Shine",
            "brand": {
                "id": "019f426a-62da-71b2-afb9-557d03136010",
                "wording": "Greyhours",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-8af8-73b4-a383-0565a6d88d25",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "VitAir Steak Cage",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8af5-7355-a981-bffa0ed7bbda",
            "brand_id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
            "wording": "VitAir Turbo",
            "brand": {
                "id": "019f426a-8af3-71c4-a2d4-7ab477126fe1",
                "wording": "Klarstein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-88b1-73d7-bfc9-2ca7415e88a2",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Vital Capsule Filter",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88b3-714d-81a8-a8dcd10f8ba8",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Vital Capsule Filter Plus",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88b5-73ef-a8e6-6d080af3635c",
            "brand_id": "019f426a-88a5-73d0-9352-5ade04afc147",
            "wording": "Vital Capsule Filter XL",
            "brand": {
                "id": "019f426a-88a5-73d0-9352-5ade04afc147",
                "wording": "Franke",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8152-73d0-9da6-45ab706ab5d4",
            "brand_id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
            "wording": "Vitalité",
            "brand": {
                "id": "019f426a-814f-7376-a8c1-331e2fb20ed5",
                "wording": "Yon-Ka",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8119-7346-9dc4-9d0a7ec47d88",
            "brand_id": "019f426a-8113-7385-9a93-7939bb111740",
            "wording": "Vitamine A",
            "brand": {
                "id": "019f426a-8113-7385-9a93-7939bb111740",
                "wording": "Resultime",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5535-712f-b08d-80a540b80a45",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Vitello",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5525-719d-8a9a-bd9b2aea4792",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Vitello Bosco",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5528-7228-ac13-656035ef386d",
            "brand_id": "019f426a-5523-73d1-85c3-f695a79fddf2",
            "wording": "Vitello Chocolat",
            "brand": {
                "id": "019f426a-5523-73d1-85c3-f695a79fddf2",
                "wording": "Yvonne Koné",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-59ed-7253-8869-167291f0ef1c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Vittorio",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6f0b-70a3-a356-75389137b034",
            "brand_id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Viv'Canard",
            "brand": {
                "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
                "wording": "Roger Vivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6f0d-72d5-a124-5f0b5830dc4e",
            "brand_id": "019f426a-6f00-728b-a840-ddd7af753e0d",
            "wording": "Viv'Choc",
            "brand": {
                "id": "019f426a-6f00-728b-a840-ddd7af753e0d",
                "wording": "Roger Vivier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7ceb-7075-aa0f-51f36cf709d5",
            "brand_id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
            "wording": "Vivi",
            "brand": {
                "id": "019f426a-7ce2-73fa-9d78-f11d0214a0ee",
                "wording": "Fabletics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ec7-7182-949d-82139be49454",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Vivienne",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-930d-7354-96a1-3be91d152b00",
            "brand_id": "019f426a-9307-7204-a684-36d5edec915a",
            "wording": "Vivoactive 4",
            "brand": {
                "id": "019f426a-9307-7204-a684-36d5edec915a",
                "wording": "Garmin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6a64-7130-bfac-456b7189fd9c",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Vlogo",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6a74-7362-af84-a345477acaf8",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Vlogo Lune",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4e5b-7227-aa6e-5c7f54b83332",
            "brand_id": "019f426a-4e19-728e-a7c1-e652c0260e31",
            "wording": "Voie Lactée",
            "brand": {
                "id": "019f426a-4e19-728e-a7c1-e652c0260e31",
                "wording": "Nogu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-8cf9-729c-9837-a5d8b3b49463",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Voitures particulières",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ee2-7131-b68b-9507a41a18a8",
            "brand_id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
            "wording": "Vojo",
            "brand": {
                "id": "019f426a-7edd-73e7-ac85-7886a7be3b07",
                "wording": "Jack Wolfskin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6eb0-7335-9356-46e0eaddf751",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Volant dress",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7dc7-73ea-a3f7-221ea4cdd942",
            "brand_id": "019f426a-7dc3-7321-bc6a-60d33157644d",
            "wording": "Volants",
            "brand": {
                "id": "019f426a-7dc3-7321-bc6a-60d33157644d",
                "wording": "Glamorous",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7493-7121-a303-9a68da43b466",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Volants",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-6f24-72cf-a82b-3e6afe1f84a8",
            "brand_id": "019f426a-6f12-71f6-b811-c16049578f18",
            "wording": "Volants",
            "brand": {
                "id": "019f426a-6f12-71f6-b811-c16049578f18",
                "wording": "Judith Leiber",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6be1-70c7-8a7a-3f45888aaee2",
            "brand_id": "019f426a-6bc6-716f-b08c-97b69037e75f",
            "wording": "Volterra",
            "brand": {
                "id": "019f426a-6bc6-716f-b08c-97b69037e75f",
                "wording": "Pratesi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5175-7105-a732-9be08504bd51",
            "brand_id": "019f426a-5162-704e-a709-efae49fb0a16",
            "wording": "Voluforme",
            "brand": {
                "id": "019f426a-5162-704e-a709-efae49fb0a16",
                "wording": "Léonor Greyl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-7f7c-73a1-90d1-52ebbbf4e65a",
            "brand_id": "019f426a-7f76-7366-b242-ab90d86b0432",
            "wording": "Volume Glamour Max Mascara",
            "brand": {
                "id": "019f426a-7f76-7366-b242-ab90d86b0432",
                "wording": "Bourjois",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fce-73e3-be0f-e04585149dd4",
            "brand_id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
            "wording": "Volumea",
            "brand": {
                "id": "019f426a-7fc4-73d5-8f5c-5e3a3c7d2e3f",
                "wording": "Rene Furterer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7e45-709b-bf06-7a3194c10430",
            "brand_id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
            "wording": "Voss",
            "brand": {
                "id": "019f426a-7e3f-7159-904b-e9de9a1b212e",
                "wording": "Helly Hansen",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7ebc-727b-8ac9-ac2783446101",
            "brand_id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
            "wording": "Voyage",
            "brand": {
                "id": "019f426a-7eb4-7159-9cb8-4062651a6e09",
                "wording": "Il Bisonte",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6995-70da-9604-32e05e6cd964",
            "brand_id": "019f426a-6987-72c9-b947-f3f6156b9763",
            "wording": "Voyou",
            "brand": {
                "id": "019f426a-6987-72c9-b947-f3f6156b9763",
                "wording": "Givenchy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6a6a-72af-a375-003a0ca28120",
            "brand_id": "019f426a-6a60-7326-963d-666030657fed",
            "wording": "Vsling",
            "brand": {
                "id": "019f426a-6a60-7326-963d-666030657fed",
                "wording": "Valentino",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6d64-7017-8e6a-65cda4390b85",
            "brand_id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
            "wording": "Vulcanisé",
            "brand": {
                "id": "019f426a-6d4e-71e7-983e-47e0d084b0f2",
                "wording": "Off-White",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7ce0-7236-9640-f91626b7ff55",
            "brand_id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
            "wording": "Vélo",
            "brand": {
                "id": "019f426a-7cd4-72d6-99ea-3072ebe34805",
                "wording": "Evoc",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-90de-713c-9453-e4fff829bf3d",
            "brand_id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
            "wording": "Vélos pliants",
            "brand": {
                "id": "019f426a-90d1-7245-a4b2-18fb85b0bd70",
                "wording": "B'Twin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6b3b-7303-98d5-ce2a462faa86",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Vélès",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5793-70dc-a38f-6a69b2b8fff0",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "Vénitienne",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-65a3-709f-a58a-2c1c7aec6a73",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "Vésuve",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-90cb-702c-9d6a-3600e6ce6139",
            "brand_id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
            "wording": "Vêtements de Fitness",
            "brand": {
                "id": "019f426a-90c5-726d-898e-ce31e7c1e12b",
                "wording": "Panzeri",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-85dd-71dd-8174-4bd66498986d",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "W1 Classic",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85d9-71e9-b5b3-f4192ce5edf7",
            "brand_id": "019f426a-85d8-729b-be42-312999c83f85",
            "wording": "W1 PowerWash",
            "brand": {
                "id": "019f426a-85d8-729b-be42-312999c83f85",
                "wording": "Miele",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d1b-7077-a280-cb99413e5bb3",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "W64F68/I",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-862d-7265-a3e5-d9354e4eba59",
            "brand_id": "019f426a-861e-72e2-8522-9c3598867737",
            "wording": "W70-B14636",
            "brand": {
                "id": "019f426a-861e-72e2-8522-9c3598867737",
                "wording": "Haier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8d1a-7099-8fbc-03ad672dd1bb",
            "brand_id": "019f426a-8d16-7316-b992-1132aa5aba8b",
            "wording": "W94F65/I",
            "brand": {
                "id": "019f426a-8d16-7316-b992-1132aa5aba8b",
                "wording": "Gorenje",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b2f-72c4-b4c5-699b8c9f9abc",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "WA Soft 8F4",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-59cf-73fb-bab6-68ce65e3609e",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "WALLABEE",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8ea5-71db-9dcd-75609ab89483",
            "brand_id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
            "wording": "WARMWIND800",
            "brand": {
                "id": "019f426a-8e96-7299-b9a1-c68dbae1b927",
                "wording": "EWT",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-59c2-73c7-8f9b-14ef2fa9d24c",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "WARREN",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8ec3-701e-b6fa-47fb329f80b5",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "WATCHER",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b31-7320-bb84-08ba7eb032cb",
            "brand_id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
            "wording": "WATK Sense 97G",
            "brand": {
                "id": "019f426a-8b24-7246-a125-7cbd4a6c962b",
                "wording": "Bauknecht",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-87bf-70f2-8534-e0b1d68190b9",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "WDBL1014V",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8ec2-716e-880e-ea8910898d1a",
            "brand_id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
            "wording": "WEEL",
            "brand": {
                "id": "019f426a-8eb5-7029-a483-b7b3eb8fb838",
                "wording": "Extel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6e20-7299-a963-8b2cfe4a4908",
            "brand_id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
            "wording": "WELLNESS ART M",
            "brand": {
                "id": "019f426a-6df2-71cd-8c19-32f258fbeac1",
                "wording": "Kipling",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-5a05-7109-bb4e-31392e2d6899",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "WERNER",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-8d4e-721b-ac72-c1fe4c72a9da",
            "brand_id": "019f426a-8d4b-70b4-9837-86138eab5405",
            "wording": "WF331",
            "brand": {
                "id": "019f426a-8d4b-70b4-9837-86138eab5405",
                "wording": "Simeo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-87c3-72f7-9054-5e3c4be560fd",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "WFHV9014",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87c1-706b-96b1-352e015dbe8d",
            "brand_id": "019f426a-87b2-737e-a2ef-4067d08a0701",
            "wording": "WFPV9014EM",
            "brand": {
                "id": "019f426a-87b2-737e-a2ef-4067d08a0701",
                "wording": "Hisense",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-84a6-73b9-8fca-0e993aaca54d",
            "brand_id": "019f426a-848d-732b-9595-606b2c3d73f7",
            "wording": "WHT714EIT",
            "brand": {
                "id": "019f426a-848d-732b-9595-606b2c3d73f7",
                "wording": "Smeg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-59a6-73e2-8604-f32ee05ba9a1",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "WILDERNESS",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-5991-7373-b4ad-ca9d02dadc08",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "WILL",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6820-736c-97dd-7ce2cfd385d8",
            "brand_id": "019f426a-67ed-7047-a57b-42d7865c4f15",
            "wording": "WINDSOR",
            "brand": {
                "id": "019f426a-67ed-7047-a57b-42d7865c4f15",
                "wording": "Coach",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-87e2-7340-9789-6d75b0608959",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "WKR 4211",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87fb-73a2-8259-4da90b178820",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "WKb 1812",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87ff-70e2-9d72-644efda05b99",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "WKb 4612",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87fd-7191-9a99-748940557933",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "WKes 4552",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87e0-721b-bb24-4b3ae8005ae6",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "WKt 4552",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-89b8-7345-bd11-cf2f143e2208",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "WM 1007 XE",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89ba-71cc-8ef8-1b80f798c9f5",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "WM 814 A+",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-89bc-71fa-a8f3-771e04159f44",
            "brand_id": "019f426a-89a3-7032-b372-0b95313d011a",
            "wording": "WM 814 R",
            "brand": {
                "id": "019f426a-89a3-7032-b372-0b95313d011a",
                "wording": "Valberg",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8814-72ee-a7ee-80619f752505",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "WMA1477IX",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8812-73ad-8cdf-d906547f51f1",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "WMA1477S",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-880f-7235-bc14-a19dfcce2bb4",
            "brand_id": "019f426a-8801-7200-8455-cc76baa64430",
            "wording": "WMA1477W",
            "brand": {
                "id": "019f426a-8801-7200-8455-cc76baa64430",
                "wording": "NordMende",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8b63-729f-9493-34fefe56ef51",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "WMB 91440 LW",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8b65-7036-b055-b880bad08733",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "WMY 91446 HLB1",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-85fc-7318-b2f9-66fcccb01ece",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "WMY71433PTLE",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85fd-72b0-ae3d-751410f3e400",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "WMY91483PTLE",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8eb3-70f8-83a9-eb882b617524",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "WS500",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8b62-7329-b9bf-dc16d7140a64",
            "brand_id": "019f426a-8b59-724e-bd04-5691879c01b3",
            "wording": "WTV7732XW0",
            "brand": {
                "id": "019f426a-8b59-724e-bd04-5691879c01b3",
                "wording": "Beko Grundig",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8617-7347-922b-86daebe086cc",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "WTV7732XW0",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-85fa-70bc-8cd4-b0992011466e",
            "brand_id": "019f426a-85f8-71b1-9dbe-6a3786414428",
            "wording": "WTV8736XS0W",
            "brand": {
                "id": "019f426a-85f8-71b1-9dbe-6a3786414428",
                "wording": "Beko",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-87de-73cc-8ec1-e255453eff3b",
            "brand_id": "019f426a-87ce-7391-96c5-7acdb4661523",
            "wording": "WTb 4212",
            "brand": {
                "id": "019f426a-87ce-7391-96c5-7acdb4661523",
                "wording": "Liebherr",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-6694-712c-9ca3-78ef276b95c0",
            "brand_id": "019f426a-667c-706c-a598-65b86486df82",
            "wording": "Wake Up Timer",
            "brand": {
                "id": "019f426a-667c-706c-a598-65b86486df82",
                "wording": "Casio",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6c8c-733d-9823-d7ea3e2e9969",
            "brand_id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
            "wording": "Walker",
            "brand": {
                "id": "019f426a-6c79-70e3-84b9-9d3f53b5316c",
                "wording": "Proenza Schouler",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-798d-7133-b9dc-6524015e66d8",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Wall Art",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-85b1-70af-9a1f-d6064d8803ee",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Wall-Mounted Air Conditioner",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-586f-7100-9d56-86aebf7a4678",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Waller",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7528-7165-a5e6-c280113bed5c",
            "brand_id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
            "wording": "Wallet",
            "brand": {
                "id": "019f426a-7524-706d-a62b-a9f4295c9ddd",
                "wording": "Borbonese",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7500-720e-b4e9-9e3fe7cc638a",
            "brand_id": "019f426a-74f5-722a-8126-aa676fb6249d",
            "wording": "Wallet",
            "brand": {
                "id": "019f426a-74f5-722a-8126-aa676fb6249d",
                "wording": "Bimba y Lola",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-753c-70d4-b6b3-c2171721deaf",
            "brand_id": "019f426a-7536-71e1-9968-4e8b59ebca47",
            "wording": "Wallet",
            "brand": {
                "id": "019f426a-7536-71e1-9968-4e8b59ebca47",
                "wording": "Boyy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7597-732c-9f0e-3ba38b69a7ce",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Wallet",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-79e9-701c-8fc6-fc2f741c9f9c",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Wallet Zip-Around Leather Wallet",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-94f4-7203-a459-51bc891aaec3",
            "brand_id": "019f426a-94e6-738a-bf92-96dcf928fc14",
            "wording": "Walnut Hill Roll Top Backpack",
            "brand": {
                "id": "019f426a-94e6-738a-bf92-96dcf928fc14",
                "wording": "Timberland",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-6bbc-73fd-a02b-f6a5c94023e9",
            "brand_id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
            "wording": "Wanda",
            "brand": {
                "id": "019f426a-6b94-7161-aab1-da5b680bbb0c",
                "wording": "Salvatore Ferragamo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-937e-7181-9175-42d7b960c267",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Wander",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7271-728f-ab77-4226c9d3802c",
            "brand_id": "019f426a-7268-7054-a610-0474d39467f1",
            "wording": "Wanderer",
            "brand": {
                "id": "019f426a-7268-7054-a610-0474d39467f1",
                "wording": "Urban Originals",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-92c2-7177-8342-c607bcaf63f8",
            "brand_id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
            "wording": "Warm Tights",
            "brand": {
                "id": "019f426a-92ad-7197-beeb-5b2d94dfab7a",
                "wording": "The North Face",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8f6e-72ea-8b0a-3bb76e59ce78",
            "brand_id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
            "wording": "Warm'n Light 800",
            "brand": {
                "id": "019f426a-8f58-7301-a47e-9c0e8b8bbef6",
                "wording": "Lafuma",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6d7a-71dd-82b2-1a82911095c2",
            "brand_id": "019f426a-6d6a-738a-9924-8fded3390772",
            "wording": "Warren",
            "brand": {
                "id": "019f426a-6d6a-738a-9924-8fded3390772",
                "wording": "Botkier",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8573-713f-b6fe-644089f7fb41",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Washer Dryer Combo",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-736f-7084-aa00-b295b4e6bc37",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Wasson",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-772b-73f6-a82c-25fee4757720",
            "brand_id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
            "wording": "Watch",
            "brand": {
                "id": "019f426a-7706-72f4-a8c1-c5762c4c6c0d",
                "wording": "Carhartt WIP",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9037-7230-a85d-06c60ac9004f",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Water Bottle",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7bc4-70c5-8592-1a40d418b2a4",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Waterproof Parka",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-94a4-7369-aeaa-e536cf5b8bed",
            "brand_id": "019f426a-948a-70f9-958d-24eba0c8facc",
            "wording": "Waterproof Pouch",
            "brand": {
                "id": "019f426a-948a-70f9-958d-24eba0c8facc",
                "wording": "Speedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7991-7126-bf41-243430f538a9",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Watertight II",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-79cb-71bf-b9d5-626d68297a88",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Watertight II Jacket",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6ccc-7127-ab3c-72539b20368c",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "Wave",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-9100-7001-9f74-a2ca52dc62e0",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Wave",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-78c5-72b6-b5a4-5bc076ab2b56",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Wave",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-9166-7281-ab22-13d44659719a",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Wave",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9145-72a3-be10-184650738318",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Wave Inspire",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-914d-7014-ba99-cf683b1e479a",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Wave Lightning",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9143-71b4-b8e9-a823ccdd83d0",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Wave Rider",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9147-7299-960a-c62d1a248c8d",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Wave Sky",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-914e-7276-8e81-af168b9c3d4d",
            "brand_id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
            "wording": "Wave Tornado",
            "brand": {
                "id": "019f426a-9142-714a-99f9-2a1b898d5dcf",
                "wording": "Mizuno",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6f52-71cc-9858-88b1ea2cff9a",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Waverley",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-767d-7253-bf1f-09d3b53a2a44",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Wayfarer Sunglasses",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-783b-70fe-af5b-2839801ddce4",
            "brand_id": "019f426a-7821-7005-8424-a1c097d4eb58",
            "wording": "Web",
            "brand": {
                "id": "019f426a-7821-7005-8424-a1c097d4eb58",
                "wording": "Charlotte Olympia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6b42-71c9-bc69-dc319641bc3d",
            "brand_id": "019f426a-6b1c-729f-b820-652e40b252a6",
            "wording": "Wedge 95",
            "brand": {
                "id": "019f426a-6b1c-729f-b820-652e40b252a6",
                "wording": "Jimmy Choo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7b34-71d7-bed5-dcbc7c1d86a0",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Wedge Sandals",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6dbe-705d-8263-c8dd21835ca0",
            "brand_id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
            "wording": "Week-end",
            "brand": {
                "id": "019f426a-6d9e-7039-a98a-1f61dc6d7f33",
                "wording": "Clare V.",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-70c6-7062-a31f-e9f2813c8fe1",
            "brand_id": "019f426a-70bb-72ca-81f2-0097d1d48509",
            "wording": "Week-end Hilo",
            "brand": {
                "id": "019f426a-70bb-72ca-81f2-0097d1d48509",
                "wording": "Rains",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-759b-7189-9d4c-f75f3be6d568",
            "brand_id": "019f426a-758d-72d9-a813-6c834f8d180c",
            "wording": "Weekend Bag",
            "brand": {
                "id": "019f426a-758d-72d9-a813-6c834f8d180c",
                "wording": "BULAGGI",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7a5e-7138-b4a6-10a5a606437d",
            "brand_id": "019f426a-7a3e-736b-ac87-06900fdfd739",
            "wording": "Weekender",
            "brand": {
                "id": "019f426a-7a3e-736b-ac87-06900fdfd739",
                "wording": "Corto Moltedo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-6f6d-7377-a160-b4b4233f1c2d",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "Weekender",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7dd3-7316-acd1-3e171da62bf5",
            "brand_id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
            "wording": "Weekender",
            "brand": {
                "id": "019f426a-7dcd-72e6-b2c5-19031fbbcabd",
                "wording": "Go Dash Dot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7700-7029-b2aa-453caab7d5de",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Weekender Bag",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6afd-71cb-a326-2ed7c692b372",
            "brand_id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
            "wording": "Welington",
            "brand": {
                "id": "019f426a-6aeb-7041-a39c-7a4432c3721b",
                "wording": "Ralph Lauren",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-7f19-738f-bdb2-54348ce52dee",
            "brand_id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Wellyprint",
            "brand": {
                "id": "019f426a-7f17-735b-b944-c2b58be34b83",
                "wording": "Joules",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-5898-7285-85ef-ac7a26500156",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Wesson",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6c72-73a3-ac2b-b283632de4be",
            "brand_id": "019f426a-6c62-7299-b860-c902a2c63428",
            "wording": "West",
            "brand": {
                "id": "019f426a-6c62-7299-b860-c902a2c63428",
                "wording": "Rebecca Minkoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-5b1c-73d7-af9a-6d2fd8d7c13a",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Westbury",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7d36-7021-95c2-897f7f397aef",
            "brand_id": "019f426a-7d33-7136-87db-90f8d2b47523",
            "wording": "Weston",
            "brand": {
                "id": "019f426a-7d33-7136-87db-90f8d2b47523",
                "wording": "Frye",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9052-705c-b3bf-69983f291568",
            "brand_id": "019f426a-9038-7370-8675-1ae6155b47d8",
            "wording": "Whey Protein",
            "brand": {
                "id": "019f426a-9038-7370-8675-1ae6155b47d8",
                "wording": "Punch Power",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7998-715b-8d26-fa4a24434471",
            "brand_id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
            "wording": "Whirlibird IV Interchange",
            "brand": {
                "id": "019f426a-798f-70b4-adc0-9cd4d61f228c",
                "wording": "Columbia",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-926b-7130-bb7b-cf8ef35017e8",
            "brand_id": "019f426a-9250-70d2-8b06-538054361f4f",
            "wording": "Whisper Rain Jacket",
            "brand": {
                "id": "019f426a-9250-70d2-8b06-538054361f4f",
                "wording": "Merrell",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-7f07-716a-b403-ea774a443ffa",
            "brand_id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
            "wording": "Whistles",
            "brand": {
                "id": "019f426a-7f01-71b5-9716-2ab5d17973ba",
                "wording": "John Lewis & Partners",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6cd7-710d-9fa5-521bc4285f58",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "White",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8102-7185-85aa-dae4a361978a",
            "brand_id": "019f426a-80fe-70ac-8078-326a880c7810",
            "wording": "White Caviar",
            "brand": {
                "id": "019f426a-80fe-70ac-8078-326a880c7810",
                "wording": "La Prairie",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7fb7-72ce-85e4-c66fafe921db",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "White Lumination",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-81e5-7335-9d4a-38ea021cd439",
            "brand_id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
            "wording": "Whole Again",
            "brand": {
                "id": "019f426a-81dd-727a-adfb-4ef04ee65fc4",
                "wording": "Oolution",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7f1f-710e-82fa-cd9ee916999c",
            "brand_id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Wick",
            "brand": {
                "id": "019f426a-7f17-735b-b944-c2b58be34b83",
                "wording": "Joules",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-93a9-70b2-b0ab-4f9f6486db8f",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "Wicket keeping gloves",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-76f4-725d-b3ec-41b2fc753fa4",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Wide Belt",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7ba7-72df-90fc-50a6185fbf6e",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Wide Brim Hat",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ace-71aa-981a-fd6583d2fde9",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Wide Leg Pants",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b29-70cf-a442-757e0a224a13",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Wide Leg Trousers",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-751d-701b-8dde-744934a6ae4c",
            "brand_id": "019f426a-7513-729b-9584-37728e53408e",
            "wording": "Wide-Leg Pants",
            "brand": {
                "id": "019f426a-7513-729b-9584-37728e53408e",
                "wording": "Boohoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-794e-72db-8067-c97e68f6921d",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Wide-Leg Trousers",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-8f9f-701e-ae52-819e9767d88b",
            "brand_id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
            "wording": "Wild",
            "brand": {
                "id": "019f426a-8f9a-73a8-8280-9ba56c50d099",
                "wording": "Cébé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5049-7212-ab40-120ae46428ca",
            "brand_id": "019f426a-5001-73bc-8626-477d33a0a14e",
            "wording": "Wild charms",
            "brand": {
                "id": "019f426a-5001-73bc-8626-477d33a0a14e",
                "wording": "Adeline Cacheux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-726d-71aa-8db5-eeddcf857db7",
            "brand_id": "019f426a-7268-7054-a610-0474d39467f1",
            "wording": "Wilder",
            "brand": {
                "id": "019f426a-7268-7054-a610-0474d39467f1",
                "wording": "Urban Originals",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9433-703a-8fab-512d0910af84",
            "brand_id": "019f426a-9431-7392-a47d-a58a51ca60bb",
            "wording": "Wildfire Edge",
            "brand": {
                "id": "019f426a-9431-7392-a47d-a58a51ca60bb",
                "wording": "Salewa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-5c2b-719b-ae3b-bbd2757dec5f",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Willow",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6f5b-727b-a6ea-e2bf257b041a",
            "brand_id": "019f426a-6f49-7202-9c84-90b9c4cab615",
            "wording": "Wilson",
            "brand": {
                "id": "019f426a-6f49-7202-9c84-90b9c4cab615",
                "wording": "Anya Hindmarch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7d5f-71f1-9ba3-4c7be9ce66b6",
            "brand_id": "019f426a-7d5e-717d-b460-7757ff76f29a",
            "wording": "Wilson",
            "brand": {
                "id": "019f426a-7d5e-717d-b460-7757ff76f29a",
                "wording": "Garrett Leight",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-85b0-7322-8628-ae7004f257be",
            "brand_id": "019f426a-859b-72d6-a323-e94413bea78a",
            "wording": "Wind-Free Air Conditioner",
            "brand": {
                "id": "019f426a-859b-72d6-a323-e94413bea78a",
                "wording": "Samsung",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-74d2-708a-bdf1-72aca0cd0c59",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Windbreaker",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-9123-73ad-a276-ef0fb97fa3dc",
            "brand_id": "019f426a-910a-7157-b597-56eedfbe5466",
            "wording": "Windbreaker Jacket",
            "brand": {
                "id": "019f426a-910a-7157-b597-56eedfbe5466",
                "wording": "Fila",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-9105-7360-998f-7bb4c45eac8d",
            "brand_id": "019f426a-90f7-7168-a9a5-22defa430884",
            "wording": "Windbreakers and Jackets",
            "brand": {
                "id": "019f426a-90f7-7168-a9a5-22defa430884",
                "wording": "Zoot",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-88f9-73cd-8bbe-4bcf31b3bac6",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Windomatic",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8591-70f0-8188-18dfc8353c98",
            "brand_id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
            "wording": "Window Air Conditioner",
            "brand": {
                "id": "019f426a-8551-72ba-bbcb-aaf738a6a3c6",
                "wording": "LG",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-88fb-714a-b5d4-894728c7f4a4",
            "brand_id": "019f426a-88e5-73a9-b88c-1d25442500ee",
            "wording": "Window Cleaner",
            "brand": {
                "id": "019f426a-88e5-73a9-b88c-1d25442500ee",
                "wording": "Lavor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8e18-70a5-8459-f3593e92d41b",
            "brand_id": "019f426a-8e01-73e6-946b-e2e759f15b02",
            "wording": "Windy",
            "brand": {
                "id": "019f426a-8e01-73e6-946b-e2e759f15b02",
                "wording": "Delonghi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6b62-71d5-9084-b0e9f484afbe",
            "brand_id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
            "wording": "Wings",
            "brand": {
                "id": "019f426a-6b60-703a-9fbd-b5334dfac94f",
                "wording": "Stella McCartney",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-94b4-704d-8423-b12833960a11",
            "brand_id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
            "wording": "Winner GTX Pants",
            "brand": {
                "id": "019f426a-94a7-7347-90d5-d0e6af31c4cd",
                "wording": "Spyder",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6371-7151-9339-df4f6ad88569",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Winston Churchill",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7bd7-7071-8600-4b41a5c864e4",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Winter Snow Boots",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7985-72ef-9c84-32ad006e55b4",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Wireless Earbuds",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-950e-7032-92c6-7184790ac8ec",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Wizard 24+4",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-89c5-70d5-9969-4bf6fd5c165e",
            "brand_id": "019f426a-89be-710d-bdba-6685515751f4",
            "wording": "Wok 28cm",
            "brand": {
                "id": "019f426a-89be-710d-bdba-6685515751f4",
                "wording": "Supor",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-5b18-7063-ac1b-691f058fef8e",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Wolcott",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-7e3d-723d-a83c-2d6888da71af",
            "brand_id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
            "wording": "Wolcott",
            "brand": {
                "id": "019f426a-7e32-7256-83dd-b3c9e49c1f1a",
                "wording": "Hayden-Harnett",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7c02-7040-b725-dc73f5da44de",
            "brand_id": "019f426a-7bf9-718e-bc32-1476fa564f88",
            "wording": "Wolf Bag",
            "brand": {
                "id": "019f426a-7bf9-718e-bc32-1476fa564f88",
                "wording": "Edie Parker",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9517-7162-b02e-e1eb1b5948e6",
            "brand_id": "019f426a-950b-7153-816a-d4668c21ff39",
            "wording": "Women's Farley Stretch Pants",
            "brand": {
                "id": "019f426a-950b-7153-816a-d4668c21ff39",
                "wording": "Vaude",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-7fdc-72a2-b597-58236fdf97dc",
            "brand_id": "019f426a-7fd4-7040-9868-876194e1e816",
            "wording": "Wonder'Fully Real",
            "brand": {
                "id": "019f426a-7fd4-7040-9868-876194e1e816",
                "wording": "Rimmel London",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-726a-722c-b06d-8c3580f8c306",
            "brand_id": "019f426a-7268-7054-a610-0474d39467f1",
            "wording": "Wonderland",
            "brand": {
                "id": "019f426a-7268-7054-a610-0474d39467f1",
                "wording": "Urban Originals",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-79f8-7090-bdf5-d1b6bce2f8bf",
            "brand_id": "019f426a-79d9-715f-843c-94515df60363",
            "wording": "Wonderwood Eau de Parfum",
            "brand": {
                "id": "019f426a-79d9-715f-843c-94515df60363",
                "wording": "Comme des Garçons",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b79-733e-b3ae-eb3a3d970888",
            "brand_id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
            "wording": "Wood",
            "brand": {
                "id": "019f426a-7b5d-7396-bac4-aa5d23b2a4a6",
                "wording": "DSquared2",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5bf1-71d0-98bd-37d3878e7864",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Woodside",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6b19-701c-853a-708125610ed2",
            "brand_id": "019f426a-6b11-7019-bbec-da98c9ee1478",
            "wording": "Woody",
            "brand": {
                "id": "019f426a-6b11-7019-bbec-da98c9ee1478",
                "wording": "Chloe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-92a9-7391-875c-bc282f572c9d",
            "brand_id": "019f426a-9274-736d-a179-663f3edb72ef",
            "wording": "Wool Blend 200",
            "brand": {
                "id": "019f426a-9274-736d-a179-663f3edb72ef",
                "wording": "Millet",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-78b9-727c-bfad-8e04da79afba",
            "brand_id": "019f426a-789f-7213-8323-2dd94ef41843",
            "wording": "Wool Blend Coat",
            "brand": {
                "id": "019f426a-789f-7213-8323-2dd94ef41843",
                "wording": "Chloé",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-766a-712f-a52e-8b4e80945e3d",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Wool Blend Suit",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-78f2-7213-ac9b-b2f883303ce2",
            "brand_id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
            "wording": "Wool Blend Wrap",
            "brand": {
                "id": "019f426a-78da-71ba-b5a7-4e485abfa6e7",
                "wording": "Christian Lacroix",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-74e4-7108-9039-24ac368ed4a5",
            "brand_id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
            "wording": "Wool Coat",
            "brand": {
                "id": "019f426a-74da-735b-adc6-5c691c7d7e2f",
                "wording": "Benetton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7509-7386-9b63-0dd92406ef24",
            "brand_id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
            "wording": "Wool Coat",
            "brand": {
                "id": "019f426a-7503-7130-89c7-8dbd10c80a5f",
                "wording": "Blauer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7bc8-7328-84ab-cf0b01324505",
            "brand_id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
            "wording": "Wool Jumper",
            "brand": {
                "id": "019f426a-7bbd-72a0-9155-2915fd4dea55",
                "wording": "Ecoalf",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a6f-7267-88ac-28eda384325b",
            "brand_id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "Wool Overcoat",
            "brand": {
                "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
                "wording": "DAKS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a6a-7285-800c-949048aabb66",
            "brand_id": "019f426a-7a68-7267-ba64-09e13a2f2681",
            "wording": "Wool Suit",
            "brand": {
                "id": "019f426a-7a68-7267-ba64-09e13a2f2681",
                "wording": "DAKS",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7aea-70bc-ad44-ffb7473e01f6",
            "brand_id": "019f426a-7ae1-720c-a183-d66307e3d90a",
            "wording": "Wool Suit",
            "brand": {
                "id": "019f426a-7ae1-720c-a183-d66307e3d90a",
                "wording": "Dolce & Gabbana",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7f1d-71de-8ab7-b7984e7f5af4",
            "brand_id": "019f426a-7f17-735b-b944-c2b58be34b83",
            "wording": "Wooler",
            "brand": {
                "id": "019f426a-7f17-735b-b944-c2b58be34b83",
                "wording": "Joules",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-93ba-71ae-b9fa-78342c9725b9",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Worldcup Lite",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93b4-73eb-982e-35cd65b9579f",
            "brand_id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
            "wording": "Worldcup Racing",
            "brand": {
                "id": "019f426a-93b2-73f3-a0b6-64c70a346f2f",
                "wording": "Leki",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6ec9-736b-b084-5557a7b89c33",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Wow",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7663-70a7-823d-d85b89f67082",
            "brand_id": "019f426a-764c-7031-b8a2-c059e5c06893",
            "wording": "Wrap Dress",
            "brand": {
                "id": "019f426a-764c-7031-b8a2-c059e5c06893",
                "wording": "Calvin Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7b1f-7187-9095-4328692d2b08",
            "brand_id": "019f426a-7b1b-7331-802f-e01434232ad6",
            "wording": "Wrap Dress",
            "brand": {
                "id": "019f426a-7b1b-7331-802f-e01434232ad6",
                "wording": "Dorothy Perkins",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7b8f-71c9-8496-02da53507967",
            "brand_id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
            "wording": "Wrap Dress",
            "brand": {
                "id": "019f426a-7b8c-736a-bdbb-be65ef392a9a",
                "wording": "East",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ac7-7336-b820-ce52d9916313",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Wrap Dress",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7949-72c0-9978-65757cee7c32",
            "brand_id": "019f426a-793f-73bb-b337-a335d5d35d13",
            "wording": "Wrap Dress",
            "brand": {
                "id": "019f426a-793f-73bb-b337-a335d5d35d13",
                "wording": "Colette",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-5905-7063-95cd-50108c9f1fb7",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Wrigley",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7a83-73c0-9b60-1021eef90aa4",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Wristlet",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7ad5-7300-b869-ca5771891a91",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Wristlet",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a85-735a-9162-6108048ff3c5",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Wristlet Clutch",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-918d-700a-906f-ff1d576709fb",
            "brand_id": "019f426a-9180-7129-b7b9-c62e0176475f",
            "wording": "X",
            "brand": {
                "id": "019f426a-9180-7129-b7b9-c62e0176475f",
                "wording": "Adidas",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8efe-709c-9595-5d527c2d5e26",
            "brand_id": "019f426a-8ef8-7065-9152-7de8a743429a",
            "wording": "X Ultra",
            "brand": {
                "id": "019f426a-8ef8-7065-9152-7de8a743429a",
                "wording": "Salomon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-66c9-723c-a007-6bdd7152cc5b",
            "brand_id": "019f426a-66bc-73ec-b7ec-f911db97f536",
            "wording": "X You",
            "brand": {
                "id": "019f426a-66bc-73ec-b7ec-f911db97f536",
                "wording": "Swatch",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-8a99-730d-a50b-5ca216094531",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "X'ellence 3",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a9e-71a0-b18a-35115214fa22",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "X'prime 2",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8a9c-734c-bc11-73ab9344f962",
            "brand_id": "019f426a-8a91-7176-9bee-793c83b6058b",
            "wording": "X'prime 3",
            "brand": {
                "id": "019f426a-8a91-7176-9bee-793c83b6058b",
                "wording": "Domena",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-64a7-7398-acc3-639fa14d5133",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "X- Contact",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7162-70ad-933f-6aaf2431d9c1",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "X-IUM Classic",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6b84-718f-897b-085ab494272d",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "X-Large",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b8c-73b3-9fef-82d9252c64e9",
            "brand_id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
            "wording": "X-MINI",
            "brand": {
                "id": "019f426a-6b7e-7070-b8f5-1d9d82c524af",
                "wording": "MCM",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6408-701e-bd04-8f1c80713a12",
            "brand_id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
            "wording": "X-TREM-1",
            "brand": {
                "id": "019f426a-63fa-7180-bc9f-2c9d49a30c3e",
                "wording": "Christophe Claret",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-7558-7336-a8ca-628c4554bfed",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "X-Travel Backpack",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7552-7121-9e85-16dbfb6e0fbf",
            "brand_id": "019f426a-754e-7345-aecc-c14b5ff628a6",
            "wording": "X-Travel Trolley",
            "brand": {
                "id": "019f426a-754e-7345-aecc-c14b5ff628a6",
                "wording": "Bric's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-843e-7058-a9e1-5542b372b48a",
            "brand_id": "019f426a-8433-73b1-b293-b9e832f9e21a",
            "wording": "X-Trem Power Cyclonic",
            "brand": {
                "id": "019f426a-8433-73b1-b293-b9e832f9e21a",
                "wording": "Rowenta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-64a1-7037-8785-a645c582fdac",
            "brand_id": "019f426a-646a-726a-9062-4272c03ab2dd",
            "wording": "X-VOYAGER",
            "brand": {
                "id": "019f426a-646a-726a-9062-4272c03ab2dd",
                "wording": "Beuchat",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-895c-70cf-8546-af2d444f1677",
            "brand_id": "019f426a-8950-720a-a6f0-a17422e8b098",
            "wording": "X4 Extra",
            "brand": {
                "id": "019f426a-8950-720a-a6f0-a17422e8b098",
                "wording": "Sebo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-8fb5-7004-b724-d4eadc84d727",
            "brand_id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
            "wording": "XLR",
            "brand": {
                "id": "019f426a-8fb0-72f0-b4f2-3a076cc034cb",
                "wording": "BV Sport",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6340-728c-80e0-27f09e4dc3c3",
            "brand_id": "019f426a-6339-70f7-ba3f-295098b2aecc",
            "wording": "XP KIND OF",
            "brand": {
                "id": "019f426a-6339-70f7-ba3f-295098b2aecc",
                "wording": "De Bethune",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-6961-72b5-b7c1-523d78240a8a",
            "brand_id": "019f426a-690c-707b-b67c-ca9bf455e595",
            "wording": "XS",
            "brand": {
                "id": "019f426a-690c-707b-b67c-ca9bf455e595",
                "wording": "Balenciaga",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-54b7-73bd-b32c-00a4fa13337f",
            "brand_id": "019f426a-5471-7092-8881-52d5ecae8c83",
            "wording": "XS",
            "brand": {
                "id": "019f426a-5471-7092-8881-52d5ecae8c83",
                "wording": "Nilai Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-61b4-716f-927e-f0a34802769b",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "XS Sunny #2",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-90ec-73e9-af61-4d7e3e751317",
            "brand_id": "019f426a-90e7-73eb-a977-8898ad949ebf",
            "wording": "XT Series",
            "brand": {
                "id": "019f426a-90e7-73eb-a977-8898ad949ebf",
                "wording": "Kalenji",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-715c-73c0-a1ea-6c63fcc751b6",
            "brand_id": "019f426a-712f-7195-b873-173eefe13443",
            "wording": "XV Sashimi LG Split",
            "brand": {
                "id": "019f426a-712f-7195-b873-173eefe13443",
                "wording": "Rossignol",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7f4a-709e-9542-d9e1fb7684f7",
            "brand_id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
            "wording": "XeraCalm A.D.",
            "brand": {
                "id": "019f426a-7f3e-7112-b466-e2155d2b21aa",
                "wording": "Avene",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-802d-7384-9fc9-e8c009b9a585",
            "brand_id": "019f426a-8027-708f-8914-141c39270a59",
            "wording": "Xémose",
            "brand": {
                "id": "019f426a-8027-708f-8914-141c39270a59",
                "wording": "Uriage",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6982-7107-869e-7df803c23add",
            "brand_id": "019f426a-696c-72f0-a745-c245d68f0dd0",
            "wording": "Y",
            "brand": {
                "id": "019f426a-696c-72f0-a745-c245d68f0dd0",
                "wording": "Yves Saint Laurent",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4ff6-7052-b552-5c66ac58c526",
            "brand_id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
            "wording": "Y Diamant",
            "brand": {
                "id": "019f426a-4fe1-71c3-a445-2c4bde31cb86",
                "wording": "Rivka Nahmias",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8eb0-7233-adf2-d46ff53c3dcf",
            "brand_id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
            "wording": "YOGA300",
            "brand": {
                "id": "019f426a-8ea7-724d-80b0-5515b324a7b8",
                "wording": "Bellavita",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5d89-72bc-b8ce-31d1842ef2d0",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "YOHJI YAMAMOTO",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-598e-706f-95e8-3c539bde1940",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "YOUNG",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6634-72f8-8801-7ba0f56e006e",
            "brand_id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
            "wording": "Yacht-Master",
            "brand": {
                "id": "019f426a-6627-70c5-bcc1-fe6afbe6bc68",
                "wording": "Rolex",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-4f07-7374-bf6a-7e13f342a26a",
            "brand_id": "019f426a-4ef2-724b-8ef9-2913717b442c",
            "wording": "Yagul",
            "brand": {
                "id": "019f426a-4ef2-724b-8ef9-2913717b442c",
                "wording": "Elise Tsikis",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-636b-73c9-93ba-bddcfd73a343",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Yamasa",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-73ce-7389-9b49-8d32995340d7",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Yardley",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7052-724a-83cc-b7d0802e088a",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Yasmine",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-902d-711f-8adc-c486ce645f68",
            "brand_id": "019f426a-901a-713f-ab82-9944844b9e33",
            "wording": "Yoga Mat",
            "brand": {
                "id": "019f426a-901a-713f-ab82-9944844b9e33",
                "wording": "Energetics",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-5abf-7386-9c23-478adf720d51",
            "brand_id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
            "wording": "Yoni",
            "brand": {
                "id": "019f426a-5a2f-73c8-8221-bbcc549dd704",
                "wording": "Tityaravy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-5e2c-7281-8e6c-6256010bd945",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "You.Me",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-58e2-7039-b0aa-974b8807c48f",
            "brand_id": "019f426a-5802-7283-b7fb-bef13eca73c6",
            "wording": "Young",
            "brand": {
                "id": "019f426a-5802-7283-b7fb-bef13eca73c6",
                "wording": "Octobre Editions",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-80c4-71a6-b171-01646aa1c388",
            "brand_id": "019f426a-80c1-73e4-b39a-872492d7933d",
            "wording": "Yuza Sorbet",
            "brand": {
                "id": "019f426a-80c1-73e4-b39a-872492d7933d",
                "wording": "Erborian",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6eb3-73ff-a18c-9e4eef480eb8",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "Yves JACKET",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-55fd-714b-91af-acd54081d364",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Yvette OR",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8890-7193-b580-75c5ae3aa467",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "Z7.0 VSZ7A400",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8897-71b6-817d-d46c073ce65b",
            "brand_id": "019f426a-8893-70b0-952f-4bb89f82217d",
            "wording": "Z8",
            "brand": {
                "id": "019f426a-8893-70b0-952f-4bb89f82217d",
                "wording": "Jura",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8891-7234-a177-fcf82547a7b7",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "Z8.0 VSZ8XTRM11",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8707-71d0-b06d-91d6c6c1140f",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZCG212J1WA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8703-7246-9e72-a5e5e40457f4",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZCI66050WA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8705-733d-925d-1ba91fcf6e71",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZCI66278XA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-870d-73ae-8eda-8d1133ba3486",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZDC8203WZ",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86ff-7265-b9ac-c0bca9cff0c0",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZDF26011XA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8711-7168-93d0-60b6b76c2832",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZDH8333PZ",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-86fc-70c6-af61-4cd4ca385a59",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZDLN1511",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-870f-7074-8b4d-1683df5bfc3b",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZDP7202PZ",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8701-7247-85b0-443ebefe0aeb",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZDT21006FA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-756b-709f-965b-5b7575e2dafc",
            "brand_id": "019f426a-7562-713c-90c4-fa04bb36e27a",
            "wording": "ZDX Medium Backpack",
            "brand": {
                "id": "019f426a-7562-713c-90c4-fa04bb36e27a",
                "wording": "Briggs & Riley",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5d69-708d-80d3-63abd75521a0",
            "brand_id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
            "wording": "ZEGNA",
            "brand": {
                "id": "019f426a-5d21-72fa-b50b-46500b37b5a1",
                "wording": "Sophie Bille Brahe",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-76c6-72ad-a069-4d7ffe864c8e",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "ZEN",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-76cf-7065-84fe-46bbd0e2e878",
            "brand_id": "019f426a-76a4-710b-8640-3386e8153aa1",
            "wording": "ZIP",
            "brand": {
                "id": "019f426a-76a4-710b-8640-3386e8153aa1",
                "wording": "Camper",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-6dd4-73cb-a886-1707c8e52f4c",
            "brand_id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
            "wording": "ZIPPE",
            "brand": {
                "id": "019f426a-6dc8-7083-9de1-3f19b5c61594",
                "wording": "Mansur Gavriel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6e78-727c-9b0b-91072283beb4",
            "brand_id": "019f426a-6e63-7390-a317-979c9e26bf35",
            "wording": "ZIPPEE",
            "brand": {
                "id": "019f426a-6e63-7390-a317-979c9e26bf35",
                "wording": "Eastpak",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6ec0-70fc-89c8-4433ccb1aae3",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "ZORA",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-870c-7050-8a58-dea703e50786",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZRA40113WA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-870a-7085-95b4-ba2af784a497",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZRB34211WA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8708-7056-9fa8-3d44dfd76b2e",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZRG15805WA",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8716-71e2-8ead-9212f0113b89",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZWF01483WR",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8713-7249-b9d4-1442b6a549f8",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZWF71240W",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8714-7362-8eec-87b3b2f274dd",
            "brand_id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
            "wording": "ZWF81463W",
            "brand": {
                "id": "019f426a-86fa-70d1-8774-034abcf8b9e2",
                "wording": "Zanussi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-5c44-7379-ae23-056b8abbc70c",
            "brand_id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
            "wording": "Zak 2 x Steffie",
            "brand": {
                "id": "019f426a-5b07-73ce-9ac8-c83550f2910f",
                "wording": "Titlee",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-704d-70c7-b7b2-237c80149fed",
            "brand_id": "019f426a-703d-72a8-8f99-9e5ed85961de",
            "wording": "Zayan",
            "brand": {
                "id": "019f426a-703d-72a8-8f99-9e5ed85961de",
                "wording": "Okhtein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-937a-7338-900a-85d6e1a4371d",
            "brand_id": "019f426a-9374-704b-b308-2cc967f10bd5",
            "wording": "Zeal",
            "brand": {
                "id": "019f426a-9374-704b-b308-2cc967f10bd5",
                "wording": "Icebug",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-73d4-7115-a4db-92b2f6607ef1",
            "brand_id": "019f426a-73c5-738a-9f8b-0417526861b9",
            "wording": "Zeena",
            "brand": {
                "id": "019f426a-73c5-738a-9f8b-0417526861b9",
                "wording": "Anne Klein",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-85d3-7049-9a4a-9c680cb1f73d",
            "brand_id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
            "wording": "Zen FSCR 80421",
            "brand": {
                "id": "019f426a-85ba-71ee-87fb-412bebaabd0b",
                "wording": "Whirlpool",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-887a-728e-b674-db25f3ee6e9f",
            "brand_id": "019f426a-8861-73ed-a9fb-30665234e814",
            "wording": "Zenith",
            "brand": {
                "id": "019f426a-8861-73ed-a9fb-30665234e814",
                "wording": "Falmec",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8a31-73c5-b178-bc2145923546",
            "brand_id": "019f426a-8a1d-7047-81c8-753dae3bb842",
            "wording": "Zenith",
            "brand": {
                "id": "019f426a-8a1d-7047-81c8-753dae3bb842",
                "wording": "Gutmann",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:26.000000Z",
            "updated_at": "2026-07-08T15:48:26.000000Z"
        },
        {
            "id": "019f426a-4b7a-7114-a6b3-413c50a387a7",
            "brand_id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
            "wording": "Zephyr",
            "brand": {
                "id": "019f426a-4b3e-70f2-8e5c-d1bb6afa61ad",
                "wording": "Louis Vuitton",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-9010-731a-807a-e19aabb276a1",
            "brand_id": "019f426a-8fef-721e-aa09-ae973516bf74",
            "wording": "Zermatt",
            "brand": {
                "id": "019f426a-8fef-721e-aa09-ae973516bf74",
                "wording": "Fusalp",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6240-7137-a675-2f4ed8f0a9bd",
            "brand_id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
            "wording": "Ziggy",
            "brand": {
                "id": "019f426a-61a4-702d-a2a2-3ccd7ddcda51",
                "wording": "Zadig & Voltaire",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:15.000000Z",
                "updated_at": "2026-07-08T15:48:15.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-5359-731c-b307-64a3be1b1653",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Ziggy",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-5dd2-7093-91cc-587314b9afb4",
            "brand_id": "019f426a-5dad-71f3-bd3c-665715864d77",
            "wording": "Zinnia",
            "brand": {
                "id": "019f426a-5dad-71f3-bd3c-665715864d77",
                "wording": "Mary Gaitani",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:14.000000Z",
            "updated_at": "2026-07-08T15:48:14.000000Z"
        },
        {
            "id": "019f426a-6378-73cb-9e2c-327c7b301e2e",
            "brand_id": "019f426a-6353-739e-8425-dfd15a87c0e2",
            "wording": "Zino",
            "brand": {
                "id": "019f426a-6353-739e-8425-dfd15a87c0e2",
                "wording": "Davidoff",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-4872-70fc-a4fe-999e8f942110",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Zip",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-7e6f-70de-9616-0bb4ba324824",
            "brand_id": "019f426a-7e66-72bb-83e4-8dd08920539d",
            "wording": "Zip Around",
            "brand": {
                "id": "019f426a-7e66-72bb-83e4-8dd08920539d",
                "wording": "Hogan",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-77a4-71a1-996f-ecf94c3af4cc",
            "brand_id": "019f426a-7792-708e-8ac5-6df9253a2a59",
            "wording": "Zip Around",
            "brand": {
                "id": "019f426a-7792-708e-8ac5-6df9253a2a59",
                "wording": "Carvela",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-915a-72ec-aac8-733ca8fee510",
            "brand_id": "019f426a-9154-73c0-8461-54a331755f15",
            "wording": "Zip Free",
            "brand": {
                "id": "019f426a-9154-73c0-8461-54a331755f15",
                "wording": "Rip Curl",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-906e-7102-8107-aec0b20a0442",
            "brand_id": "019f426a-905c-721c-907b-341248382bc2",
            "wording": "Zip Jacket",
            "brand": {
                "id": "019f426a-905c-721c-907b-341248382bc2",
                "wording": "Kappa",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7ad2-735c-ba56-551bd24ce85c",
            "brand_id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
            "wording": "Zip Wallet",
            "brand": {
                "id": "019f426a-7ab8-70dc-ad0a-1c68100aa307",
                "wording": "DKNY",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-7a7d-7295-8e59-002df56a05a8",
            "brand_id": "019f426a-7a74-73c5-af92-f09c91aea681",
            "wording": "Zip Wallet",
            "brand": {
                "id": "019f426a-7a74-73c5-af92-f09c91aea681",
                "wording": "Deux Lux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-76e6-723e-a40e-7a01400424f3",
            "brand_id": "019f426a-76d4-7073-9b52-7842746a3822",
            "wording": "Zip-Around Wallet",
            "brand": {
                "id": "019f426a-76d4-7073-9b52-7842746a3822",
                "wording": "Campomaggi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-944a-7171-843d-64a813d1f3f4",
            "brand_id": "019f426a-9445-725a-ad41-2d63a818d25d",
            "wording": "Zip-Off Pants Oslo",
            "brand": {
                "id": "019f426a-9445-725a-ad41-2d63a818d25d",
                "wording": "Schöffel",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-74cd-711a-a0b6-0442a06bad5a",
            "brand_id": "019f426a-74ca-73d8-ae89-121434da817b",
            "wording": "Zip-Up Sweatshirt",
            "brand": {
                "id": "019f426a-74ca-73d8-ae89-121434da817b",
                "wording": "Bench",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7dad-72d0-bee5-15831542169d",
            "brand_id": "019f426a-7dab-7302-a31e-9b10153c2998",
            "wording": "Zippé",
            "brand": {
                "id": "019f426a-7dab-7302-a31e-9b10153c2998",
                "wording": "Giani Bernini",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-6b5a-71f4-a62c-410d2c1b3c69",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Zippé",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-6b4c-7237-b714-796aec836f64",
            "brand_id": "019f426a-6b44-7192-947f-4cac9584cadc",
            "wording": "Zippée M",
            "brand": {
                "id": "019f426a-6b44-7192-947f-4cac9584cadc",
                "wording": "Mulberry",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4894-7206-bb9d-1831bc4f5ff3",
            "brand_id": "019f426a-486c-7213-8413-ea5aaca85841",
            "wording": "Zodiaque Piscium",
            "brand": {
                "id": "019f426a-486c-7213-8413-ea5aaca85841",
                "wording": "Van Cleef & Arpels",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-5567-73dd-8f82-b3c088f8dbca",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "Zohra",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-73a6-7059-820f-216b2fda71dd",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Zola",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7a10-7221-855b-f79a2f271012",
            "brand_id": "019f426a-79fe-7321-8084-d3543b12438a",
            "wording": "Zola",
            "brand": {
                "id": "019f426a-79fe-7321-8084-d3543b12438a",
                "wording": "Conkca",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-9362-73e5-8149-2c8883d6f804",
            "brand_id": "019f426a-935a-719a-8e67-a90c40d32339",
            "wording": "Zone",
            "brand": {
                "id": "019f426a-935a-719a-8e67-a90c40d32339",
                "wording": "Black Diamond",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-91a0-71dd-b82a-df347c57b278",
            "brand_id": "019f426a-919a-70ba-a3e0-44993527d5c3",
            "wording": "ZoomX Vaporfly NEXT%",
            "brand": {
                "id": "019f426a-919a-70ba-a3e0-44993527d5c3",
                "wording": "Nike",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-73a1-7187-b835-0462fea63086",
            "brand_id": "019f426a-738a-73f0-91b5-02037a73c0cb",
            "wording": "Zora",
            "brand": {
                "id": "019f426a-738a-73f0-91b5-02037a73c0cb",
                "wording": "Altuzarra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-736d-729d-8209-6a57f8745522",
            "brand_id": "019f426a-7364-70c1-84dc-b40c897ec23e",
            "wording": "Zora",
            "brand": {
                "id": "019f426a-7364-70c1-84dc-b40c897ec23e",
                "wording": "AllSaints",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-7498-7125-b726-5f48f288e03d",
            "brand_id": "019f426a-7490-73fb-b76c-b0ae13219675",
            "wording": "Zuma",
            "brand": {
                "id": "019f426a-7490-73fb-b76c-b0ae13219675",
                "wording": "BCBGMAXAZRIA",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-52e4-738b-9cd6-3d54b7a9cc92",
            "brand_id": "019f426a-5210-702e-994d-184563997421",
            "wording": "Zuri",
            "brand": {
                "id": "019f426a-5210-702e-994d-184563997421",
                "wording": "Lou.Yetu",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-8d14-73cf-9469-37e55cc4552d",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "adaptateurs secteur",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-92f2-7100-bfc8-07b3c0f39ca4",
            "brand_id": "019f426a-92e9-725b-b72f-9360f0197f26",
            "wording": "anodisées",
            "brand": {
                "id": "019f426a-92e9-725b-b72f-9360f0197f26",
                "wording": "Mavic",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-6fcf-7384-9f5b-f07ba416abb6",
            "brand_id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
            "wording": "bandoulière",
            "brand": {
                "id": "019f426a-6fa4-703c-9a8d-7e93cb8855e1",
                "wording": "Carolina Herrera",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7016-7162-9afd-85e0cb2474e8",
            "brand_id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
            "wording": "bandoulière",
            "brand": {
                "id": "019f426a-7006-709c-b4ed-8ec08496e6b0",
                "wording": "J.W. Anderson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-727d-7330-a961-73afe2d3643b",
            "brand_id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
            "wording": "baroque",
            "brand": {
                "id": "019f426a-7276-713a-a6d2-dcdd85d3edc0",
                "wording": "Versace",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-5a20-7036-b221-d34c8991abc3",
            "brand_id": "019f426a-5a08-724f-8683-7d74589c21d9",
            "wording": "bonheur",
            "brand": {
                "id": "019f426a-5a08-724f-8683-7d74589c21d9",
                "wording": "Serge Thoraval",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-7292-713f-9f30-6b75de646ed3",
            "brand_id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
            "wording": "chemise",
            "brand": {
                "id": "019f426a-728c-73a6-8621-4c26f4a6aba7",
                "wording": "Victoria Beckham",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:20.000000Z",
                "updated_at": "2026-07-08T15:48:20.000000Z"
            },
            "created_at": "2026-07-08T15:48:20.000000Z",
            "updated_at": "2026-07-08T15:48:20.000000Z"
        },
        {
            "id": "019f426a-4eba-7249-8f02-3800575119ca",
            "brand_id": "019f426a-4e96-727f-ba37-cef376612596",
            "wording": "court cauri",
            "brand": {
                "id": "019f426a-4e96-727f-ba37-cef376612596",
                "wording": "Jane de Boy",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-8d13-7206-9259-36a2f0322c64",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "câbles HDMI",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8eea-70c3-b88c-8c070b26d499",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "de camping",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ee2-707c-b62d-61b9a1a25129",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "de course à pied",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8eeb-7203-a272-9847b50e4e0c",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "de football",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8ee8-7007-af8e-43c6fe51d228",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "de natation",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-6ffc-737c-8a47-cd8c80156331",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "décontractées",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-7d5a-705b-b43f-8ea170b17581",
            "brand_id": "019f426a-7d57-72de-af49-4d75505d68e9",
            "wording": "fleurs",
            "brand": {
                "id": "019f426a-7d57-72de-af49-4d75505d68e9",
                "wording": "Ganni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-7aa2-715f-ab49-3807612add01",
            "brand_id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
            "wording": "football",
            "brand": {
                "id": "019f426a-7a9d-733c-95f8-8cbfad0aa8c2",
                "wording": "Diadora",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-5e26-71f9-ad5e-d2a3885b645f",
            "brand_id": "019f426a-5e10-7205-988a-38f185df75c8",
            "wording": "glAMOUR",
            "brand": {
                "id": "019f426a-5e10-7205-988a-38f185df75c8",
                "wording": "Paola Zovar",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:14.000000Z",
                "updated_at": "2026-07-08T15:48:14.000000Z"
            },
            "created_at": "2026-07-08T15:48:15.000000Z",
            "updated_at": "2026-07-08T15:48:15.000000Z"
        },
        {
            "id": "019f426a-6ffe-72ac-8fac-8a65f393adca",
            "brand_id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
            "wording": "habillées",
            "brand": {
                "id": "019f426a-6fe6-72c0-87d8-baf58e3c8788",
                "wording": "Acne Studios",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-83a3-73cf-9c19-d0c3fb0fc4c5",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ300 EH645FFC1E",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83a8-70f8-b8ad-0bc7d32f8fc4",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ300 HB532E0S0",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8880-7176-ae32-38fc58003ed1",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ300 HB675GBS1F",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83b2-7148-8bab-05988142c0e5",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ300 KG39VXL3A",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-888a-7082-b9a2-bf884c84e205",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ300 SN236I04KE",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83ad-72ed-a458-71a59f6138dd",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ300 SN236W03ME",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83ba-710f-9621-5939a3a7609d",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ300 WM14N121FF",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83a4-7141-a843-5f38fba18007",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ500 EX875LYC1F",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8882-7116-9bd9-339b2325890d",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ500 HB573GBS0F",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83a9-73fa-9d6a-7c0d64748f7f",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ500 HM676G0S1F",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83b4-709e-9ad1-936ec615b727",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ500 KG39NXW35",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8886-71bc-bc59-02a5969a649e",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ500 KG49NXIDR",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8883-73e5-9f94-aaf5fd27615d",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ500 KG49NXXDM",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8887-71e2-89c8-53ac54501e44",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ500 SN558S09ME",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83af-7182-b30a-53cfd5b6d150",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ500 SN658X06TE",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83b8-7184-811a-95c960c22160",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ500 WM14T709FF",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-888b-708b-9345-4031fc3cd161",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ500 WM14T709FF",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83a6-724b-96e7-a9135d810f20",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ700 EH875MP17E",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83ac-70ec-b27b-982a93fe2e69",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ700 HB578A0S0",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-887f-7313-b130-d10fcb1bc508",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ700 HB675GBS1F",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83b5-7307-8b29-abb2b21f2aed",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ700 KG49NHX2P",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8884-7062-9026-a3254c92de01",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ700 KG49NHXDM",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8889-719c-87a7-af25e1feba0f",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ700 SN278I36TE",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-83b1-72e1-b79e-b51d2160dadc",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ700 SN678X36TE",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-83b6-70ee-9b47-43980bd67492",
            "brand_id": "019f426a-839c-72b7-9679-635e2f9dabca",
            "wording": "iQ700 WM14W690FF",
            "brand": {
                "id": "019f426a-839c-72b7-9679-635e2f9dabca",
                "wording": "Siemens",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-888d-72e1-9fd6-68bfbeba9af2",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ700 WM16XGH6FF",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-888e-7282-9bf6-65af3cf7ae00",
            "brand_id": "019f426a-887d-7171-b068-ef66a71a66fc",
            "wording": "iQ700 WT47XKH9FF",
            "brand": {
                "id": "019f426a-887d-7171-b068-ef66a71a66fc",
                "wording": "Siemens Home",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:25.000000Z",
                "updated_at": "2026-07-08T15:48:25.000000Z"
            },
            "created_at": "2026-07-08T15:48:25.000000Z",
            "updated_at": "2026-07-08T15:48:25.000000Z"
        },
        {
            "id": "019f426a-8362-7218-aa79-fb783f8b2f65",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "induction",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-6a0f-716a-ba3f-22b2df8a04e6",
            "brand_id": "019f426a-69c0-70e4-8d74-47cb8959d342",
            "wording": "jupe",
            "brand": {
                "id": "019f426a-69c0-70e4-8d74-47cb8959d342",
                "wording": "Bottega Veneta",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-8455-7301-8d79-741d6068b729",
            "brand_id": "019f426a-8450-7088-b665-a9f9075e6b12",
            "wording": "kMix KMX750",
            "brand": {
                "id": "019f426a-8450-7088-b665-a9f9075e6b12",
                "wording": "Kenwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8ee5-72fe-9117-8315b49ac736",
            "brand_id": "019f426a-8ee0-7111-8f23-64484aa70580",
            "wording": "la randonnée et le trekking",
            "brand": {
                "id": "019f426a-8ee0-7111-8f23-64484aa70580",
                "wording": "Decathlon",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-558d-7134-9e13-8f6bba3d6d50",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "liza",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-55d7-718a-ae7c-b2b1d72fe0fa",
            "brand_id": "019f426a-5540-7265-a543-b5fc3af6ae27",
            "wording": "louise",
            "brand": {
                "id": "019f426a-5540-7265-a543-b5fc3af6ae27",
                "wording": "Monsieur Paris",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:12.000000Z",
                "updated_at": "2026-07-08T15:48:12.000000Z"
            },
            "created_at": "2026-07-08T15:48:12.000000Z",
            "updated_at": "2026-07-08T15:48:12.000000Z"
        },
        {
            "id": "019f426a-7d59-70f1-889a-f2e1c7d56b58",
            "brand_id": "019f426a-7d57-72de-af49-4d75505d68e9",
            "wording": "léopard",
            "brand": {
                "id": "019f426a-7d57-72de-af49-4d75505d68e9",
                "wording": "Ganni",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8360-7191-b099-b7226c9c527f",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "mixtes",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-8364-7052-8346-6db53e8f884b",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "multifonctions",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-65b7-7205-bbd0-7800381cb4e2",
            "brand_id": "019f426a-6595-7150-8d97-dc1551380a14",
            "wording": "office",
            "brand": {
                "id": "019f426a-6595-7150-8d97-dc1551380a14",
                "wording": "Merci",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-57af-7157-bac8-e4748f65cb62",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "perles",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-93a6-71ed-81ac-71285af88c4b",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "protège-coudes",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-93a5-73a5-81e9-c0669139087f",
            "brand_id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
            "wording": "protège-tibias",
            "brand": {
                "id": "019f426a-939d-73c9-8c68-94a1e1d2a973",
                "wording": "Kookaburra",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:28.000000Z",
                "updated_at": "2026-07-08T15:48:28.000000Z"
            },
            "created_at": "2026-07-08T15:48:28.000000Z",
            "updated_at": "2026-07-08T15:48:28.000000Z"
        },
        {
            "id": "019f426a-8365-7091-8c06-870070b0713a",
            "brand_id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
            "wording": "pyrolyse",
            "brand": {
                "id": "019f426a-834f-72cf-8c43-bf42a2c64a57",
                "wording": "Rosières",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-77fd-73b7-a7ee-650f9f364398",
            "brand_id": "019f426a-77e6-732c-b645-b0f5ef47081b",
            "wording": "raphic Pullover",
            "brand": {
                "id": "019f426a-77e6-732c-b645-b0f5ef47081b",
                "wording": "Champion",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:21.000000Z",
                "updated_at": "2026-07-08T15:48:21.000000Z"
            },
            "created_at": "2026-07-08T15:48:21.000000Z",
            "updated_at": "2026-07-08T15:48:21.000000Z"
        },
        {
            "id": "019f426a-7d7e-70c8-88c4-4f70818cab91",
            "brand_id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
            "wording": "respirantes",
            "brand": {
                "id": "019f426a-7d76-71b9-a6f3-f65591a4dc13",
                "wording": "Geox",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-571b-737f-8f48-e10e3d701495",
            "brand_id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
            "wording": "serpent aux yeux verts",
            "brand": {
                "id": "019f426a-56f9-7065-aec1-0cd602c5a73c",
                "wording": "Emily Shing",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:13.000000Z",
                "updated_at": "2026-07-08T15:48:13.000000Z"
            },
            "created_at": "2026-07-08T15:48:13.000000Z",
            "updated_at": "2026-07-08T15:48:13.000000Z"
        },
        {
            "id": "019f426a-6cd9-71ff-93c1-d583f738bb5b",
            "brand_id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
            "wording": "signature",
            "brand": {
                "id": "019f426a-6cc3-73f2-a219-7769e6469c4c",
                "wording": "Tod's",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:18.000000Z",
                "updated_at": "2026-07-08T15:48:18.000000Z"
            },
            "created_at": "2026-07-08T15:48:18.000000Z",
            "updated_at": "2026-07-08T15:48:18.000000Z"
        },
        {
            "id": "019f426a-4f62-7344-810e-66f34b693f1c",
            "brand_id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
            "wording": "solo hybryde",
            "brand": {
                "id": "019f426a-4f42-733d-b076-ebf6746f5a2c",
                "wording": "Annelise Michelson",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:11.000000Z",
                "updated_at": "2026-07-08T15:48:11.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-6f6a-72e6-ae53-1827be75346f",
            "brand_id": "019f426a-6f66-739a-b32c-63dd8244194e",
            "wording": "tricolores",
            "brand": {
                "id": "019f426a-6f66-739a-b32c-63dd8244194e",
                "wording": "Thom Browne",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-8d11-722b-bb20-a3dbf74acd87",
            "brand_id": "019f426a-8d06-733b-9870-be5f0bf4e689",
            "wording": "télécommandes",
            "brand": {
                "id": "019f426a-8d06-733b-9870-be5f0bf4e689",
                "wording": "Thomson Dcube",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:27.000000Z",
                "updated_at": "2026-07-08T15:48:27.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-68bd-715a-ae15-a18779006b9c",
            "brand_id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
            "wording": "vison",
            "brand": {
                "id": "019f426a-688f-70af-a9e7-26d2f7b83f69",
                "wording": "Fendi",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:17.000000Z",
                "updated_at": "2026-07-08T15:48:17.000000Z"
            },
            "created_at": "2026-07-08T15:48:17.000000Z",
            "updated_at": "2026-07-08T15:48:17.000000Z"
        },
        {
            "id": "019f426a-6eb9-7094-95d3-e5ff606e3cff",
            "brand_id": "019f426a-6eae-70de-9763-74e22dbb2749",
            "wording": "wide LEG",
            "brand": {
                "id": "019f426a-6eae-70de-9763-74e22dbb2749",
                "wording": "Vivienne Westwood",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:19.000000Z",
                "updated_at": "2026-07-08T15:48:19.000000Z"
            },
            "created_at": "2026-07-08T15:48:19.000000Z",
            "updated_at": "2026-07-08T15:48:19.000000Z"
        },
        {
            "id": "019f426a-6288-7371-b096-83044e15a802",
            "brand_id": "019f426a-6279-719f-9f35-d5110387906b",
            "wording": "Éclairs",
            "brand": {
                "id": "019f426a-6279-719f-9f35-d5110387906b",
                "wording": "Michel Roux",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:16.000000Z",
                "updated_at": "2026-07-08T15:48:16.000000Z"
            },
            "created_at": "2026-07-08T15:48:16.000000Z",
            "updated_at": "2026-07-08T15:48:16.000000Z"
        },
        {
            "id": "019f426a-81be-7200-8d7e-08144181296c",
            "brand_id": "019f426a-81ba-714e-a280-ee8776b414cc",
            "wording": "Éclat",
            "brand": {
                "id": "019f426a-81ba-714e-a280-ee8776b414cc",
                "wording": "Ricaud",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82df-7059-a0d6-401075cbd3b7",
            "brand_id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Éclat Floral",
            "brand": {
                "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
                "wording": "Elixir & Co",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82ce-7384-9e0a-f22b274dcf51",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Éclat Naturel",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-827e-725c-8403-0046d4b151f9",
            "brand_id": "019f426a-827a-734d-be46-40c77ace37a5",
            "wording": "Éclat Tropical",
            "brand": {
                "id": "019f426a-827a-734d-be46-40c77ace37a5",
                "wording": "Pura Bali",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-4a34-730c-bbcb-dfa15a5515d8",
            "brand_id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
            "wording": "Éclat de Nuit",
            "brand": {
                "id": "019f426a-4a0f-717d-aaef-4eb1463f6b91",
                "wording": "Lanvin",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:09.000000Z",
                "updated_at": "2026-07-08T15:48:09.000000Z"
            },
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        {
            "id": "019f426a-82bc-7022-9d82-91744e60da7a",
            "brand_id": "019f426a-82ba-73a8-8074-0094505e1e69",
            "wording": "Éclat de la Forêt",
            "brand": {
                "id": "019f426a-82ba-73a8-8074-0094505e1e69",
                "wording": "Aïny",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82dc-7320-99bb-c68fe9eca3d4",
            "brand_id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
            "wording": "Élixir de Beauté",
            "brand": {
                "id": "019f426a-82da-71cf-84cd-ce5dde179ddf",
                "wording": "Elixir & Co",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-82d8-71b1-b44c-fe76ddab171b",
            "brand_id": "019f426a-82ca-7258-b59e-753ee470529b",
            "wording": "Élégance Méditerranéenne",
            "brand": {
                "id": "019f426a-82ca-7258-b59e-753ee470529b",
                "wording": "La Fare 1789",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:24.000000Z",
                "updated_at": "2026-07-08T15:48:24.000000Z"
            },
            "created_at": "2026-07-08T15:48:24.000000Z",
            "updated_at": "2026-07-08T15:48:24.000000Z"
        },
        {
            "id": "019f426a-7fbe-71fb-ba01-89a16cc17133",
            "brand_id": "019f426a-7fb4-718a-9572-3009d7372f36",
            "wording": "Émergence",
            "brand": {
                "id": "019f426a-7fb4-718a-9572-3009d7372f36",
                "wording": "Phytomer",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8021-715e-9605-5c4e66d51071",
            "brand_id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
            "wording": "Énergie Marine",
            "brand": {
                "id": "019f426a-8017-73b3-bf94-e5730a6ec34b",
                "wording": "Thalgo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:23.000000Z",
                "updated_at": "2026-07-08T15:48:23.000000Z"
            },
            "created_at": "2026-07-08T15:48:23.000000Z",
            "updated_at": "2026-07-08T15:48:23.000000Z"
        },
        {
            "id": "019f426a-8d02-7185-8632-2e95cad698d3",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Équipements de construction",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-8d04-7384-a57c-e32b655dd7f7",
            "brand_id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
            "wording": "Équipements de manutention",
            "brand": {
                "id": "019f426a-8ce7-71b2-a85c-b96a4d5c5fc0",
                "wording": "Daewoo",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:26.000000Z",
                "updated_at": "2026-07-08T15:48:26.000000Z"
            },
            "created_at": "2026-07-08T15:48:27.000000Z",
            "updated_at": "2026-07-08T15:48:27.000000Z"
        },
        {
            "id": "019f426a-7c5f-7050-989f-e6769dbdd6e0",
            "brand_id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
            "wording": "Étoile",
            "brand": {
                "id": "019f426a-7c4d-70c0-bdc8-9d603611450a",
                "wording": "Eres",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:22.000000Z",
                "updated_at": "2026-07-08T15:48:22.000000Z"
            },
            "created_at": "2026-07-08T15:48:22.000000Z",
            "updated_at": "2026-07-08T15:48:22.000000Z"
        },
        {
            "id": "019f426a-4e7d-718d-8ec4-5eb70a588aec",
            "brand_id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
            "wording": "Étoile",
            "brand": {
                "id": "019f426a-4e63-7029-aa4e-b4a634f039cd",
                "wording": "Gigi Clozeau",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:11.000000Z",
            "updated_at": "2026-07-08T15:48:11.000000Z"
        },
        {
            "id": "019f426a-4cae-7171-a07e-c42564e8e283",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Étoile Caleen",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        },
        {
            "id": "019f426a-4cb5-723e-8d4d-acdaeb16a9d2",
            "brand_id": "019f426a-4c8e-71e5-9267-f30ac241a771",
            "wording": "Étoile Dancy",
            "brand": {
                "id": "019f426a-4c8e-71e5-9267-f30ac241a771",
                "wording": "Isabel Marant",
                "wording_fr": null,
                "wording_en": null,
                "created_at": "2026-07-08T15:48:10.000000Z",
                "updated_at": "2026-07-08T15:48:10.000000Z"
            },
            "created_at": "2026-07-08T15:48:10.000000Z",
            "updated_at": "2026-07-08T15:48:10.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/models

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/models

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/models" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"brand_id\": \"architecto\",
    \"wording\": \"Tank\",
    \"wording_fr\": \"Tank\",
    \"wording_en\": \"Tank\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/models"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "brand_id": "architecto",
    "wording": "Tank",
    "wording_fr": "Tank",
    "wording_en": "Tank"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/models

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

brand_id   uuid     

Existing brand identifier. Example: architecto

wording   string  optional    

nullable Legacy model label. Example: Tank

wording_fr   string  optional    

nullable French model label. Example: Tank

wording_en   string  optional    

nullable English model label. Example: Tank

GET api/v1/reference/models/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/models/019f426a-483a-7392-b92a-81b7ffc66ea8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/models/019f426a-483a-7392-b92a-81b7ffc66ea8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-483a-7392-b92a-81b7ffc66ea8",
        "brand_id": "019f426a-4836-7046-bf76-a46201ff7027",
        "wording": "Santos de Cartier",
        "brand": {
            "id": "019f426a-4836-7046-bf76-a46201ff7027",
            "wording": "Cartier",
            "wording_fr": null,
            "wording_en": null,
            "created_at": "2026-07-08T15:48:09.000000Z",
            "updated_at": "2026-07-08T15:48:09.000000Z"
        },
        "created_at": "2026-07-08T15:48:09.000000Z",
        "updated_at": "2026-07-08T15:48:09.000000Z"
    }
}
 

Request      

GET api/v1/reference/models/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the model. Example: 019f426a-483a-7392-b92a-81b7ffc66ea8

PUT api/v1/reference/models/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/models/019f426a-483a-7392-b92a-81b7ffc66ea8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"brand_id\": \"architecto\",
    \"wording\": \"Tank\",
    \"wording_fr\": \"Tank\",
    \"wording_en\": \"Tank\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/models/019f426a-483a-7392-b92a-81b7ffc66ea8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "brand_id": "architecto",
    "wording": "Tank",
    "wording_fr": "Tank",
    "wording_en": "Tank"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/models/{id}

PATCH api/v1/reference/models/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the model. Example: 019f426a-483a-7392-b92a-81b7ffc66ea8

Body Parameters

brand_id   uuid     

Existing brand identifier. Example: architecto

wording   string  optional    

nullable Legacy model label. Example: Tank

wording_fr   string  optional    

nullable French model label. Example: Tank

wording_en   string  optional    

nullable English model label. Example: Tank

DELETE api/v1/reference/models/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/models/019f426a-483a-7392-b92a-81b7ffc66ea8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/models/019f426a-483a-7392-b92a-81b7ffc66ea8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/models/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the model. Example: 019f426a-483a-7392-b92a-81b7ffc66ea8

GET api/v1/reference/articles

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/articles" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/articles"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1585",
            "sub_category_id": null,
            "wording": "Abreuvoirs automatiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1589",
            "sub_category_id": null,
            "wording": "Abreuvoirs mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0089",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Accessoires de chemise en métal précieux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1648",
            "sub_category_id": "018d1386-6030-73fc-aaad-06c216c59102",
            "wording": "Accessoires de coffrage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1031",
            "sub_category_id": null,
            "wording": "Accessoires de costumes thématiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0659",
            "sub_category_id": "018d1386-602f-7818-9980-e3cb4c7a1dca",
            "wording": "Accessoires de jeu personnalisés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1000",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Accessoires de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0884",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Accessoires de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1052",
            "sub_category_id": null,
            "wording": "Accessoires de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1122",
            "sub_category_id": null,
            "wording": "Accessoires de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1320",
            "sub_category_id": "018d1386-6030-78a5-8429-dce15fb9ff0b",
            "wording": "Accessoires de mode (sacs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0795",
            "sub_category_id": null,
            "wording": "Accessoires de réalité virtuelle (VR)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0588",
            "sub_category_id": "018d1386-602f-7e86-8ec7-c67acb01d0d1",
            "wording": "Accessoires de réalité virtuelle pour jeux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1679",
            "sub_category_id": null,
            "wording": "Accessoires de soudage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0335",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Accessoires de sport (gants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0256",
            "sub_category_id": null,
            "wording": "Accessoires pour aspirateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0255",
            "sub_category_id": null,
            "wording": "Accessoires pour robots culinaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1332",
            "sub_category_id": "018d1386-6030-7920-8f89-f873a9f8f545",
            "wording": "Accessoires pour smartphones",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0607",
            "sub_category_id": null,
            "wording": "Accessoires pour visioconférence",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1385",
            "sub_category_id": "018d1386-6030-7ee6-b847-b79df700aab9",
            "wording": "Acryliques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0765",
            "sub_category_id": "018d1386-602f-7815-bda1-6f330007106b",
            "wording": "Adaptateurs Powerline pour le réseau électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0793",
            "sub_category_id": null,
            "wording": "Adaptateurs USB-C multifonctions",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0603",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Adaptateurs audio-vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0615",
            "sub_category_id": "018d1386-602f-7b62-92d4-8f378605a163",
            "wording": "Adaptateurs secteur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1355",
            "sub_category_id": null,
            "wording": "Affiches d'événements culturels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1310",
            "sub_category_id": "018d1386-6030-7b5a-9d68-44e27e983844",
            "wording": "Affiches de films",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0721",
            "sub_category_id": null,
            "wording": "Alimentations certifiées 80 PLUS Gold ou Platinum",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0720",
            "sub_category_id": null,
            "wording": "Alimentations modulaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0722",
            "sub_category_id": null,
            "wording": "Alimentations pour serveurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0575",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Amazon Echoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0556",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Amazon Fire Stick",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1519",
            "sub_category_id": null,
            "wording": "Analyseurs d'énergie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1470",
            "sub_category_id": null,
            "wording": "Analyseurs de réseau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0560",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Android TV Box",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0402",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Animaux en peluche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0082",
            "sub_category_id": "018d1386-602e-7b0a-a264-aac7397898cd",
            "wording": "Anneaux de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0508",
            "sub_category_id": "018d1386-602f-7119-a53d-0f936c9c5156",
            "wording": "Antiquités décoratives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0268",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Appareil de musculation avec stations multiples",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0279",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Appareil pour les mollets debout",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0278",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Appareil à crunch",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0281",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Appareil à dips",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0247",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Appareils de Soins Personnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0653",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Appareils photo DSLR professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0657",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Appareils photo compacts avancés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0566",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Appareils photo numériques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0654",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Appareils photo sans miroir haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0577",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Apple HomePod",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "01919359-5cca-72cb-877b-ed5433441410",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Apple MacBook",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919354-42b8-751a-88f2-29207f52018c",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Apple MacBook",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01918ebb-dbca-782b-abd6-fb2c79047598",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Apple MacBook Pro M2 13-inch",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0558",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Apple TV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0702",
            "sub_category_id": null,
            "wording": "Applications de fitness et de suivi d'activité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0124",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Après-shampooings démêlants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1384",
            "sub_category_id": "018d1386-6030-7ee6-b847-b79df700aab9",
            "wording": "Aquarelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018fa00d-e937-7c72-81d6-1bb6ff0ee4da",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "Arif",
            "is_published": null,
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0456",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Armoire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0462",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Armoire de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0511",
            "sub_category_id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "wording": "Armoire de toilette",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0467",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Armoires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1490",
            "sub_category_id": null,
            "wording": "Armoires électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1544",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Arracheuses de betteraves",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1459",
            "sub_category_id": "018d1386-6030-795c-8b76-4122d4411a70",
            "wording": "Art abstrait contemporain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1318",
            "sub_category_id": "018d1386-6030-786c-9186-0727b06c077e",
            "wording": "Art de la table (vaisselle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1441",
            "sub_category_id": "018d1386-6030-7902-baee-3bc996878091",
            "wording": "Art du fil de fer",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1410",
            "sub_category_id": "018d1386-6030-76d2-a906-7f43a795bb16",
            "wording": "Art numérique encadré",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1345",
            "sub_category_id": "018d1386-6030-77d8-b5fe-d8e991cf5fcd",
            "wording": "Art religieux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1464",
            "sub_category_id": "018d1386-6030-74ab-a23c-cef1937886b4",
            "wording": "Art spirituel contemporain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1436",
            "sub_category_id": "018d1386-6030-7149-afdb-4cdc4c676914",
            "wording": "Art verrier contemporain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1328",
            "sub_category_id": "018d1386-6030-71b2-a11e-5d5958eeb0f2",
            "wording": "Articles de camping et de plein air",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1359",
            "sub_category_id": "018d1386-6030-7468-be99-12c8a99a8e9f",
            "wording": "Articles de fête thématiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1142",
            "sub_category_id": null,
            "wording": "Articles de marques populaires pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0898",
            "sub_category_id": null,
            "wording": "Articles de marques spécifiques (Nike",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1376",
            "sub_category_id": "018d1386-6030-7297-a0a8-e753867c3d91",
            "wording": "Articles faits à la main",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1379",
            "sub_category_id": null,
            "wording": "Articles éthiques et équitables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1417",
            "sub_category_id": "018d1386-6030-7ae3-9758-62c19c745cdc",
            "wording": "Artisanat décoratif",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0226",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Aspirateur robot",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0225",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Aspirateur sans sac",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0224",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Aspirateur traîneau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0232",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Aspirateur à cendres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1761",
            "sub_category_id": null,
            "wording": "Aspirateurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1667",
            "sub_category_id": "018d1386-6030-77f7-b14e-f4ceb9550d60",
            "wording": "Aspirateurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0412",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Atelier de bricolage miniature",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1553",
            "sub_category_id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "wording": "Atomiseurs agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1673",
            "sub_category_id": "018d1386-6030-735d-842c-c13fedc84c3b",
            "wording": "Attaches de câble",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0157",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Autocollants et stickers pour les ongles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1308",
            "sub_category_id": "018d1386-6030-770e-8be0-eb394ad30398",
            "wording": "Autographes d'auteurs célèbres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1508",
            "sub_category_id": "018d1386-6030-7f07-9666-1176fcda2178",
            "wording": "Automates programmables (PLC)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1574",
            "sub_category_id": null,
            "wording": "Bacs de stockage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1607",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Bacs de transport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0032",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues avec pierres précieuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0035",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues cocktail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0038",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues d'orteil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0037",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0033",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues de fiançailles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0034",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0031",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues en argent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0061",
            "sub_category_id": "018d1386-602e-713d-8a90-63990fbd4058",
            "wording": "Bagues en argent sterling",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0030",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues en or",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0066",
            "sub_category_id": "018d1386-602e-7882-a019-6a6f3d629460",
            "wording": "Bagues en or rose",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0070",
            "sub_category_id": "018d1386-602e-791b-ae58-30dba04ffe0c",
            "wording": "Bagues fantaisie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0036",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Bagues vintage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0783",
            "sub_category_id": null,
            "wording": "Baies de stockage en réseau (NAS)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0317",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Balance board en bois de bouleau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1762",
            "sub_category_id": null,
            "wording": "Balayeuses industrielles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0992",
            "sub_category_id": null,
            "wording": "Ballerines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1263",
            "sub_category_id": "018d1386-6030-7f97-bf6b-a5d8ede1f72f",
            "wording": "Ballerines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1222",
            "sub_category_id": null,
            "wording": "Ballerines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1261",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Ballerines de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1272",
            "sub_category_id": "018d1386-6030-7fc0-b2c8-e98ca5fe52f3",
            "wording": "Ballerines de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0339",
            "sub_category_id": null,
            "wording": "Balles de golf de tournoi de marques renommées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0299",
            "sub_category_id": null,
            "wording": "Ballons de basket-ball en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0432",
            "sub_category_id": "018d1386-602f-7368-9ce8-9e99ea53f00c",
            "wording": "Ballons de football",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0298",
            "sub_category_id": null,
            "wording": "Ballons de football de match",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0300",
            "sub_category_id": null,
            "wording": "Ballons de rugby de compétition",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0389",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Ballons de soccer",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0478",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Banc de jardin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0273",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Banc de musculation inclinable/déclinable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1476",
            "sub_category_id": null,
            "wording": "Bancs de test",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0313",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Bandes de résistance à plusieurs niveaux de résistance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1305",
            "sub_category_id": "018d1386-6030-770e-8be0-eb394ad30398",
            "wording": "Bandes dessinées et mangas",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1056",
            "sub_category_id": null,
            "wording": "Barbotes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0952",
            "sub_category_id": null,
            "wording": "Barbotes courtes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0951",
            "sub_category_id": null,
            "wording": "Barbotes longues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0284",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Barre de squat",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0275",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Barre de traction murale",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0538",
            "sub_category_id": "018d1386-602f-7c4b-862f-098d29623d6c",
            "wording": "Barres de son",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1587",
            "sub_category_id": null,
            "wording": "Barrières mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1227",
            "sub_category_id": null,
            "wording": "Baskets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1158",
            "sub_category_id": null,
            "wording": "Baskets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0991",
            "sub_category_id": null,
            "wording": "Baskets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0614",
            "sub_category_id": "018d1386-602f-7b62-92d4-8f378605a163",
            "wording": "Batteries et chargeurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0677",
            "sub_category_id": "018d1386-602f-70c2-8dc8-8072ee0ea031",
            "wording": "Batteries externes puissantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0167",
            "sub_category_id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "wording": "Baumes à lèvres avec protection solaire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1063",
            "sub_category_id": null,
            "wording": "Bavoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "0191f6f4-e1d2-71f1-b0db-40614aacbdfe",
            "sub_category_id": null,
            "wording": "Berceau bébé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0144",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Beurres corporels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018fc8ce-c9d0-7a2b-92b8-647edc2f1450",
            "sub_category_id": null,
            "wording": "Biberon ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0461",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Bibliothèque",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018fc8dc-6ad6-7374-ac21-a49773d69f63",
            "sub_category_id": null,
            "wording": "Bibéron",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0090",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Bijoux Personnalisés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1027",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Bijoux anciens",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0078",
            "sub_category_id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
            "wording": "Bijoux anciens (Art Décoo",
            "is_published": null,
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0074",
            "sub_category_id": "018d1386-602e-7c72-b786-bbc728962a2f",
            "wording": "Bijoux artisanaux de créateurs indépendants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0093",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Bijoux avec initiales personnalisées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0092",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Bijoux avec pierres de naissance personnalisées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0095",
            "sub_category_id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
            "wording": "Bijoux de haute joaillerie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0094",
            "sub_category_id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
            "wording": "Bijoux de marques de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0071",
            "sub_category_id": "018d1386-602e-791b-ae58-30dba04ffe0c",
            "wording": "Bijoux de mode abordables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0075",
            "sub_category_id": "018d1386-602e-7dc6-b7e3-1524f6d9efe3",
            "wording": "Bijoux faits à la main",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0091",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Bijoux gravés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0077",
            "sub_category_id": "018d1386-602e-7dc6-b7e3-1524f6d9efe3",
            "wording": "Bijoux issus de l'artisanat local ou ethnique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1116",
            "sub_category_id": null,
            "wording": "Bijoux pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0084",
            "sub_category_id": "018d1386-602e-7b0a-a264-aac7397898cd",
            "wording": "Bijoux pour la mariée et le marié",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0080",
            "sub_category_id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
            "wording": "Bijoux rétro des années 50",
            "is_published": "o etc.",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0072",
            "sub_category_id": "018d1386-602e-7c72-b786-bbc728962a2f",
            "wording": "Bijoux signés par des créateurs renommés (Tiffany & Co.",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0081",
            "sub_category_id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
            "wording": "Bijoux vintage de créateur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0967",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Bikinis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1443",
            "sub_category_id": "018d1386-6030-797f-b89d-032b7c444b82",
            "wording": "Billets de banque artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1354",
            "sub_category_id": null,
            "wording": "Billets pour concerts et spectacles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0948",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Blazers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1035",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Blazers et tailleurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0370",
            "sub_category_id": "018d1386-602f-72c0-bd3a-bbd5aae4a7ce",
            "wording": "Blocs de bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0922",
            "sub_category_id": null,
            "wording": "Blouses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0875",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Blouses de laboratoire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1009",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Blouses professionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0944",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Blousons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0823",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Blousons en daim",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1058",
            "sub_category_id": null,
            "wording": "Bodies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0963",
            "sub_category_id": null,
            "wording": "Body en dentelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1395",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "Bols artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0989",
            "sub_category_id": null,
            "wording": "Bottes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1173",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes Chelsea",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1172",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes chukka",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1243",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes de cowboy",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1254",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Bottes de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1174",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes de motard",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0880",
            "sub_category_id": "018d1386-602f-7035-a05d-18be5781a22a",
            "wording": "Bottes de motoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1242",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes de pluie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1040",
            "sub_category_id": null,
            "wording": "Bottes de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1171",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1170",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1239",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottes hautes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1240",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Bottines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0058",
            "sub_category_id": "018d1386-602e-713d-8a90-63990fbd4058",
            "wording": "Boucles d'oreilles en argent sterling",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0063",
            "sub_category_id": "018d1386-602e-7882-a019-6a6f3d629460",
            "wording": "Boucles d'oreilles en or rose",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0067",
            "sub_category_id": "018d1386-602e-791b-ae58-30dba04ffe0c",
            "wording": "Boucles d'oreilles fantaisie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1672",
            "sub_category_id": "018d1386-6030-735d-842c-c13fedc84c3b",
            "wording": "Boulons d'ancrage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0087",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Boutons de manchette en argent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0324",
            "sub_category_id": null,
            "wording": "Bouée tractée pour deux personnes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0846",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Boxers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0856",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Boxers de bain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0164",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Boîtes de rangement pour maquillage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0563",
            "sub_category_id": "018d1386-602f-726d-a305-a695da07fee0",
            "wording": "Boîtiers Android TV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0564",
            "sub_category_id": "018d1386-602f-726d-a305-a695da07fee0",
            "wording": "Boîtiers IPTV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0649",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Boîtiers de streaming 4K",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0726",
            "sub_category_id": "018d1386-602f-76c3-8d6a-6b12d2d142d1",
            "wording": "Boîtiers gaming avec fenêtre en verre trempé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0724",
            "sub_category_id": "018d1386-602f-76c3-8d6a-6b12d2d142d1",
            "wording": "Boîtiers mid-tower et full-tower",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0725",
            "sub_category_id": "018d1386-602f-76c3-8d6a-6b12d2d142d1",
            "wording": "Boîtiers mini-ITX et micro-ATX",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0651",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Boîtiers multimédias polyvalents",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0672",
            "sub_category_id": "018d1386-602f-7c2d-ba41-e2403e2bbabd",
            "wording": "Boîtiers pour disques durs internes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0327",
            "sub_category_id": "018d1386-602f-7c1d-b22f-9598f1f605de",
            "wording": "Bracelet d'activité avec suivi de la fréquence cardiaque",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0025",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets chaînettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0699",
            "sub_category_id": null,
            "wording": "Bracelets d'activité avec suivi de la santé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0027",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets de cheville",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0028",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets de tennis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0021",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets en argent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0060",
            "sub_category_id": "018d1386-602e-713d-8a90-63990fbd4058",
            "wording": "Bracelets en argent sterling",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0022",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0029",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets en métal précieux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0020",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets en or",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0065",
            "sub_category_id": "018d1386-602e-7882-a019-6a6f3d629460",
            "wording": "Bracelets en or rose",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0026",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets en perles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0069",
            "sub_category_id": "018d1386-602e-791b-ae58-30dba04ffe0c",
            "wording": "Bracelets fantaisie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0024",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets jonc",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0023",
            "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "Bracelets manchettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "0192c361-3da5-731b-adc6-03703853401b",
            "sub_category_id": null,
            "wording": "Brasseur SMC",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1005",
            "sub_category_id": null,
            "wording": "Brassières de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0972",
            "sub_category_id": null,
            "wording": "Brassières de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0052",
            "sub_category_id": null,
            "wording": "Broches de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0048",
            "sub_category_id": null,
            "wording": "Broches en argent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0088",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Broches en métal précieux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0047",
            "sub_category_id": null,
            "wording": "Broches en or",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0053",
            "sub_category_id": null,
            "wording": "Broches fantaisie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0049",
            "sub_category_id": null,
            "wording": "Broches vintage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0051",
            "sub_category_id": null,
            "wording": "Broches émaillées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0253",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Brosse à dents électrique haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1664",
            "sub_category_id": "018d1386-6030-77f7-b14e-f4ceb9550d60",
            "wording": "Brosses métalliques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1604",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Broyeurs de branches",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1740",
            "sub_category_id": null,
            "wording": "Broyeurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0448",
            "sub_category_id": "018d1386-602f-7b07-8147-39f146d69c95",
            "wording": "Buffet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1685",
            "sub_category_id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "wording": "Bulldozers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0459",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0522",
            "sub_category_id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "wording": "Bureau à domicile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0484",
            "sub_category_id": "018d1386-602f-726b-811a-14d76da5c531",
            "wording": "Bureaux pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1617",
            "sub_category_id": "018d1386-6030-754c-a462-93871078f849",
            "wording": "Burins et forets pour maçonnerie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1300",
            "sub_category_id": "018d1386-6030-74e8-844c-ad22f9808160",
            "wording": "CD et vinyles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0453",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Cadre de lit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0276",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Cage de musculation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0847",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Caleçons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1561",
            "sub_category_id": null,
            "wording": "Camions agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1694",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Camions de chantier",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1695",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Camions de pompiers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1691",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Camions à plateau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1690",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Camions-bennes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1693",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Camions-citernes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1692",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Camions-grues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0567",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Caméras d'action (GoPro)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0655",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Caméras d'action 4K",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0609",
            "sub_category_id": null,
            "wording": "Caméras de streaming",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0749",
            "sub_category_id": "018d1386-602f-7d78-9f88-9a9986b2a6b9",
            "wording": "Caméras de streaming pour les créateurs de contenu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0569",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Caméras de surveillance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0748",
            "sub_category_id": "018d1386-602f-7d78-9f88-9a9986b2a6b9",
            "wording": "Caméras de surveillance IP",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0568",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Caméras de sécurité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0750",
            "sub_category_id": "018d1386-602f-7d78-9f88-9a9986b2a6b9",
            "wording": "Caméras de tableau blanc interactif",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1312",
            "sub_category_id": "018d1386-6030-7b5a-9d68-44e27e983844",
            "wording": "Caméras et équipement vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0565",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Caméras vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0440",
            "sub_category_id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "wording": "Canapé (canapé-lit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0499",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "Canapé-lit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1552",
            "sub_category_id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "wording": "Canons d'irrigation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1593",
            "sub_category_id": null,
            "wording": "Capteurs de rendement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1509",
            "sub_category_id": "018d1386-6030-7f07-9666-1176fcda2178",
            "wording": "Capteurs et actionneurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0664",
            "sub_category_id": null,
            "wording": "Capteurs intelligents (mouvement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0345",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Carcassonne",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0957",
            "sub_category_id": null,
            "wording": "Cardigans",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0328",
            "sub_category_id": "018d1386-602f-7c1d-b22f-9598f1f605de",
            "wording": "Cardiofréquencemètre de poignet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0700",
            "sub_category_id": null,
            "wording": "Cardiofréquencemètres précis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1619",
            "sub_category_id": "018d1386-6030-754c-a462-93871078f849",
            "wording": "Carotteuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1456",
            "sub_category_id": "018d1386-6030-78f3-b616-a7cbf3a5556c",
            "wording": "Cartes artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0735",
            "sub_category_id": "018d1386-602f-7ecd-9b93-65ba9f7d7f7a",
            "wording": "Cartes d'acquisition vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0779",
            "sub_category_id": "018d1386-602f-7467-8399-6b1b53248dbe",
            "wording": "Cartes d'extension pour Raspberry Pi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0610",
            "sub_category_id": null,
            "wording": "Cartes de capture vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1361",
            "sub_category_id": "018d1386-6030-7468-be99-12c8a99a8e9f",
            "wording": "Cartes de vœux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1336",
            "sub_category_id": "018d1386-6030-7cd8-bd59-385cea4cf533",
            "wording": "Cartes et documents anciens",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0710",
            "sub_category_id": "018d1386-602f-7355-a567-cefd45676bb0",
            "wording": "Cartes graphiques AMD Radeon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0709",
            "sub_category_id": "018d1386-602f-7355-a567-cefd45676bb0",
            "wording": "Cartes graphiques NVIDIA GeForce",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0711",
            "sub_category_id": "018d1386-602f-7355-a567-cefd45676bb0",
            "wording": "Cartes graphiques professionnelles (NVIDIA Quadroo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1341",
            "sub_category_id": "018d1386-6030-7824-85e6-8d02e54033cf",
            "wording": "Cartes linguistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0706",
            "sub_category_id": "018d1386-602f-7cd4-9304-5688dc421d38",
            "wording": "Cartes mères ATX",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0707",
            "sub_category_id": "018d1386-602f-7cd4-9304-5688dc421d38",
            "wording": "Cartes mères gaming avec RGB",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0708",
            "sub_category_id": "018d1386-602f-7cd4-9304-5688dc421d38",
            "wording": "Cartes mères professionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0670",
            "sub_category_id": "018d1386-602f-7c2d-ba41-e2403e2bbabd",
            "wording": "Cartes mémoire haute performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0763",
            "sub_category_id": "018d1386-602f-7815-bda1-6f330007106b",
            "wording": "Cartes réseau Ethernet 10 GbE",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0734",
            "sub_category_id": "018d1386-602f-7ecd-9b93-65ba9f7d7f7a",
            "wording": "Cartes réseau Ethernet et Wi-Fi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0762",
            "sub_category_id": "018d1386-602f-7815-bda1-6f330007106b",
            "wording": "Cartes réseau Wi-Fi 6",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0733",
            "sub_category_id": "018d1386-602f-7ecd-9b93-65ba9f7d7f7a",
            "wording": "Cartes son dédiées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1326",
            "sub_category_id": "018d1386-6030-71b2-a11e-5d5958eeb0f2",
            "wording": "Cartes à collectionner sportives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0469",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Casiers de rangement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0552",
            "sub_category_id": null,
            "wording": "Casques Bluetooth",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0592",
            "sub_category_id": null,
            "wording": "Casques DJ",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0753",
            "sub_category_id": "018d1386-602f-73bc-b21a-7c67005abdf1",
            "wording": "Casques audio audiophiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0640",
            "sub_category_id": null,
            "wording": "Casques audio audiophiles haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0551",
            "sub_category_id": null,
            "wording": "Casques audio filaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0605",
            "sub_category_id": null,
            "wording": "Casques avec microphone",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1650",
            "sub_category_id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "wording": "Casques de chantier",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0754",
            "sub_category_id": "018d1386-602f-73bc-b21a-7c67005abdf1",
            "wording": "Casques de gaming avec son surround",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0587",
            "sub_category_id": "018d1386-602f-7e86-8ec7-c67acb01d0d1",
            "wording": "Casques de jeu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0641",
            "sub_category_id": null,
            "wording": "Casques de jeu avec son surround",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0661",
            "sub_category_id": "018d1386-602f-7818-9980-e3cb4c7a1dca",
            "wording": "Casques de jeu immersifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0555",
            "sub_category_id": null,
            "wording": "Casques de réalité virtuelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0644",
            "sub_category_id": null,
            "wording": "Casques à réduction de bruit active (ANC)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0861",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Casquettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1042",
            "sub_category_id": null,
            "wording": "Casquettes et chapeaux de soleil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0420",
            "sub_category_id": "018d1386-602f-731d-9513-4eca31a30de6",
            "wording": "Casse-têtes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0344",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Catane (Catan)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1114",
            "sub_category_id": null,
            "wording": "Ceintures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0863",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Ceintures en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0222",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Centrale vapeur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0394",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Cerfs-volants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0460",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Chaise de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0523",
            "sub_category_id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "wording": "Chaise de bureau ergonomique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0773",
            "sub_category_id": "018d1386-602f-7dbc-9a74-488ed39b1e8e",
            "wording": "Chaises de bureau ergonomiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0517",
            "sub_category_id": "018d1386-602f-762f-8cca-6e944ad74650",
            "wording": "Chaises de cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0475",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Chaises de jardin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0447",
            "sub_category_id": "018d1386-602f-7b07-8147-39f146d69c95",
            "wording": "Chaises de salle à manger",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0476",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Chaises longues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0487",
            "sub_category_id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "wording": "Chaises pliantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0490",
            "sub_category_id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "wording": "Chaises suspendues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1677",
            "sub_category_id": null,
            "wording": "Chalumeaux de soudage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1748",
            "sub_category_id": null,
            "wording": "Chambres froides",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1110",
            "sub_category_id": null,
            "wording": "Chapeaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0984",
            "sub_category_id": null,
            "wording": "Chapeaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0862",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Chapeaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1108",
            "sub_category_id": null,
            "wording": "Chapeaux de plage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0676",
            "sub_category_id": "018d1386-602f-70c2-8dc8-8072ee0ea031",
            "wording": "Chargeurs et stations de charge universels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1566",
            "sub_category_id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "wording": "Chargeurs frontaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1688",
            "sub_category_id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "wording": "Chargeuses compactes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1684",
            "sub_category_id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "wording": "Chargeuses sur pneus",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0338",
            "sub_category_id": null,
            "wording": "Chariots de golf légers et pliables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1701",
            "sub_category_id": null,
            "wording": "Chariots tout-terrain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1700",
            "sub_category_id": null,
            "wording": "Chariots télescopiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1636",
            "sub_category_id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "wording": "Chariots élévateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1697",
            "sub_category_id": null,
            "wording": "Chariots élévateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1568",
            "sub_category_id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "wording": "Chariots élévateurs tout-terrain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1706",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "Charrues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1527",
            "sub_category_id": null,
            "wording": "Charrues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0240",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Chauffage d'appoint soufflant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0239",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Chauffage par radiant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0238",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Chauffe-eau au gaz",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0237",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Chauffe-eau électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018fc8e8-935a-7142-aec7-e02008254039",
            "sub_category_id": null,
            "wording": "Chausette",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0849",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Chaussettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1102",
            "sub_category_id": null,
            "wording": "Chaussettes de nuit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1062",
            "sub_category_id": null,
            "wording": "Chaussettes et chaussons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1291",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons d'intérieur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1212",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons d'intérieur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1208",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1290",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons en forme d'animaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1209",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons en laine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1288",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons en laine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1287",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons en polaire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1210",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Chaussons à semelle rigide",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1154",
            "sub_category_id": null,
            "wording": "Chaussures Oxford",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1205",
            "sub_category_id": "018d1386-6030-7745-b1b6-f93f73a64a8c",
            "wording": "Chaussures antidérapantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1279",
            "sub_category_id": "018d1386-6030-7eb0-bb6b-3b9bc1901710",
            "wording": "Chaussures avec semelles amovibles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1281",
            "sub_category_id": "018d1386-6030-7d55-85ec-60a462219f0a",
            "wording": "Chaussures d'aérobic",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1215",
            "sub_category_id": "018d1386-6030-78ee-b0c9-55b368da0056",
            "wording": "Chaussures de VTT",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1160",
            "sub_category_id": null,
            "wording": "Chaussures de basketball",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1193",
            "sub_category_id": "018d1386-6030-7a75-b56f-a81ec7885f36",
            "wording": "Chaussures de conduite décontractées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1282",
            "sub_category_id": "018d1386-6030-7d55-85ec-60a462219f0a",
            "wording": "Chaussures de course",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1283",
            "sub_category_id": "018d1386-6030-7d55-85ec-60a462219f0a",
            "wording": "Chaussures de cross-training",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1321",
            "sub_category_id": "018d1386-6030-78a5-8429-dce15fb9ff0b",
            "wording": "Chaussures de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1251",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1177",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1214",
            "sub_category_id": "018d1386-6030-78ee-b0c9-55b368da0056",
            "wording": "Chaussures de cyclisme sur route",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1217",
            "sub_category_id": "018d1386-6030-78ee-b0c9-55b368da0056",
            "wording": "Chaussures de cyclisme à pédales automatiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1284",
            "sub_category_id": "018d1386-6030-7d55-85ec-60a462219f0a",
            "wording": "Chaussures de danse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1047",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Chaussures de danse spécialisées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1229",
            "sub_category_id": null,
            "wording": "Chaussures de fitness",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1161",
            "sub_category_id": null,
            "wording": "Chaussures de football",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1200",
            "sub_category_id": "018d1386-6030-7fb1-8d96-7a3bd90b235d",
            "wording": "Chaussures de golf imperméables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0340",
            "sub_category_id": null,
            "wording": "Chaussures de golf imperméables de haute qualité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1201",
            "sub_category_id": "018d1386-6030-7fb1-8d96-7a3bd90b235d",
            "wording": "Chaussures de golf légères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1199",
            "sub_category_id": "018d1386-6030-7fb1-8d96-7a3bd90b235d",
            "wording": "Chaussures de golf sportives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1198",
            "sub_category_id": "018d1386-6030-7fb1-8d96-7a3bd90b235d",
            "wording": "Chaussures de golf traditionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1002",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Chaussures de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1166",
            "sub_category_id": null,
            "wording": "Chaussures de marche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1273",
            "sub_category_id": "018d1386-6030-7fc0-b2c8-e98ca5fe52f3",
            "wording": "Chaussures de mariée personnalisées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1271",
            "sub_category_id": "018d1386-6030-7fc0-b2c8-e98ca5fe52f3",
            "wording": "Chaussures de mariée à talons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1231",
            "sub_category_id": null,
            "wording": "Chaussures de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1167",
            "sub_category_id": null,
            "wording": "Chaussures de randonnée légères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1159",
            "sub_category_id": null,
            "wording": "Chaussures de running",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1228",
            "sub_category_id": null,
            "wording": "Chaussures de running",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1237",
            "sub_category_id": "018d1386-6030-7cd1-9b12-5b4071008b05",
            "wording": "Chaussures de skate",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1165",
            "sub_category_id": null,
            "wording": "Chaussures de skateboard",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1095",
            "sub_category_id": null,
            "wording": "Chaussures de soirée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1255",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures de soirée élégantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1085",
            "sub_category_id": null,
            "wording": "Chaussures de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0334",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Chaussures de sport haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1267",
            "sub_category_id": "018d1386-6030-7f97-bf6b-a5d8ede1f72f",
            "wording": "Chaussures de style derby",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1196",
            "sub_category_id": "018d1386-6030-7a75-b56f-a81ec7885f36",
            "wording": "Chaussures de style mocassin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1203",
            "sub_category_id": "018d1386-6030-7745-b1b6-f93f73a64a8c",
            "wording": "Chaussures de sécurité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1653",
            "sub_category_id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "wording": "Chaussures de sécurité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1230",
            "sub_category_id": null,
            "wording": "Chaussures de tennis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1162",
            "sub_category_id": null,
            "wording": "Chaussures de tennis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1204",
            "sub_category_id": "018d1386-6030-7745-b1b6-f93f73a64a8c",
            "wording": "Chaussures de travail légères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1206",
            "sub_category_id": "018d1386-6030-7745-b1b6-f93f73a64a8c",
            "wording": "Chaussures de travail résistantes à l'eau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1216",
            "sub_category_id": "018d1386-6030-78ee-b0c9-55b368da0056",
            "wording": "Chaussures de vélo de ville",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1285",
            "sub_category_id": "018d1386-6030-7d55-85ec-60a462219f0a",
            "wording": "Chaussures de yoga",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1134",
            "sub_category_id": null,
            "wording": "Chaussures décontractées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1176",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures en cuir de haute qualité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1253",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures en cuir de qualité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1179",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures en daim haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1236",
            "sub_category_id": "018d1386-6030-7cd1-9b12-5b4071008b05",
            "wording": "Chaussures en toile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1181",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Chaussures habillées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1178",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Chaussures habillées de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1275",
            "sub_category_id": "018d1386-6030-7eb0-bb6b-3b9bc1901710",
            "wording": "Chaussures orthopédiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1265",
            "sub_category_id": "018d1386-6030-7f97-bf6b-a5d8ede1f72f",
            "wording": "Chaussures oxford plates",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1081",
            "sub_category_id": null,
            "wording": "Chaussures pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1276",
            "sub_category_id": "018d1386-6030-7eb0-bb6b-3b9bc1901710",
            "wording": "Chaussures pour pieds sensibles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1072",
            "sub_category_id": null,
            "wording": "Chaussures pour tout-petits",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1234",
            "sub_category_id": "018d1386-6030-7cd1-9b12-5b4071008b05",
            "wording": "Chaussures slip-on",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1183",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Chaussures à bout d'aile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1182",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Chaussures à enfiler",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1156",
            "sub_category_id": null,
            "wording": "Chaussures à lacets classiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1195",
            "sub_category_id": "018d1386-6030-7a75-b56f-a81ec7885f36",
            "wording": "Chaussures à lacets de conduite",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1185",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Chaussures à lacets formelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1260",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Chaussures à lacets professionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1223",
            "sub_category_id": null,
            "wording": "Chaussures à talons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1259",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Chaussures à talons formels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1069",
            "sub_category_id": null,
            "wording": "Chemises",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0883",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Chemises de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1098",
            "sub_category_id": null,
            "wording": "Chemises de nuit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0976",
            "sub_category_id": null,
            "wording": "Chemises de nuit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0852",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Chemises de nuit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0871",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Chemises de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0800",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises décontractées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0802",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises en flanelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0926",
            "sub_category_id": null,
            "wording": "Chemises en jean",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0801",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises en lin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1036",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Chemises et blouses de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0799",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises habillées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1092",
            "sub_category_id": null,
            "wording": "Chemises habillées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1125",
            "sub_category_id": null,
            "wording": "Chemises pour garçons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0803",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises à col boutonné",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0798",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises à manches courtes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0797",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises à manches longues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0804",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "Chemises à motifs (rayures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0921",
            "sub_category_id": null,
            "wording": "Chemisiers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0630",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Chromebooks",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0407",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Circuits de voiture électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1600",
            "sub_category_id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "wording": "Ciseaux de greffage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1624",
            "sub_category_id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "wording": "Ciseaux à brique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1623",
            "sub_category_id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "wording": "Ciseaux à pierre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0525",
            "sub_category_id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "wording": "Classeurs et armoires de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0740",
            "sub_category_id": "018d1386-602f-7a0c-a094-c20562bb7ad3",
            "wording": "Claviers ergonomiques et silencieux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0692",
            "sub_category_id": null,
            "wording": "Claviers maîtres pour musiciens",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0737",
            "sub_category_id": "018d1386-602f-7a0c-a094-c20562bb7ad3",
            "wording": "Claviers mécaniques avec switchs personnalisables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0423",
            "sub_category_id": "018d1386-602f-7ed8-8de3-3a4758bc83ec",
            "wording": "Claviers électroniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0236",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Climatiseur central",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0233",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Climatiseur de fenêtre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0234",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Climatiseur mural",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0235",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Climatiseur portable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0241",
            "sub_category_id": "018d1386-602f-7065-b26e-02a93aafae7b",
            "wording": "Climatiseur réversible",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1746",
            "sub_category_id": null,
            "wording": "Climatiseurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1671",
            "sub_category_id": "018d1386-6030-735d-842c-c13fedc84c3b",
            "wording": "Clous pour béton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1584",
            "sub_category_id": null,
            "wording": "Clôtures électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0348",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Codenames",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1649",
            "sub_category_id": "018d1386-6030-73fc-aaad-06c216c59102",
            "wording": "Coffrages en bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1647",
            "sub_category_id": "018d1386-6030-73fc-aaad-06c216c59102",
            "wording": "Coffrages modulaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0472",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Coffres et malles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0183",
            "sub_category_id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "wording": "Coffrets de maquillage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0137",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Coffrets de parfum",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0188",
            "sub_category_id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "wording": "Coffrets de produits de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0189",
            "sub_category_id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "wording": "Coffrets de produits naturels et biologiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0184",
            "sub_category_id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "wording": "Coffrets de soins de la peau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0185",
            "sub_category_id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "wording": "Coffrets parfums",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0458",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Coiffeuse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1453",
            "sub_category_id": "018d1386-6030-78f3-b616-a7cbf3a5556c",
            "wording": "Collages artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0886",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Collants de danse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0083",
            "sub_category_id": "018d1386-602e-7b0a-a264-aac7397898cd",
            "wording": "Colliers de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0011",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers en argent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0059",
            "sub_category_id": "018d1386-602e-713d-8a90-63990fbd4058",
            "wording": "Colliers en argent sterling",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0013",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0010",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers en or",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0064",
            "sub_category_id": "018d1386-602e-7882-a019-6a6f3d629460",
            "wording": "Colliers en or rose",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0012",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers en perles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0068",
            "sub_category_id": "018d1386-602e-791b-ae58-30dba04ffe0c",
            "wording": "Colliers fantaisie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0018",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers plastron",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0014",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers ras du cou",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0017",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers sautoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0019",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Colliers statement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0128",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Colorations capillaires temporaires et permanentes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0321",
            "sub_category_id": null,
            "wording": "Combinaison de plongée haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0877",
            "sub_category_id": "018d1386-602f-7035-a05d-18be5781a22a",
            "wording": "Combinaisons de motoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0953",
            "sub_category_id": null,
            "wording": "Combinaisons de soirée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1107",
            "sub_category_id": null,
            "wording": "Combinaisons de surf",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0874",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Combinaisons de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1060",
            "sub_category_id": null,
            "wording": "Combinaisons en coton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0949",
            "sub_category_id": null,
            "wording": "Combinaisons pantalon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0950",
            "sub_category_id": null,
            "wording": "Combishorts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1496",
            "sub_category_id": "018d1386-6030-79d2-804b-a537fbd5d2c3",
            "wording": "Commandes de moteur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0455",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Commode",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0468",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Commodes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0482",
            "sub_category_id": "018d1386-602f-726b-811a-14d76da5c531",
            "wording": "Commodes pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0695",
            "sub_category_id": null,
            "wording": "Commutateurs Ethernet gigabit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1489",
            "sub_category_id": null,
            "wording": "Commutateurs de transfert",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0784",
            "sub_category_id": null,
            "wording": "Commutateurs réseau professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0213",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Compacteur de déchets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1687",
            "sub_category_id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "wording": "Compacteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0203",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Congélateur horizontal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0202",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Congélateur vertical",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1483",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Connecteurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1486",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Connecteurs étanches",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0445",
            "sub_category_id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "wording": "Console",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0652",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Console de streaming de jeux vidéo (ex. NVIDIA Shield)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0658",
            "sub_category_id": "018d1386-602f-7818-9980-e3cb4c7a1dca",
            "wording": "Consoles de dernière génération (PS5",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0438",
            "sub_category_id": "018d1386-602f-7d50-9061-06fa5d2fb77a",
            "wording": "Consoles de jeu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0585",
            "sub_category_id": "018d1386-602f-7e86-8ec7-c67acb01d0d1",
            "wording": "Consoles de jeu (PlayStation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1481",
            "sub_category_id": "018d1386-6030-743f-b256-c19c3c45c59f",
            "wording": "Contacteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0591",
            "sub_category_id": null,
            "wording": "Contrôleurs DJ",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0689",
            "sub_category_id": null,
            "wording": "Contrôleurs MIDI avancés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1581",
            "sub_category_id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "wording": "Convoyeurs à grains",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "0191c181-6435-7060-b369-6f1c56bf23c6",
            "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "wording": "Coque Samsung Galaxy S22 Ultra",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0289",
            "sub_category_id": null,
            "wording": "Corde à sauter professionnelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0100",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Correcteurs anti-cernes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0099",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Correcteurs de teint colorés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0190",
            "sub_category_id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "wording": "Cosmétiques certifiés biologiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1091",
            "sub_category_id": null,
            "wording": "Costumes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0840",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "Costumes complets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0881",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Costumes de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1050",
            "sub_category_id": null,
            "wording": "Costumes de marié",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1046",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Costumes de spectacle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1008",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Costumes de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1360",
            "sub_category_id": "018d1386-6030-7468-be99-12c8a99a8e9f",
            "wording": "Costumes pour les fêtes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1029",
            "sub_category_id": null,
            "wording": "Costumes pour occasions spéciales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1034",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Costumes professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0845",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "Costumes trois pièces",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1618",
            "sub_category_id": "018d1386-6030-754c-a462-93871078f849",
            "wording": "Couronnes de forage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1377",
            "sub_category_id": "018d1386-6030-7297-a0a8-e753867c3d91",
            "wording": "Cours d'artisanat en ligne",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1372",
            "sub_category_id": null,
            "wording": "Cours en ligne et abonnements",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1423",
            "sub_category_id": "018d1386-6030-7e98-9caa-562cceec10ea",
            "wording": "Coussins artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0489",
            "sub_category_id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "wording": "Coussins d'extérieur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0403",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Coussins en peluche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0495",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Coussins et couvertures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1596",
            "sub_category_id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "wording": "Couteaux de greffage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0858",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Cravates",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0110",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Crayons à lèvres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0928",
            "sub_category_id": null,
            "wording": "Crop tops",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0147",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Crèmes dépilatoires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0115",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Crèmes hydratantes de jour et de nuit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0165",
            "sub_category_id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "wording": "Crèmes solaires pour le visage et le corps",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0076",
            "sub_category_id": "018d1386-602e-7dc6-b7e3-1524f6d9efe3",
            "wording": "Créations artisanales uniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0374",
            "sub_category_id": "018d1386-602f-72c0-bd3a-bbd5aae4a7ce",
            "wording": "Cubes en bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1545",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Cueilleuses de fruits",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1543",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Cueilleuses de maïs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0411",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Cuisine miniature",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0204",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Cuisinière à gaz",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0206",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Cuisinière à induction",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0205",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Cuisinière électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1241",
            "sub_category_id": "018d1386-6030-70d3-a8b1-ebc85e0df04f",
            "wording": "Cuissardes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0961",
            "sub_category_id": null,
            "wording": "Culottes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1530",
            "sub_category_id": null,
            "wording": "Cultivateurs à dents",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0788",
            "sub_category_id": "018d1386-602f-7340-9359-c5df31035915",
            "wording": "Câbles DisplayPort",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0602",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles Ethernet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0599",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles HDMI",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0547",
            "sub_category_id": "018d1386-602f-7268-bec4-7b7eb70d7b19",
            "wording": "Câbles HDMI et audioo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0673",
            "sub_category_id": "018d1386-602f-70c2-8dc8-8072ee0ea031",
            "wording": "Câbles HDMI haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0789",
            "sub_category_id": "018d1386-602f-7340-9359-c5df31035915",
            "wording": "Câbles SATA",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0600",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles audio RCA",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1485",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles coaxiaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1484",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles de communication",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0601",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles optiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1482",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Câbles électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1309",
            "sub_category_id": "018d1386-6030-7b5a-9d68-44e27e983844",
            "wording": "DVD et Blu-ray",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1152",
            "sub_category_id": null,
            "wording": "Derbies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1224",
            "sub_category_id": null,
            "wording": "Derbies féminines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0450",
            "sub_category_id": "018d1386-602f-7b07-8147-39f146d69c95",
            "wording": "Desserte",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0518",
            "sub_category_id": "018d1386-602f-762f-8cca-6e944ad74650",
            "wording": "Desserte de cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1295",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Dessins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1340",
            "sub_category_id": "018d1386-6030-7824-85e6-8d02e54033cf",
            "wording": "Dictionnaires et encyclopédies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1477",
            "sub_category_id": "018d1386-6030-743f-b256-c19c3c45c59f",
            "wording": "Disjoncteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1506",
            "sub_category_id": null,
            "wording": "Dispositifs de protection contre les courts-circuits",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1504",
            "sub_category_id": null,
            "wording": "Dispositifs de protection contre les surtensions",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0794",
            "sub_category_id": null,
            "wording": "Dispositifs de stockage de sauvegarde (bandes magnétiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0669",
            "sub_category_id": "018d1386-602f-7c2d-ba41-e2403e2bbabd",
            "wording": "Disques SSD ultrarapides",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0715",
            "sub_category_id": "018d1386-602f-747a-8dce-6e088a738006",
            "wording": "Disques durs SATA et SSD SATA",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0717",
            "sub_category_id": "018d1386-602f-747a-8dce-6e088a738006",
            "wording": "Disques durs externes et SSD externes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0668",
            "sub_category_id": "018d1386-602f-7c2d-ba41-e2403e2bbabd",
            "wording": "Disques durs externes haute capacité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0718",
            "sub_category_id": "018d1386-602f-747a-8dce-6e088a738006",
            "wording": "Disques durs hybrides (SSHD)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0152",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Dissolvants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1555",
            "sub_category_id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "wording": "Distributeurs d'engrais liquide",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0347",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Dixit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1559",
            "sub_category_id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "wording": "Doseurs d'engrais",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0404",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Doudous",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1591",
            "sub_category_id": null,
            "wording": "Drones agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0656",
            "sub_category_id": "018d1386-602f-7021-88b6-83d653606836",
            "wording": "Drones avec caméra 4K",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0924",
            "sub_category_id": null,
            "wording": "Débardeurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1004",
            "sub_category_id": null,
            "wording": "Débardeurs de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1666",
            "sub_category_id": "018d1386-6030-77f7-b14e-f4ceb9550d60",
            "wording": "Décapants de surface",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1529",
            "sub_category_id": null,
            "wording": "Déchaumeurs à disques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1743",
            "sub_category_id": null,
            "wording": "Déchiqueteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0562",
            "sub_category_id": "018d1386-602f-726d-a305-a695da07fee0",
            "wording": "Décodeurs TV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1533",
            "sub_category_id": null,
            "wording": "Décompacteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1358",
            "sub_category_id": "018d1386-6030-7468-be99-12c8a99a8e9f",
            "wording": "Décorations de fête",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0498",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Décorations murales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1030",
            "sub_category_id": null,
            "wording": "Déguisements pour Halloween",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1146",
            "sub_category_id": null,
            "wording": "Déguisements pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1495",
            "sub_category_id": "018d1386-6030-79d2-804b-a537fbd5d2c3",
            "wording": "Démarreurs de moteur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0148",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Déodorants parfumés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0179",
            "sub_category_id": "018d1386-602f-7921-8147-ea2ddae61685",
            "wording": "Déodorants pour hommes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0243",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Déshumidificateur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0121",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Eau micellaire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0133",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Eaux de parfum",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0134",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Eaux de toilette",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0195",
            "sub_category_id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "wording": "Emballages écologiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0539",
            "sub_category_id": "018d1386-602f-7c4b-862f-098d29623d6c",
            "wording": "Enceintes Bluetooth",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0752",
            "sub_category_id": "018d1386-602f-73bc-b21a-7c67005abdf1",
            "wording": "Enceintes de bureau haute fidélité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0593",
            "sub_category_id": null,
            "wording": "Enceintes de monitoring",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0578",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Enceintes intelligentes avec écran",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0645",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Enceintes intelligentes avec écran tactile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0647",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Enceintes intelligentes compactes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0648",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Enceintes intelligentes haute-fidélité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0579",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Enceintes intelligentes portables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1347",
            "sub_category_id": "018d1386-6030-77d8-b5fe-d8e991cf5fcd",
            "wording": "Encens et bougies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0103",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Enlumineurs et illuminateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0545",
            "sub_category_id": "018d1386-602f-7282-bdb7-1bcf5d61d587",
            "wording": "Enregistreurs DVD",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0561",
            "sub_category_id": "018d1386-602f-726d-a305-a695da07fee0",
            "wording": "Enregistreurs DVR",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0582",
            "sub_category_id": null,
            "wording": "Enregistreurs audio portables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0473",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Ensemble de salon de jardin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1124",
            "sub_category_id": null,
            "wording": "Ensembles assortis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1059",
            "sub_category_id": null,
            "wording": "Ensembles assortis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0739",
            "sub_category_id": "018d1386-602f-7a0c-a094-c20562bb7ad3",
            "wording": "Ensembles clavier-souris sans fil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0336",
            "sub_category_id": null,
            "wording": "Ensembles complets de clubs de golf de marques populaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0395",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Ensembles de badminton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0056",
            "sub_category_id": "018d1386-602e-7933-9f81-b609c20f5d58",
            "wording": "Ensembles de bijoux assortis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0057",
            "sub_category_id": "018d1386-602e-7933-9f81-b609c20f5d58",
            "wording": "Ensembles de bijoux de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0055",
            "sub_category_id": "018d1386-602e-7933-9f81-b609c20f5d58",
            "wording": "Ensembles de bijoux de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0062",
            "sub_category_id": "018d1386-602e-713d-8a90-63990fbd4058",
            "wording": "Ensembles de bijoux en argent sterling",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0962",
            "sub_category_id": null,
            "wording": "Ensembles de lingerie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0111",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Ensembles de maquillage complet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0186",
            "sub_category_id": "018d1386-602f-7e9b-9a9e-43945b67e3f2",
            "wording": "Ensembles de soins capillaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1542",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Ensileuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1631",
            "sub_category_id": null,
            "wording": "Escabeaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1221",
            "sub_category_id": null,
            "wording": "Escarpins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0988",
            "sub_category_id": null,
            "wording": "Escarpins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1257",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Escarpins de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1269",
            "sub_category_id": "018d1386-6030-7fc0-b2c8-e98ca5fe52f3",
            "wording": "Escarpins de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1252",
            "sub_category_id": "018d1386-6030-7e12-8ef0-fbdd1227b020",
            "wording": "Escarpins haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1168",
            "sub_category_id": null,
            "wording": "Espadrilles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1235",
            "sub_category_id": "018d1386-6030-7cd1-9b12-5b4071008b05",
            "wording": "Espadrilles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1266",
            "sub_category_id": "018d1386-6030-7f97-bf6b-a5d8ede1f72f",
            "wording": "Espadrilles plates",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0122",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Essences et lotions pré-soin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1403",
            "sub_category_id": "018d1386-6030-7751-a1bd-890780641910",
            "wording": "Estampes japonaises",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1407",
            "sub_category_id": "018d1386-6030-7751-a1bd-890780641910",
            "wording": "Estampes numérotées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0146",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Exfoliants corporels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0697",
            "sub_category_id": null,
            "wording": "Extendeurs de portée Wi-Fi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0106",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Eyeliner liquide",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0104",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Fards à paupières individuels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1546",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Faucheuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0441",
            "sub_category_id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "wording": "Fauteuil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1429",
            "sub_category_id": "018d1386-6030-79b6-be1b-fd14c8c2efc7",
            "wording": "Fauteuils artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0485",
            "sub_category_id": "018d1386-602f-726b-811a-14d76da5c531",
            "wording": "Fauteuils pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0249",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Fer à lisser haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0413",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Ferme miniature",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0365",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "Figurines Funko Pop!",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0363",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "Figurines d'action (Super-héros",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1412",
            "sub_category_id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "wording": "Figurines d'artistes célèbres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0369",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "Figurines de jeux vidéo (Fortnite",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0367",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "Figurines en plastique de héros et personnages",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1367",
            "sub_category_id": "018d1386-6030-7dac-9455-a59f9c2d701f",
            "wording": "Figurines et statuettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0598",
            "sub_category_id": "018d1386-602f-79db-bbbd-7e8e9ad060f8",
            "wording": "Filtres anti-pop",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0573",
            "sub_category_id": "018d1386-602f-7365-991b-15dcd309e057",
            "wording": "Flashs pour appareils photoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0314",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Foam roller avec surface texturée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0098",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Fond de teint en poudre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0097",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Fond de teint liquide",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1718",
            "sub_category_id": null,
            "wording": "Foreuses de puits",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1721",
            "sub_category_id": null,
            "wording": "Foreuses géotechniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1719",
            "sub_category_id": null,
            "wording": "Foreuses horizontales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1351",
            "sub_category_id": "018d1386-6030-71f9-8bee-544e043716c4",
            "wording": "Fossiles et minéraux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0208",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Four encastrable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0209",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Four à micro-ondes encastrable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0393",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Frisbees",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1503",
            "sub_category_id": null,
            "wording": "Fusibles de protection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1491",
            "sub_category_id": null,
            "wording": "Fusibles et disjoncteurs de distribution",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0366",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "G.I. Joe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1590",
            "sub_category_id": null,
            "wording": "GPS agricole",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1329",
            "sub_category_id": "018d1386-6030-7920-8f89-f873a9f8f545",
            "wording": "Gadgets électroniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0987",
            "sub_category_id": null,
            "wording": "Gants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0865",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Gants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0291",
            "sub_category_id": null,
            "wording": "Gants de boxe en cuir véritable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0878",
            "sub_category_id": "018d1386-602f-7035-a05d-18be5781a22a",
            "wording": "Gants de motoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1652",
            "sub_category_id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "wording": "Gants de travail résistants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1111",
            "sub_category_id": null,
            "wording": "Gants et moufles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0141",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Gels douche parfumés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0361",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Geomag",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1699",
            "sub_category_id": null,
            "wording": "Gerbeurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0318",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Gilet de poids ajustable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0322",
            "sub_category_id": null,
            "wording": "Gilet de sauvetage homologué",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0843",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "Gilets assortis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0109",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Gloss à lèvres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1571",
            "sub_category_id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "wording": "Godets pour chargeurs frontaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0117",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Gommages pour le visage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0557",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Google Chromecast",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0576",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Google Home",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1296",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Gravures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1404",
            "sub_category_id": "018d1386-6030-7751-a1bd-890780641910",
            "wording": "Gravures sur bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0613",
            "sub_category_id": null,
            "wording": "Green screens",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1061",
            "sub_category_id": null,
            "wording": "Grenouillères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1440",
            "sub_category_id": "018d1386-6030-7902-baee-3bc996878091",
            "wording": "Grilles artistiques en métal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1728",
            "sub_category_id": null,
            "wording": "Groupe électrogène mobile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1749",
            "sub_category_id": null,
            "wording": "Groupes de refroidissement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1725",
            "sub_category_id": null,
            "wording": "Groupes électrogènes diesel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1729",
            "sub_category_id": null,
            "wording": "Groupes électrogènes insonorisés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1726",
            "sub_category_id": null,
            "wording": "Groupes électrogènes à essence",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1686",
            "sub_category_id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "wording": "Grues mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1635",
            "sub_category_id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "wording": "Grues mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0424",
            "sub_category_id": "018d1386-602f-7ed8-8de3-3a4758bc83ec",
            "wording": "Guitares pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1727",
            "sub_category_id": null,
            "wording": "Générateurs solaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0479",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Hamac",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1573",
            "sub_category_id": null,
            "wording": "Hangars agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1654",
            "sub_category_id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "wording": "Harnais de sécurité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0540",
            "sub_category_id": "018d1386-602f-7c4b-862f-098d29623d6c",
            "wording": "Haut-parleurs sans fil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0996",
            "sub_category_id": null,
            "wording": "Hauts de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1119",
            "sub_category_id": null,
            "wording": "Hauts de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1006",
            "sub_category_id": null,
            "wording": "Hauts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0925",
            "sub_category_id": null,
            "wording": "Hauts sans manches",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1528",
            "sub_category_id": null,
            "wording": "Herses rotatives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "01914b09-6159-7e99-a92e-36ec5c3e99d7",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Hidorakai",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1130",
            "sub_category_id": null,
            "wording": "Hoodies décontractés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0904",
            "sub_category_id": null,
            "wording": "Hoodies sportswear",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1448",
            "sub_category_id": "018d1386-6030-7122-9936-fb035102d91a",
            "wording": "Horloges décoratives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0497",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Horloges murales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1450",
            "sub_category_id": "018d1386-6030-7122-9936-fb035102d91a",
            "wording": "Horloges murales artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0663",
            "sub_category_id": null,
            "wording": "Hub de maison connectée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0145",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Huiles pour le corps",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0119",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Huiles pour le visage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0316",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Hula hoop pondéré professionnel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0244",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Humidificateur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0414",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Hôpital miniature",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1348",
            "sub_category_id": "018d1386-6030-77d8-b5fe-d8e991cf5fcd",
            "wording": "Iconographie religieuse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1462",
            "sub_category_id": "018d1386-6030-74ab-a23c-cef1937886b4",
            "wording": "Icônes religieuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0894",
            "sub_category_id": "018d1386-602f-73a8-bb15-2288201986dd",
            "wording": "Imperméables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1409",
            "sub_category_id": "018d1386-6030-76d2-a906-7f43a795bb16",
            "wording": "Impressions numériques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1402",
            "sub_category_id": "018d1386-6030-722e-b7e1-415b4502bb5c",
            "wording": "Impressions sur métal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0682",
            "sub_category_id": "018d1386-602f-75ba-91f5-2f734bec9aa0",
            "wording": "Imprimantes 3D",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0679",
            "sub_category_id": "018d1386-602f-75ba-91f5-2f734bec9aa0",
            "wording": "Imprimantes laser couleur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0681",
            "sub_category_id": "018d1386-602f-75ba-91f5-2f734bec9aa0",
            "wording": "Imprimantes photo compactes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0678",
            "sub_category_id": "018d1386-602f-75ba-91f5-2f734bec9aa0",
            "wording": "Imprimantes tout-en-un avec Wi-Fi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1742",
            "sub_category_id": null,
            "wording": "Incinérateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1299",
            "sub_category_id": "018d1386-6030-74e8-844c-ad22f9808160",
            "wording": "Instruments de musique (guitares",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1371",
            "sub_category_id": null,
            "wording": "Instruments de musique pour débutants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0422",
            "sub_category_id": "018d1386-602f-7ed8-8de3-3a4758bc83ec",
            "wording": "Instruments de musique pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1510",
            "sub_category_id": "018d1386-6030-7f07-9666-1176fcda2178",
            "wording": "Interface homme-machine (HMI)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0581",
            "sub_category_id": null,
            "wording": "Interfaces audioo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1478",
            "sub_category_id": "018d1386-6030-743f-b256-c19c3c45c59f",
            "wording": "Interrupteurs de sécurité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1480",
            "sub_category_id": "018d1386-6030-743f-b256-c19c3c45c59f",
            "wording": "Interrupteurs différentiels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0665",
            "sub_category_id": null,
            "wording": "Interrupteurs et prises connectés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1479",
            "sub_category_id": "018d1386-6030-743f-b256-c19c3c45c59f",
            "wording": "Interrupteurs à bascule",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0929",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Jeans",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0827",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Jeans droits",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1075",
            "sub_category_id": null,
            "wording": "Jeans et pantalons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0828",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Jeans skinny",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0826",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Jeans slim",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1445",
            "sub_category_id": "018d1386-6030-797f-b89d-032b7c444b82",
            "wording": "Jetons de collection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0410",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Jeux de Simulation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0384",
            "sub_category_id": null,
            "wording": "Jeux de bain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1364",
            "sub_category_id": "018d1386-6030-7dac-9455-a59f9c2d701f",
            "wording": "Jeux de cartes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0352",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Jeux de cartes à collectionner (Magic The Gathering",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0372",
            "sub_category_id": "018d1386-602f-72c0-bd3a-bbd5aae4a7ce",
            "wording": "Jeux de construction en bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0392",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Jeux de croquet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0379",
            "sub_category_id": null,
            "wording": "Jeux de géographie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0378",
            "sub_category_id": null,
            "wording": "Jeux de lettres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0380",
            "sub_category_id": null,
            "wording": "Jeux de logique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0377",
            "sub_category_id": null,
            "wording": "Jeux de mathématiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1327",
            "sub_category_id": "018d1386-6030-71b2-a11e-5d5958eeb0f2",
            "wording": "Jeux de société",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1363",
            "sub_category_id": "018d1386-6030-7dac-9455-a59f9c2d701f",
            "wording": "Jeux de société classiques et modernes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0437",
            "sub_category_id": "018d1386-602f-7d50-9061-06fa5d2fb77a",
            "wording": "Jeux vidéo d'occasion",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1333",
            "sub_category_id": "018d1386-6030-7920-8f89-f873a9f8f545",
            "wording": "Jeux vidéo et consoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1370",
            "sub_category_id": null,
            "wording": "Jeux éducatifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0381",
            "sub_category_id": null,
            "wording": "Jeux éducatifs interactifs (LeapFrog",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0368",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "Jouets Power Rangers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0364",
            "sub_category_id": "018d1386-602f-7002-87a8-af9aae35cf6a",
            "wording": "Jouets Transformers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1366",
            "sub_category_id": "018d1386-6030-7dac-9455-a59f9c2d701f",
            "wording": "Jouets de collection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0431",
            "sub_category_id": "018d1386-602f-7ffe-b109-7eb6d8f979eb",
            "wording": "Jouets de construction artistique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0386",
            "sub_category_id": null,
            "wording": "Jouets de dentition",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0401",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Jouets en peluche géants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0382",
            "sub_category_id": null,
            "wording": "Jouets en plastique non toxique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0387",
            "sub_category_id": null,
            "wording": "Jouets sonores et lumineux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0385",
            "sub_category_id": null,
            "wording": "Jouets à empiler",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1068",
            "sub_category_id": null,
            "wording": "Jupes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0936",
            "sub_category_id": null,
            "wording": "Jupes crayon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1094",
            "sub_category_id": null,
            "wording": "Jupes de fête",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1011",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Jupes de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0941",
            "sub_category_id": null,
            "wording": "Jupes droites",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0940",
            "sub_category_id": null,
            "wording": "Jupes en denim",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0939",
            "sub_category_id": null,
            "wording": "Jupes maxi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0937",
            "sub_category_id": null,
            "wording": "Jupes plissées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0938",
            "sub_category_id": null,
            "wording": "Jupes trapèze",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1024",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Justaucorps de ballet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1045",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Justaucorps de ballet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0885",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Justaucorps de danse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0355",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "K'NEX",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0308",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Kayak de mer avec gouvernail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0156",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Kits d'art des ongles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0427",
            "sub_category_id": "018d1386-602f-7ffe-b109-7eb6d8f979eb",
            "wording": "Kits d'artisanat",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0434",
            "sub_category_id": "018d1386-602f-7368-9ce8-9e99ea53f00c",
            "wording": "Kits de baseball pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1374",
            "sub_category_id": "018d1386-6030-7297-a0a8-e753867c3d91",
            "wording": "Kits de bricolage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0777",
            "sub_category_id": "018d1386-602f-7467-8399-6b1b53248dbe",
            "wording": "Kits de développement Arduinoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0778",
            "sub_category_id": "018d1386-602f-7467-8399-6b1b53248dbe",
            "wording": "Kits de développement Raspberry Pi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0172",
            "sub_category_id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "wording": "Kits de maquillage professionnel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0713",
            "sub_category_id": "018d1386-602f-701c-a44d-bb225fc0fb27",
            "wording": "Kits de mémoire haute performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0618",
            "sub_category_id": "018d1386-602f-7b62-92d4-8f378605a163",
            "wording": "Kits de nettoyage audio-vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0257",
            "sub_category_id": null,
            "wording": "Kits de nettoyage et d'entretien",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0376",
            "sub_category_id": null,
            "wording": "Kits de robotique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0375",
            "sub_category_id": null,
            "wording": "Kits de science",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0182",
            "sub_category_id": "018d1386-602f-7921-8147-ea2ddae61685",
            "wording": "Kits de soins de la barbe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0360",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Knex",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0353",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "LEGO (ensembles complets)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "0192bf3e-e8b2-77db-ad2a-a9e8e0fadfd3",
            "sub_category_id": "0192bf3e-7ee7-72bb-9c96-c9b9fd3fca77",
            "wording": "LG UHD UR73 50'' 4K Smart TV 2023",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0362",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "LaQ",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1602",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Lames de déneigement pour tracteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0463",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Lampe de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0526",
            "sub_category_id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "wording": "Lampe de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0775",
            "sub_category_id": "018d1386-602f-7dbc-9a74-488ed39b1e8e",
            "wording": "Lampes de bureau LED réglables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0491",
            "sub_category_id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "wording": "Lampes solaires d'extérieur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1641",
            "sub_category_id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "wording": "Lasers de nivellement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0217",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Lave-linge séchant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0215",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Lave-linge à chargement frontal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0216",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Lave-linge à chargement par le haut",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0211",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Lave-vaisselle encastrable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0212",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Lave-vaisselle portable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0210",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Lave-vaisselle standard",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018fc8e0-977d-782f-81e8-d9169e4856d6",
            "sub_category_id": null,
            "wording": "Layette",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0542",
            "sub_category_id": "018d1386-602f-7282-bdb7-1bcf5d61d587",
            "wording": "Lecteurs Blu-ray",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0544",
            "sub_category_id": "018d1386-602f-7282-bdb7-1bcf5d61d587",
            "wording": "Lecteurs Blu-ray 3D",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0543",
            "sub_category_id": "018d1386-602f-7282-bdb7-1bcf5d61d587",
            "wording": "Lecteurs DVD",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0792",
            "sub_category_id": null,
            "wording": "Lecteurs de cartes mémoire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0934",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Leggings",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1080",
            "sub_category_id": null,
            "wording": "Leggings",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1026",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Leggings de danse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1087",
            "sub_category_id": null,
            "wording": "Leggings de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0971",
            "sub_category_id": null,
            "wording": "Leggings de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1003",
            "sub_category_id": null,
            "wording": "Leggings de yoga",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0154",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Lime à ongles et polissoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0359",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Lincoln Logs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0120",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Lingettes démaquillantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1307",
            "sub_category_id": "018d1386-6030-770e-8be0-eb394ad30398",
            "wording": "Liseuses électroniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1622",
            "sub_category_id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "wording": "Lisseuses à béton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0452",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Lit (lit simple",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1405",
            "sub_category_id": "018d1386-6030-7751-a1bd-890780641910",
            "wording": "Lithographies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0502",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "Lits escamotables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0480",
            "sub_category_id": "018d1386-602f-726b-811a-14d76da5c531",
            "wording": "Lits pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1304",
            "sub_category_id": "018d1386-6030-770e-8be0-eb394ad30398",
            "wording": "Livres (romans",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1454",
            "sub_category_id": "018d1386-6030-78f3-b616-a7cbf3a5556c",
            "wording": "Livres d'art en papier découpé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1334",
            "sub_category_id": "018d1386-6030-7cd8-bd59-385cea4cf533",
            "wording": "Livres d'histoire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1339",
            "sub_category_id": "018d1386-6030-7824-85e6-8d02e54033cf",
            "wording": "Livres de grammaire et de linguistique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1315",
            "sub_category_id": "018d1386-6030-786c-9186-0727b06c077e",
            "wording": "Livres de recettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1343",
            "sub_category_id": "018d1386-6030-7824-85e6-8d02e54033cf",
            "wording": "Livres en langues étrangères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0383",
            "sub_category_id": null,
            "wording": "Livres en tissu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1369",
            "sub_category_id": null,
            "wording": "Livres pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1349",
            "sub_category_id": "018d1386-6030-71f9-8bee-544e043716c4",
            "wording": "Livres scientifiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1380",
            "sub_category_id": null,
            "wording": "Livres sur la durabilité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1592",
            "sub_category_id": null,
            "wording": "Logiciels de gestion agricole",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0691",
            "sub_category_id": null,
            "wording": "Logiciels de production musicale",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0143",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Lotions pour le corps hydratantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0166",
            "sub_category_id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "wording": "Lotions solaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0492",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Luminaires (lampadaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1515",
            "sub_category_id": null,
            "wording": "Luminaires d'urgence",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1512",
            "sub_category_id": null,
            "wording": "Luminaires industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1651",
            "sub_category_id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "wording": "Lunettes de protection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0986",
            "sub_category_id": null,
            "wording": "Lunettes de soleil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0864",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Lunettes de soleil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1113",
            "sub_category_id": null,
            "wording": "Lunettes de soleil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "0191934e-3d80-7014-9d51-663c3c6b112f",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "MacBook Air 2018",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919359-7e66-78a7-8880-57b91ad0fbf7",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "MacBook Air 2018",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919345-a172-70da-9f2f-68f6efbf2d59",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "MacBook Air 2018",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0271",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Machine à biceps/triceps",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0223",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Machine à coudre industrielle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0270",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Machine à dorsaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0282",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Machine à hyperextension",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0280",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Machine à push-up",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0272",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Machine à quadriceps/ischio-jambiers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1711",
            "sub_category_id": null,
            "wording": "Machines CNC",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1713",
            "sub_category_id": null,
            "wording": "Machines de découpe laser",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1539",
            "sub_category_id": null,
            "wording": "Machines à semer les graines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1322",
            "sub_category_id": "018d1386-6030-78a5-8429-dce15fb9ff0b",
            "wording": "Magazines de mode",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1306",
            "sub_category_id": "018d1386-6030-770e-8be0-eb394ad30398",
            "wording": "Magazines littéraires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0357",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Magna-Tiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "01925786-19ba-7ca4-a84e-068899ce0ae9",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Maillot Barça Spotify 24/25",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019257ba-46ef-76d2-9d9f-fb3442e2b708",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Maillot Barça Spotify 24/25",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0853",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Maillots de bain courts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0855",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Maillots de bain de style surf",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1105",
            "sub_category_id": null,
            "wording": "Maillots de bain deux pièces",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0854",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Maillots de bain longs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1104",
            "sub_category_id": null,
            "wording": "Maillots de bain une pièce",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0969",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Maillots de bain une épaule",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0970",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Maillots de bain à taille haute",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0867",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Maillots de compression",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1084",
            "sub_category_id": null,
            "wording": "Maillots de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0333",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Maillots de sport de marques spécialisées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0302",
            "sub_category_id": null,
            "wording": "Maillots et shorts d'équipes de sport professionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0966",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Maillots une pièce",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018f9fe0-a21c-71a0-ad97-ab1877c23fe2",
            "sub_category_id": null,
            "wording": "Maison",
            "is_published": null,
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0416",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Maison de poupée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018fc8ed-056a-7072-9d2c-fce3ee1e6af3",
            "sub_category_id": null,
            "wording": "Manchette pour enfant",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0586",
            "sub_category_id": "018d1386-602f-7e86-8ec7-c67acb01d0d1",
            "wording": "Manettes de jeu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0660",
            "sub_category_id": "018d1386-602f-7818-9980-e3cb4c7a1dca",
            "wording": "Manettes de jeu sans fil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0439",
            "sub_category_id": "018d1386-602f-7d50-9061-06fa5d2fb77a",
            "wording": "Manettes et accessoires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1570",
            "sub_category_id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "wording": "Manipulateurs télescopiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0288",
            "sub_category_id": null,
            "wording": "Mannequin de frappe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1014",
            "sub_category_id": null,
            "wording": "Manteaux coupe-vent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1137",
            "sub_category_id": null,
            "wording": "Manteaux d'hiver",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0943",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Manteaux d'hiver",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0822",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Manteaux d'hiver matelassés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1121",
            "sub_category_id": null,
            "wording": "Manteaux de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0998",
            "sub_category_id": null,
            "wording": "Manteaux de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0821",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Manteaux en laine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0946",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Manteaux longs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1128",
            "sub_category_id": null,
            "wording": "Manteaux pour garçons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0176",
            "sub_category_id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "wording": "Maquillage airbrush",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0171",
            "sub_category_id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "wording": "Maquillage pour artistes professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0194",
            "sub_category_id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "wording": "Maquillage végétalien et sans cruauté",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1722",
            "sub_category_id": null,
            "wording": "Marteaux de forage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1616",
            "sub_category_id": "018d1386-6030-754c-a462-93871078f849",
            "wording": "Marteaux perforateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0107",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Mascara volumisant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0125",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Masques capillaires réparateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0116",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Masques hydratants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1659",
            "sub_category_id": null,
            "wording": "Mastics d'étanchéité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0454",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Matelas",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1342",
            "sub_category_id": "018d1386-6030-7824-85e6-8d02e54033cf",
            "wording": "Matériel d'apprentissage des langues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1525",
            "sub_category_id": null,
            "wording": "Matériel de fixation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1524",
            "sub_category_id": null,
            "wording": "Matériel de montage électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1373",
            "sub_category_id": "018d1386-6030-7297-a0a8-e753867c3d91",
            "wording": "Matériel pour loisirs créatifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1368",
            "sub_category_id": null,
            "wording": "Matériel éducatif",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0356",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Meccanoo",
            "is_published": null,
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0354",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Mega Bloks",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1657",
            "sub_category_id": null,
            "wording": "Membranes d'étanchéité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1303",
            "sub_category_id": "018d1386-6030-74e8-844c-ad22f9808160",
            "wording": "Merchandising d'artistes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1313",
            "sub_category_id": "018d1386-6030-7b5a-9d68-44e27e983844",
            "wording": "Merchandising de films et séries TV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1323",
            "sub_category_id": "018d1386-6030-78a5-8429-dce15fb9ff0b",
            "wording": "Merchandising de marques de mode",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1642",
            "sub_category_id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "wording": "Mesures laser",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0443",
            "sub_category_id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "wording": "Meuble TV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0510",
            "sub_category_id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "wording": "Meuble sous-vasque",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0505",
            "sub_category_id": "018d1386-602f-7119-a53d-0f936c9c5156",
            "wording": "Meubles anciens restaurés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1428",
            "sub_category_id": "018d1386-6030-79b6-be1b-fd14c8c2efc7",
            "wording": "Meubles décoratifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0509",
            "sub_category_id": "018d1386-602f-7119-a53d-0f936c9c5156",
            "wording": "Meubles en style vintage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1431",
            "sub_category_id": "018d1386-6030-79b6-be1b-fd14c8c2efc7",
            "wording": "Meubles en édition limitée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0528",
            "sub_category_id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "wording": "Meubles fabriqués à partir de palettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0501",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "Meubles modulaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0532",
            "sub_category_id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "wording": "Meubles peints à la main",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0530",
            "sub_category_id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "wording": "Meubles personnalisés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1427",
            "sub_category_id": "018d1386-6030-79b6-be1b-fd14c8c2efc7",
            "wording": "Meubles sculptés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0470",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Meubles à chaussures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1610",
            "sub_category_id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "wording": "Meuleuses d'angle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0594",
            "sub_category_id": "018d1386-602f-79db-bbbd-7e8e9ad060f8",
            "wording": "Microphones USB",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0757",
            "sub_category_id": "018d1386-602f-7432-86f0-f6129b14f9eb",
            "wording": "Microphones USB pour enregistrement vocal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0760",
            "sub_category_id": "018d1386-602f-7432-86f0-f6129b14f9eb",
            "wording": "Microphones de conférence pour les appels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0612",
            "sub_category_id": null,
            "wording": "Microphones de diffusion",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0426",
            "sub_category_id": "018d1386-602f-7ed8-8de3-3a4758bc83ec",
            "wording": "Microphones de karaoké",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0759",
            "sub_category_id": "018d1386-602f-7432-86f0-f6129b14f9eb",
            "wording": "Microphones de streaming avec bras articulé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0758",
            "sub_category_id": "018d1386-602f-7432-86f0-f6129b14f9eb",
            "wording": "Microphones de studio pour la musique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0580",
            "sub_category_id": null,
            "wording": "Microphones de studioo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0572",
            "sub_category_id": "018d1386-602f-7365-991b-15dcd309e057",
            "wording": "Microphones externes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0596",
            "sub_category_id": "018d1386-602f-79db-bbbd-7e8e9ad060f8",
            "wording": "Microphones sans fil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0595",
            "sub_category_id": "018d1386-602f-79db-bbbd-7e8e9ad060f8",
            "wording": "Microphones à condensateur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0635",
            "sub_category_id": "018d1386-602f-736d-b78b-8279e9ba4ebd",
            "wording": "Mini-PC et NUC (Next Unit of Computing)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0435",
            "sub_category_id": "018d1386-602f-7368-9ce8-9e99ea53f00c",
            "wording": "Mini-but de soccer",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0436",
            "sub_category_id": "018d1386-602f-7368-9ce8-9e99ea53f00c",
            "wording": "Mini-panier de basket-ball",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1387",
            "sub_category_id": "018d1386-6030-7ee6-b847-b79df700aab9",
            "wording": "Miniatures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1414",
            "sub_category_id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "wording": "Miniatures artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0138",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Miniatures de parfum",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0160",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Miroirs de poche et miroirs de maquillage avec éclairage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0493",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Miroirs décoratifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0486",
            "sub_category_id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "wording": "Mobilier de balcon compact",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1439",
            "sub_category_id": "018d1386-6030-7902-baee-3bc996878091",
            "wording": "Mobilier métallique artistique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0507",
            "sub_category_id": "018d1386-602f-7119-a53d-0f936c9c5156",
            "wording": "Mobilier rétroo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1225",
            "sub_category_id": null,
            "wording": "Mocassins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1155",
            "sub_category_id": null,
            "wording": "Mocassins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0994",
            "sub_category_id": null,
            "wording": "Mocassins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1277",
            "sub_category_id": "018d1386-6030-7eb0-bb6b-3b9bc1901710",
            "wording": "Mocassins confortables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1194",
            "sub_category_id": "018d1386-6030-7a75-b56f-a81ec7885f36",
            "wording": "Mocassins de conduite",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1258",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Mocassins de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1184",
            "sub_category_id": "018d1386-6030-7dca-9ba5-c64c958238fa",
            "wording": "Mocassins habillés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1264",
            "sub_category_id": "018d1386-6030-7f97-bf6b-a5d8ede1f72f",
            "wording": "Mocassins plats",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0766",
            "sub_category_id": "018d1386-602f-7815-bda1-6f330007106b",
            "wording": "Modems DSL et câble",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0696",
            "sub_category_id": null,
            "wording": "Modems haut débit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0712",
            "sub_category_id": "018d1386-602f-701c-a44d-bb225fc0fb27",
            "wording": "Modules de RAM DDR4",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0780",
            "sub_category_id": "018d1386-602f-7467-8399-6b1b53248dbe",
            "wording": "Modules et capteurs électroniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0620",
            "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "wording": "Modèles iPhone récents",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0409",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Modèles réduits d'avions",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1541",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Moissonneuses-batteuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1705",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "Moissonneuses-batteuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0744",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs 4K et ultra-larges",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0683",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs gaming avec taux de rafraîchissement élevé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0742",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs gaming avec taux de rafraîchissement élevé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0687",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs incurvés immersifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0684",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs professionnels avec précision des couleurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0743",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs professionnels pour la conception graphique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0608",
            "sub_category_id": null,
            "wording": "Moniteurs supplémentaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0686",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs tactiles interactifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0745",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs tactiles pour une utilisation interactive",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0685",
            "sub_category_id": "018d1386-602f-7be4-9c11-a410655decc4",
            "wording": "Moniteurs ultra-larges pour la productivité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0341",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Monopoly",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1632",
            "sub_category_id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "wording": "Monte-matériaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0326",
            "sub_category_id": "018d1386-602f-7c1d-b22f-9598f1f605de",
            "wording": "Montre de sport GPS multisports",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1447",
            "sub_category_id": "018d1386-6030-7122-9936-fb035102d91a",
            "wording": "Montres artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0044",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres connectées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0638",
            "sub_category_id": "018d1386-602f-79c8-a48f-663995109c8e",
            "wording": "Montres connectées abordables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0636",
            "sub_category_id": "018d1386-602f-79c8-a48f-663995109c8e",
            "wording": "Montres connectées haut de gamme (Apple Watch",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0698",
            "sub_category_id": null,
            "wording": "Montres de fitness GPS avancées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0637",
            "sub_category_id": "018d1386-602f-79c8-a48f-663995109c8e",
            "wording": "Montres de fitness spécialisées (Fitbit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0042",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres de luxe (Rolex",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0045",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres de plongée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0046",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0639",
            "sub_category_id": "018d1386-602f-79c8-a48f-663995109c8e",
            "wording": "Montres de sport GPS",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0041",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres en argent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0040",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres en or",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0043",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres vintage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0039",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "Montres-bracelets en acier inoxydable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1421",
            "sub_category_id": "018d1386-6030-7ae3-9758-62c19c745cdc",
            "wording": "Mosaïques artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1492",
            "sub_category_id": "018d1386-6030-79d2-804b-a537fbd5d2c3",
            "wording": "Moteurs électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1578",
            "sub_category_id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "wording": "Moulins à grains",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1467",
            "sub_category_id": null,
            "wording": "Multimètres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1444",
            "sub_category_id": "018d1386-6030-797f-b89d-032b7c444b82",
            "wording": "Médailles artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0714",
            "sub_category_id": "018d1386-602f-701c-a44d-bb225fc0fb27",
            "wording": "Mémoires ECC pour serveurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1411",
            "sub_category_id": "018d1386-6030-76d2-a906-7f43a795bb16",
            "wording": "NFTs (jetons non fongibles)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0112",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Nettoyants moussants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0162",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Nettoyants pour pinceaux et éponges",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0229",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Nettoyeur haute pression",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0228",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Nettoyeur vapeur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1580",
            "sub_category_id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "wording": "Nettoyeurs de grains",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1760",
            "sub_category_id": null,
            "wording": "Nettoyeurs haute pression",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1663",
            "sub_category_id": "018d1386-6030-77f7-b14e-f4ceb9550d60",
            "wording": "Nettoyeurs haute pression",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1639",
            "sub_category_id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "wording": "Niveaux laser",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1638",
            "sub_category_id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "wording": "Niveaux à bulle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "01914b2e-b0a5-7753-b2b1-a11396160e16",
            "sub_category_id": "018d1386-602f-701c-a44d-bb225fc0fb27",
            "wording": "Note 10 Plus Sam",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0964",
            "sub_category_id": null,
            "wording": "Nuisettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0977",
            "sub_category_id": null,
            "wording": "Nuisettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0859",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Nœuds papillon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1460",
            "sub_category_id": "018d1386-6030-795c-8b76-4122d4411a70",
            "wording": "Objets d'art abstrait en édition limitée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1415",
            "sub_category_id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "wording": "Objets d'art en édition limitée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1463",
            "sub_category_id": "018d1386-6030-74ab-a23c-cef1937886b4",
            "wording": "Objets d'art sacré",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1357",
            "sub_category_id": null,
            "wording": "Objets de collection d'artistes de spectacle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1362",
            "sub_category_id": "018d1386-6030-7468-be99-12c8a99a8e9f",
            "wording": "Objets de collection saisonniers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1330",
            "sub_category_id": "018d1386-6030-7920-8f89-f873a9f8f545",
            "wording": "Objets de collection technologiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1438",
            "sub_category_id": "018d1386-6030-7902-baee-3bc996878091",
            "wording": "Objets décoratifs en métal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1435",
            "sub_category_id": "018d1386-6030-7149-afdb-4cdc4c676914",
            "wording": "Objets en cristal artistique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1432",
            "sub_category_id": "018d1386-6030-7149-afdb-4cdc4c676914",
            "wording": "Objets en verre soufflé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1420",
            "sub_category_id": "018d1386-6030-7ae3-9758-62c19c745cdc",
            "wording": "Objets en verre soufflé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1335",
            "sub_category_id": "018d1386-6030-7cd8-bd59-385cea4cf533",
            "wording": "Objets historiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1353",
            "sub_category_id": "018d1386-6030-71f9-8bee-544e043716c4",
            "wording": "Objets liés à la nature",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1346",
            "sub_category_id": "018d1386-6030-77d8-b5fe-d8e991cf5fcd",
            "wording": "Objets rituels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1416",
            "sub_category_id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "wording": "Objets signés par des artistes renommés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0769",
            "sub_category_id": "018d1386-602f-7dd4-80b1-42359556b702",
            "wording": "Onduleurs avec batterie externe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0768",
            "sub_category_id": "018d1386-602f-7dd4-80b1-42359556b702",
            "wording": "Onduleurs pour la protection contre les coupures de courant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0770",
            "sub_category_id": "018d1386-602f-7dd4-80b1-42359556b702",
            "wording": "Onduleurs pour serveurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "0190d9ef-fc32-70e9-8a01-e29c87fb9b3a",
            "sub_category_id": null,
            "wording": "Oppo A53",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0634",
            "sub_category_id": "018d1386-602f-736d-b78b-8279e9ba4ebd",
            "wording": "Ordinateurs de bureau professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0631",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Ordinateurs portables convertibles (2-en-1)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0628",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Ordinateurs portables gaming",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0629",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Ordinateurs portables professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Ordinateurs portables ultrabooks",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0464",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Organiseur de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0527",
            "sub_category_id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "wording": "Organiseur de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0787",
            "sub_category_id": "018d1386-602f-7340-9359-c5df31035915",
            "wording": "Organiseurs de câbles et goulottes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1468",
            "sub_category_id": null,
            "wording": "Oscilloscopes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0399",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Ours en peluche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1375",
            "sub_category_id": "018d1386-6030-7297-a0a8-e753867c3d91",
            "wording": "Outils d'artisanat",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1723",
            "sub_category_id": null,
            "wording": "Outils de forage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1606",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Outils de préparation de sol",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1522",
            "sub_category_id": null,
            "wording": "Outils électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "0191da97-7c62-72cb-9c33-0394cb30e90f",
            "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "wording": "PC",
            "is_published": null,
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0632",
            "sub_category_id": "018d1386-602f-736d-b78b-8279e9ba4ebd",
            "wording": "PC de bureau puissants pour le jeu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0633",
            "sub_category_id": "018d1386-602f-736d-b78b-8279e9ba4ebd",
            "wording": "PC tout-en-un élégants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0690",
            "sub_category_id": null,
            "wording": "Pads de batterie électronique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1633",
            "sub_category_id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "wording": "Palans",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1753",
            "sub_category_id": null,
            "wording": "Palans électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0105",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Palettes de fards à paupières",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0323",
            "sub_category_id": null,
            "wording": "Palmes de plongée de qualité professionnelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1758",
            "sub_category_id": null,
            "wording": "Palonniers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0349",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Pandemic",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0515",
            "sub_category_id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "wording": "Paniers de rangement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0471",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Paniers et boîtes de rangement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1644",
            "sub_category_id": "018d1386-6030-73fc-aaad-06c216c59102",
            "wording": "Panneaux de coffrage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1730",
            "sub_category_id": null,
            "wording": "Panneaux de commande",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1488",
            "sub_category_id": null,
            "wording": "Panneaux de distribution",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1067",
            "sub_category_id": null,
            "wording": "Pantalons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0831",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons cargoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0829",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons chinoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0931",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons chinoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0842",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "Pantalons de costume",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1132",
            "sub_category_id": null,
            "wording": "Pantalons de jogging",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0868",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Pantalons de jogging",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0906",
            "sub_category_id": null,
            "wording": "Pantalons de jogging sportswear",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0997",
            "sub_category_id": null,
            "wording": "Pantalons de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0879",
            "sub_category_id": "018d1386-602f-7035-a05d-18be5781a22a",
            "wording": "Pantalons de motoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0888",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Pantalons de performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1140",
            "sub_category_id": null,
            "wording": "Pantalons de pluie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0896",
            "sub_category_id": "018d1386-602f-73a8-bb15-2288201986dd",
            "wording": "Pantalons de pluie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0911",
            "sub_category_id": null,
            "wording": "Pantalons de pyjama",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0979",
            "sub_category_id": null,
            "wording": "Pantalons de pyjama",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0890",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Pantalons de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1019",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Pantalons de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0935",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons de survêtement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0832",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons de survêtement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1012",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Pantalons de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0873",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Pantalons de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0833",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons en velours côtelé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1120",
            "sub_category_id": null,
            "wording": "Pantalons et jupes de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0933",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons flare",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0930",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons habillés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0830",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons habillés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0932",
            "sub_category_id": "018d1386-602f-7a29-8918-ab1690eff96a",
            "wording": "Pantalons palazzoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1126",
            "sub_category_id": null,
            "wording": "Pantalons pour garçons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1211",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Pantoufles mocassin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1289",
            "sub_category_id": "018d1386-6030-7974-859f-85af26238e93",
            "wording": "Pantoufles à semelle rigide",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018fae2d-f8b7-7336-9e6a-3e05bafa09c7",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Paquet de chocolat",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0477",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Parasol",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0136",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Parfums en roll-on",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0193",
            "sub_category_id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "wording": "Parfums naturels et végétaliens",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0140",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Parfums personnalisés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0181",
            "sub_category_id": "018d1386-602f-7921-8147-ea2ddae61685",
            "wording": "Parfums pour hommes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0139",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Parfums pour la maison (bougies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0135",
            "sub_category_id": "018d1386-602e-7442-8b7e-9086d71295ad",
            "wording": "Parfums solides",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1301",
            "sub_category_id": "018d1386-6030-74e8-844c-ad22f9808160",
            "wording": "Partitions musicales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0054",
            "sub_category_id": "018d1386-602e-7933-9f81-b609c20f5d58",
            "wording": "Parures assorties (collier",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0085",
            "sub_category_id": "018d1386-602e-7b0a-a264-aac7397898cd",
            "wording": "Parures de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0396",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Patins à roulettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1099",
            "sub_category_id": null,
            "wording": "Peignoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0978",
            "sub_category_id": null,
            "wording": "Peignoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0851",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Peignoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0428",
            "sub_category_id": "018d1386-602f-7ffe-b109-7eb6d8f979eb",
            "wording": "Peinture et fournitures artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1292",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Peintures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1386",
            "sub_category_id": "018d1386-6030-7ee6-b847-b79df700aab9",
            "wording": "Peintures sur toile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1383",
            "sub_category_id": "018d1386-6030-7ee6-b847-b79df700aab9",
            "wording": "Peintures à l'huile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1683",
            "sub_category_id": "018d1386-6030-7ebc-adb1-70944ffe354e",
            "wording": "Pelles hydrauliques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0398",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Peluches de personnages de dessins animés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0016",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Pendentifs avec pierres précieuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0015",
            "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Pendentifs en forme de cœur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1449",
            "sub_category_id": "018d1386-6030-7122-9936-fb035102d91a",
            "wording": "Pendules artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "01917e7a-ecf4-760a-b6b5-3ae00c237237",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Pentalon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1720",
            "sub_category_id": null,
            "wording": "Perceuses de roche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1615",
            "sub_category_id": "018d1386-6030-754c-a462-93871078f849",
            "wording": "Perceuses à percussion",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0430",
            "sub_category_id": "018d1386-602f-7ffe-b109-7eb6d8f979eb",
            "wording": "Perles à repasser",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1294",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Photographies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1461",
            "sub_category_id": "018d1386-6030-795c-8b76-4122d4411a70",
            "wording": "Photographies abstraites",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1401",
            "sub_category_id": "018d1386-6030-722e-b7e1-415b4502bb5c",
            "wording": "Photographies argentiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1399",
            "sub_category_id": "018d1386-6030-722e-b7e1-415b4502bb5c",
            "wording": "Photographies encadrées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1338",
            "sub_category_id": "018d1386-6030-7cd8-bd59-385cea4cf533",
            "wording": "Photographies historiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0597",
            "sub_category_id": "018d1386-602f-79db-bbbd-7e8e9ad060f8",
            "wording": "Pieds de microo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "0192c4dd-6d52-78c6-a875-fac43114c0f9",
            "sub_category_id": "018d1386-602f-7aa5-94da-b7949c01c080",
            "wording": "Pieton",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0158",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Pinceaux de maquillage individuels et ensembles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0174",
            "sub_category_id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "wording": "Pinceaux et outils de maquillage professionnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1471",
            "sub_category_id": null,
            "wording": "Pinces ampèremétriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1597",
            "sub_category_id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "wording": "Pinces de greffage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1637",
            "sub_category_id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "wording": "Pinces de levage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0086",
            "sub_category_id": "018d1386-602e-72a9-b6d3-ee8fc58b56e8",
            "wording": "Pinces à cravate en or",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0506",
            "sub_category_id": "018d1386-602f-7119-a53d-0f936c9c5156",
            "wording": "Pièces de collection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0073",
            "sub_category_id": "018d1386-602e-7c72-b786-bbc728962a2f",
            "wording": "Pièces de collection de créateurs de bijoux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1442",
            "sub_category_id": "018d1386-6030-797f-b89d-032b7c444b82",
            "wording": "Pièces de monnaie artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0254",
            "sub_category_id": null,
            "wording": "Pièces de rechange d'origine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0096",
            "sub_category_id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
            "wording": "Pièces uniques et rares",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0079",
            "sub_category_id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
            "wording": "Pièces vintage des années 20",
            "is_published": "o etc.",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0319",
            "sub_category_id": null,
            "wording": "Planche de surf haute performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0320",
            "sub_category_id": null,
            "wording": "Planche à pagaie gonflable de touring",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0307",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Planche à voile de performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1538",
            "sub_category_id": null,
            "wording": "Planteuses d'arbres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1535",
            "sub_category_id": null,
            "wording": "Planteuses de pommes de terre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0207",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Plaque de cuisson encastrable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0277",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Plateau de musculation olympique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0285",
            "sub_category_id": "018d1386-602f-75f6-9d72-4ec3dfee8f6c",
            "wording": "Plateforme de saut",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1627",
            "sub_category_id": null,
            "wording": "Plates-formes de travail télescopiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0590",
            "sub_category_id": null,
            "wording": "Platines vinyles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0329",
            "sub_category_id": "018d1386-602f-7c1d-b22f-9598f1f605de",
            "wording": "Podomètre intelligent avec écran couleur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0694",
            "sub_category_id": null,
            "wording": "Points d'accès Wi-Fi mesh",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1732",
            "sub_category_id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "wording": "Pompes centrifuges",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1736",
            "sub_category_id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "wording": "Pompes submersibles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1733",
            "sub_category_id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "wording": "Pompes à engrenages",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1735",
            "sub_category_id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "wording": "Pompes à membrane",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1734",
            "sub_category_id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "wording": "Pompes à piston",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1737",
            "sub_category_id": "018d1386-6030-7a4d-a4b8-3c8929ad9f27",
            "wording": "Pompes à vide",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1665",
            "sub_category_id": "018d1386-6030-77f7-b14e-f4ceb9550d60",
            "wording": "Ponceuses à béton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0897",
            "sub_category_id": "018d1386-602f-73a8-bb15-2288201986dd",
            "wording": "Ponchos imperméables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1756",
            "sub_category_id": null,
            "wording": "Ponts roulants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1397",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "Porcelaines artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1413",
            "sub_category_id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "wording": "Porcelaines de collection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0513",
            "sub_category_id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "wording": "Porte-serviettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0983",
            "sub_category_id": null,
            "wording": "Portefeuilles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1675",
            "sub_category_id": null,
            "wording": "Postes à souder",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0297",
            "sub_category_id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "wording": "Poteaux de badminton en aluminium",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1757",
            "sub_category_id": null,
            "wording": "Potences de levage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1393",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "Poteries décoratives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0102",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Poudres de soleil et bronzantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0101",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Poudres libres et compactes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0149",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Poudres pour le corps",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0274",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Poulie haute/basse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0400",
            "sub_category_id": "018d1386-602f-7c57-9e97-32f71b4dd1eb",
            "wording": "Poupées en peluche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0269",
            "sub_category_id": "018d1386-602f-728d-800a-8d619f02fbbd",
            "wording": "Presse à épaules",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1712",
            "sub_category_id": null,
            "wording": "Presses hydrauliques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1547",
            "sub_category_id": "018d1386-6030-7388-b212-f00c6a6b52d4",
            "wording": "Presses à balles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1741",
            "sub_category_id": null,
            "wording": "Presses à balles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0704",
            "sub_category_id": "018d1386-602f-71ff-b4fc-4fb331e1e08b",
            "wording": "Processeurs AMD Ryzen",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0703",
            "sub_category_id": "018d1386-602f-71ff-b4fc-4fb331e1e08b",
            "wording": "Processeurs Intel Core i7",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0705",
            "sub_category_id": "018d1386-602f-71ff-b4fc-4fb331e1e08b",
            "wording": "Processeurs serveur Xeon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1317",
            "sub_category_id": "018d1386-6030-786c-9186-0727b06c077e",
            "wording": "Produits alimentaires exotiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0168",
            "sub_category_id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "wording": "Produits après-soleil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0192",
            "sub_category_id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "wording": "Produits capillaires biologiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0127",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Produits coiffants (gel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1658",
            "sub_category_id": null,
            "wording": "Produits d'étanchéité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0150",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Produits de bain et de douche (sels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0155",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Produits de manucure",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0173",
            "sub_category_id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "wording": "Produits de maquillage spéciaux (effets spéciaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0170",
            "sub_category_id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "wording": "Produits de protection solaire pour les cheveux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0129",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Produits de protection thermique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0178",
            "sub_category_id": "018d1386-602f-7921-8147-ea2ddae61685",
            "wording": "Produits de rasage (crèmes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1381",
            "sub_category_id": null,
            "wording": "Produits faits à partir de matériaux recyclés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1661",
            "sub_category_id": null,
            "wording": "Produits hydrofuges",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0132",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Produits pour la croissance des cheveux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1382",
            "sub_category_id": null,
            "wording": "Produits zéro déchet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1514",
            "sub_category_id": null,
            "wording": "Projecteurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0529",
            "sub_category_id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "wording": "Projets de meubles DIY (Do It Yourself)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1505",
            "sub_category_id": null,
            "wording": "Protecteurs de surintensité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0290",
            "sub_category_id": null,
            "wording": "Protège-dents haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0351",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Puissance 4",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0812",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Pulls en cachemire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0954",
            "sub_category_id": null,
            "wording": "Pulls en cachemire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0955",
            "sub_category_id": null,
            "wording": "Pulls en laine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0813",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Pulls en laine mérinos",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1077",
            "sub_category_id": null,
            "wording": "Pulls et cardigans",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1127",
            "sub_category_id": null,
            "wording": "Pulls et gilets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1070",
            "sub_category_id": null,
            "wording": "Pulls et gilets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0816",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Pulls à capuche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0815",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Pulls à col en V",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0958",
            "sub_category_id": null,
            "wording": "Pulls à col en V",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0814",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Pulls à col rond",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0956",
            "sub_category_id": null,
            "wording": "Pulls à col roulé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0959",
            "sub_category_id": null,
            "wording": "Pulls à motifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0818",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Pulls à motifs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1708",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "Pulvérisateurs agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1550",
            "sub_category_id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "wording": "Pulvérisateurs automoteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1549",
            "sub_category_id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "wording": "Pulvérisateurs portés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1548",
            "sub_category_id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "wording": "Pulvérisateurs traînés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1551",
            "sub_category_id": "018d1386-6030-7441-9508-975f28ff8bdc",
            "wording": "Pulvérisateurs à jet porté",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0242",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Purificateur d'air",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1365",
            "sub_category_id": "018d1386-6030-7dac-9455-a59f9c2d701f",
            "wording": "Puzzles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0419",
            "sub_category_id": "018d1386-602f-731d-9513-4eca31a30de6",
            "wording": "Puzzles 3D",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0418",
            "sub_category_id": "018d1386-602f-731d-9513-4eca31a30de6",
            "wording": "Puzzles en bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0373",
            "sub_category_id": "018d1386-602f-72c0-bd3a-bbd5aae4a7ce",
            "wording": "Puzzles en bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0417",
            "sub_category_id": "018d1386-602f-731d-9513-4eca31a30de6",
            "wording": "Puzzles en carton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1057",
            "sub_category_id": null,
            "wording": "Pyjamas",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0975",
            "sub_category_id": null,
            "wording": "Pyjamas",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0850",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Pyjamas",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1097",
            "sub_category_id": null,
            "wording": "Pyjamas assortis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1101",
            "sub_category_id": null,
            "wording": "Pyjamas en coton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1100",
            "sub_category_id": null,
            "wording": "Pyjamas en flanelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0965",
            "sub_category_id": null,
            "wording": "Pyjamas féminins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0429",
            "sub_category_id": "018d1386-602f-7ffe-b109-7eb6d8f979eb",
            "wording": "Pâte à modeler et argile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0731",
            "sub_category_id": "018d1386-602f-7d0a-82aa-f6eaab61fb32",
            "wording": "Pâtes thermiques de qualité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0252",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Pèse-personne intelligent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1425",
            "sub_category_id": "018d1386-6030-7e98-9caa-562cceec10ea",
            "wording": "Quilts artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0262",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Rameur magnétique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0261",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Rameur à eau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0296",
            "sub_category_id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "wording": "Raquette de beach tennis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0293",
            "sub_category_id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "wording": "Raquettes de badminton professionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0294",
            "sub_category_id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "wording": "Raquettes de squash haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0292",
            "sub_category_id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "wording": "Raquettes de tennis de marques renommées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0433",
            "sub_category_id": "018d1386-602f-7368-9ce8-9e99ea53f00c",
            "wording": "Raquettes de tennis pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1502",
            "sub_category_id": null,
            "wording": "Relais de protection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1560",
            "sub_category_id": null,
            "wording": "Remorques agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1709",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "Remorques agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1563",
            "sub_category_id": null,
            "wording": "Remorques agricoles routières",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1562",
            "sub_category_id": null,
            "wording": "Remorques porte-engins",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1564",
            "sub_category_id": null,
            "wording": "Remorques à benne basculante",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0531",
            "sub_category_id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "wording": "Restauration de meubles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1153",
            "sub_category_id": null,
            "wording": "Richelieus",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0496",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Rideaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1625",
            "sub_category_id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "wording": "Rifloirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0343",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Risk",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1065",
            "sub_category_id": null,
            "wording": "Robes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0918",
            "sub_category_id": null,
            "wording": "Robes cocktail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0917",
            "sub_category_id": null,
            "wording": "Robes d'été",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0919",
            "sub_category_id": null,
            "wording": "Robes de bal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1010",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Robes de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0999",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Robes de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1090",
            "sub_category_id": null,
            "wording": "Robes de cérémonie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1051",
            "sub_category_id": null,
            "wording": "Robes de demoiselle d'honneur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1049",
            "sub_category_id": null,
            "wording": "Robes de mariée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0995",
            "sub_category_id": null,
            "wording": "Robes de maternité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1118",
            "sub_category_id": null,
            "wording": "Robes de maternité pour filles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0915",
            "sub_category_id": null,
            "wording": "Robes décontractées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0920",
            "sub_category_id": null,
            "wording": "Robes fourreau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0916",
            "sub_category_id": null,
            "wording": "Robes maxi",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1715",
            "sub_category_id": null,
            "wording": "Robots industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0559",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Roku",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0306",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Roller agressif",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "01919979-b86d-75f2-87ef-f3af9f293d33",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Romain ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0312",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Roue abdominale avec système de freinage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0108",
            "sub_category_id": "018d1386-602e-711d-98fc-c644a5aee283",
            "wording": "Rouges à lèvres mats",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0693",
            "sub_category_id": null,
            "wording": "Routeurs Wi-Fi 6 haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0764",
            "sub_category_id": "018d1386-602f-7815-bda1-6f330007106b",
            "wording": "Routeurs gaming avec QoS",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1660",
            "sub_category_id": null,
            "wording": "Rubans d'étanchéité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1586",
            "sub_category_id": null,
            "wording": "Râteliers à foin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0200",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Réfrigérateur encastrable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0196",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Réfrigérateur à deux portes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0197",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Réfrigérateur à porte française",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0201",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Réfrigérateur à vin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0198",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Réfrigérateur-congélateur en bas",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0199",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Réfrigérateur-congélateur en haut",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1337",
            "sub_category_id": "018d1386-6030-7cd8-bd59-385cea4cf533",
            "wording": "Répliques d'artefacts historiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1451",
            "sub_category_id": "018d1386-6030-7122-9936-fb035102d91a",
            "wording": "Réveils artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0716",
            "sub_category_id": "018d1386-602f-747a-8dce-6e088a738006",
            "wording": "SSD NVMe haute performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0310",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Sac de couchage thermique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0286",
            "sub_category_id": null,
            "wording": "Sac de frappe sur pied",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0287",
            "sub_category_id": null,
            "wording": "Sac de frappe suspendu",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0982",
            "sub_category_id": null,
            "wording": "Sacs bandoulière",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0337",
            "sub_category_id": null,
            "wording": "Sacs de golf avec support et nombreux compartiments",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0616",
            "sub_category_id": "018d1386-602f-7b62-92d4-8f378605a163",
            "wording": "Sacs de transport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0574",
            "sub_category_id": "018d1386-602f-7365-991b-15dcd309e057",
            "wording": "Sacs et étuis de transport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0981",
            "sub_category_id": null,
            "wording": "Sacs à dos",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1115",
            "sub_category_id": null,
            "wording": "Sacs à dos pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0980",
            "sub_category_id": null,
            "wording": "Sacs à main",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Sample Article",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01912cd8-0501-7fd1-9611-89040e853859",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Sample Article",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919351-be87-72ba-9785-88354e24081d",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Sample Article",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0990",
            "sub_category_id": null,
            "wording": "Sandales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1247",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales compensées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1249",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales de marche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1188",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales de marche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1270",
            "sub_category_id": "018d1386-6030-7fc0-b2c8-e98ca5fe52f3",
            "wording": "Sandales de mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1187",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales de plage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1191",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1278",
            "sub_category_id": "018d1386-6030-7eb0-bb6b-3b9bc1901710",
            "wording": "Sandales ergonomiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1245",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales plates",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1190",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales sportives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1246",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Sandales à talons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1531",
            "sub_category_id": null,
            "wording": "Sarcleuses rotatives",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0142",
            "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
            "wording": "Savons artisanaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0680",
            "sub_category_id": "018d1386-602f-75ba-91f5-2f734bec9aa0",
            "wording": "Scanners de documents rapides",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1612",
            "sub_category_id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "wording": "Scies circulaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1598",
            "sub_category_id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "wording": "Scies de taille",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1716",
            "sub_category_id": null,
            "wording": "Scies industrielles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1613",
            "sub_category_id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "wording": "Scies radiales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1614",
            "sub_category_id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "wording": "Scies à béton",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1611",
            "sub_category_id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "wording": "Scies à carrelage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1609",
            "sub_category_id": "018d1386-6030-7e8a-99e0-91fd94abe0e9",
            "wording": "Scies à matériaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0342",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Scrabble",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1293",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Sculptures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1458",
            "sub_category_id": "018d1386-6030-795c-8b76-4122d4411a70",
            "wording": "Sculptures abstraites",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1392",
            "sub_category_id": "018d1386-6030-7281-a148-241a862edfdd",
            "wording": "Sculptures contemporaines",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1452",
            "sub_category_id": "018d1386-6030-78f3-b616-a7cbf3a5556c",
            "wording": "Sculptures de papier",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1390",
            "sub_category_id": "018d1386-6030-7281-a148-241a862edfdd",
            "wording": "Sculptures en bois",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1388",
            "sub_category_id": "018d1386-6030-7281-a148-241a862edfdd",
            "wording": "Sculptures en bronze",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1389",
            "sub_category_id": "018d1386-6030-7281-a148-241a862edfdd",
            "wording": "Sculptures en marbre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1391",
            "sub_category_id": "018d1386-6030-7281-a148-241a862edfdd",
            "wording": "Sculptures en métal",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1434",
            "sub_category_id": "018d1386-6030-7149-afdb-4cdc4c676914",
            "wording": "Sculptures en verre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1437",
            "sub_category_id": "018d1386-6030-7902-baee-3bc996878091",
            "wording": "Sculptures métalliques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1536",
            "sub_category_id": null,
            "wording": "Semeuses de précision",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1537",
            "sub_category_id": null,
            "wording": "Semeuses à céréales",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1707",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "Semoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1534",
            "sub_category_id": null,
            "wording": "Semoirs pneumatiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1540",
            "sub_category_id": null,
            "wording": "Semoirs à maïs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0790",
            "sub_category_id": "018d1386-602f-7340-9359-c5df31035915",
            "wording": "Serre-câbles et attaches velcroo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0671",
            "sub_category_id": "018d1386-602f-7c2d-ba41-e2403e2bbabd",
            "wording": "Serveurs de stockage personnels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0782",
            "sub_category_id": null,
            "wording": "Serveurs rackables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018fc93c-8964-7f16-8f6d-084ebc2b2932",
            "sub_category_id": null,
            "wording": "Service",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0180",
            "sub_category_id": "018d1386-602f-7921-8147-ea2ddae61685",
            "wording": "Shampooings et soins capillaires pour hommes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0123",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Shampooings hydratants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0130",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Shampooings secs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1079",
            "sub_category_id": null,
            "wording": "Shorts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0835",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Shorts cargoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0836",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Shorts chinoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1106",
            "sub_category_id": null,
            "wording": "Shorts de bain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0838",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Shorts de bain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0857",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Shorts de plage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0839",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Shorts de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1088",
            "sub_category_id": null,
            "wording": "Shorts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1007",
            "sub_category_id": null,
            "wording": "Shorts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0837",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Shorts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0910",
            "sub_category_id": null,
            "wording": "Shorts décontractés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0834",
            "sub_category_id": "018d1386-602f-78ba-82a9-b30050074999",
            "wording": "Shorts en jean",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1577",
            "sub_category_id": null,
            "wording": "Silos à ensilage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1572",
            "sub_category_id": null,
            "wording": "Silos à grains",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0304",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Skateboard professionnel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0325",
            "sub_category_id": null,
            "wording": "Skis nautiques de slalom",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0848",
            "sub_category_id": "018d1386-602f-78b8-98a2-c0371e453cf4",
            "wording": "Slips",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "0191c169-697d-7e39-b8d9-9f986beee81d",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Smartphone Samsung Galaxy",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0844",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "Smoking",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1233",
            "sub_category_id": "018d1386-6030-7cd1-9b12-5b4071008b05",
            "wording": "Sneakers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1164",
            "sub_category_id": null,
            "wording": "Sneakers décontractées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0191",
            "sub_category_id": "018d1386-602f-73b9-8aac-4d8c88328b71",
            "wording": "Soins de la peau naturels et biologiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0153",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Soins des ongles (huiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0177",
            "sub_category_id": "018d1386-602f-7921-8147-ea2ddae61685",
            "wording": "Soins du visage pour hommes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0118",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Soins spécifiques (acné",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1521",
            "sub_category_id": null,
            "wording": "Solutions d'efficacité énergétique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1676",
            "sub_category_id": null,
            "wording": "Soudeurs à l'arc",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0231",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Souffleur de feuilles électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "01918fde-7504-7287-8882-1e91c389f13a",
            "sub_category_id": "018d1386-602f-7a0c-a094-c20562bb7ad3",
            "wording": "Souris HAVIT",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0738",
            "sub_category_id": "018d1386-602f-7a0c-a094-c20562bb7ad3",
            "wording": "Souris gaming avec capteurs de haute précision",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0960",
            "sub_category_id": null,
            "wording": "Soutiens-gorge",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1356",
            "sub_category_id": null,
            "wording": "Souvenirs d'événements spéciaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0169",
            "sub_category_id": "018d1386-602e-7cea-bf5a-bf5ca7d21542",
            "wording": "Sprays solaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0571",
            "sub_category_id": "018d1386-602f-7365-991b-15dcd309e057",
            "wording": "Stabilisateurs pour caméras",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0785",
            "sub_category_id": null,
            "wording": "Stations de travail professionnelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1595",
            "sub_category_id": null,
            "wording": "Stations météorologiques agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1396",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "Statuettes en argile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1466",
            "sub_category_id": "018d1386-6030-74ab-a23c-cef1937886b4",
            "wording": "Statuettes religieuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0315",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Step aérobic ajustable en hauteur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0265",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Stepper avec résistance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0266",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Stepper compact",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0650",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "Stick de streaming pour téléviseurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1576",
            "sub_category_id": null,
            "wording": "Stockeurs à grains mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0791",
            "sub_category_id": null,
            "wording": "Stylos numériques et tablettes graphiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0421",
            "sub_category_id": "018d1386-602f-731d-9513-4eca31a30de6",
            "wording": "Sudoku et jeux de nombres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0548",
            "sub_category_id": "018d1386-602f-7268-bec4-7b7eb70d7b19",
            "wording": "Supports d'enceintes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0772",
            "sub_category_id": "018d1386-602f-7dbc-9a74-488ed39b1e8e",
            "wording": "Supports d'ordinateur portable ajustables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0674",
            "sub_category_id": "018d1386-602f-70c2-8dc8-8072ee0ea031",
            "wording": "Supports muraux et supports de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0546",
            "sub_category_id": "018d1386-602f-7268-bec4-7b7eb70d7b19",
            "wording": "Supports muraux pour téléviseurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0549",
            "sub_category_id": "018d1386-602f-7268-bec4-7b7eb70d7b19",
            "wording": "Supports pour barres de son",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0617",
            "sub_category_id": "018d1386-602f-7b62-92d4-8f378605a163",
            "wording": "Supports pour équipement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0870",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Survêtements",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1083",
            "sub_category_id": null,
            "wording": "Survêtements",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0973",
            "sub_category_id": "018d1386-602f-7657-a7b5-aa02d80c9815",
            "wording": "Survêtements",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0908",
            "sub_category_id": null,
            "wording": "Survêtements décontractés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0817",
            "sub_category_id": "018d1386-602f-7a2d-ba0b-dcbf767600bb",
            "wording": "Sweats à fermeture éclair",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0688",
            "sub_category_id": null,
            "wording": "Synthétiseurs modulaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0755",
            "sub_category_id": "018d1386-602f-73bc-b21a-7c67005abdf1",
            "wording": "Systèmes audio 2.1 et 5.1",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0646",
            "sub_category_id": "018d1386-602f-7933-9cc4-961bb98fdffc",
            "wording": "Systèmes audio intelligents pour la maison",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1556",
            "sub_category_id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "wording": "Systèmes d'injection d'engrais",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0537",
            "sub_category_id": "018d1386-602f-7c4b-862f-098d29623d6c",
            "wording": "Systèmes de cinéma maison",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1507",
            "sub_category_id": "018d1386-6030-7f07-9666-1176fcda2178",
            "wording": "Systèmes de contrôle industriel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1558",
            "sub_category_id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "wording": "Systèmes de fertilisation foliaire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1518",
            "sub_category_id": null,
            "wording": "Systèmes de gestion de l'énergie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1588",
            "sub_category_id": null,
            "wording": "Systèmes de pâturage tournant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0729",
            "sub_category_id": "018d1386-602f-7d0a-82aa-f6eaab61fb32",
            "wording": "Systèmes de refroidissement liquide AIoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0541",
            "sub_category_id": "018d1386-602f-7c4b-862f-098d29623d6c",
            "wording": "Systèmes de son surround",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1511",
            "sub_category_id": "018d1386-6030-7f07-9666-1176fcda2178",
            "wording": "Systèmes de supervision",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1517",
            "sub_category_id": null,
            "wording": "Systèmes de surveillance de l'énergie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1594",
            "sub_category_id": null,
            "wording": "Systèmes de surveillance des cultures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0667",
            "sub_category_id": null,
            "wording": "Systèmes de sécurité intelligents",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0248",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Sèche-cheveux professionnel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0220",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Sèche-linge à condensation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0218",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Sèche-linge à gaz",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0221",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Sèche-linge à évacuation",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0219",
            "sub_category_id": "018d1386-602f-7a4e-810a-6bcc35382487",
            "wording": "Sèche-linge électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1579",
            "sub_category_id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "wording": "Séparateurs de grain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1406",
            "sub_category_id": "018d1386-6030-7751-a1bd-890780641910",
            "wording": "Sérigraphies",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0114",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Sérums anti-âge",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0126",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Sérums et huiles capillaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1066",
            "sub_category_id": null,
            "wording": "T-shirts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0923",
            "sub_category_id": null,
            "wording": "T-shirts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0808",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts col V",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0809",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts col rond",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0887",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "T-shirts de performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1086",
            "sub_category_id": null,
            "wording": "T-shirts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0866",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "T-shirts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0905",
            "sub_category_id": null,
            "wording": "T-shirts de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0909",
            "sub_category_id": null,
            "wording": "T-shirts décontractés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1131",
            "sub_category_id": null,
            "wording": "T-shirts décontractés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0806",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts graphiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1074",
            "sub_category_id": null,
            "wording": "T-shirts imprimés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0805",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts unis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1076",
            "sub_category_id": null,
            "wording": "T-shirts à manches longues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0927",
            "sub_category_id": null,
            "wording": "T-shirts à manches longues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0807",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts à manches longues",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0811",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts à messages",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0810",
            "sub_category_id": "018d1386-602f-7e68-9f9d-e613ff6748dc",
            "wording": "T-shirts à poche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0442",
            "sub_category_id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "wording": "Table basse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0457",
            "sub_category_id": "018d1386-602f-749a-8f95-4eb510bf8a2f",
            "wording": "Table de chevet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0295",
            "sub_category_id": "018d1386-602f-71ef-bf39-370a8f89d9aa",
            "wording": "Table de ping-pong avec filet de compétition",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0500",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "Table extensible",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0446",
            "sub_category_id": "018d1386-602f-7b07-8147-39f146d69c95",
            "wording": "Table à manger",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1487",
            "sub_category_id": null,
            "wording": "Tableaux électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1430",
            "sub_category_id": "018d1386-6030-79b6-be1b-fd14c8c2efc7",
            "wording": "Tables artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0516",
            "sub_category_id": "018d1386-602f-762f-8cca-6e944ad74650",
            "wording": "Tables de cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0474",
            "sub_category_id": "018d1386-602f-770f-8409-aec3e28dd8c6",
            "wording": "Tables de jardin",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0589",
            "sub_category_id": null,
            "wording": "Tables de mixage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0481",
            "sub_category_id": "018d1386-602f-726b-811a-14d76da5c531",
            "wording": "Tables et chaises pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0503",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "Tables gigognes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0488",
            "sub_category_id": "018d1386-602f-7c3f-bb04-56b5bd16eb3a",
            "wording": "Tables pliantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0624",
            "sub_category_id": "018d1386-602f-7de0-8b6e-42676a2f4ce0",
            "wording": "Tablettes Android abordables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0625",
            "sub_category_id": "018d1386-602f-7de0-8b6e-42676a2f4ce0",
            "wording": "Tablettes Windows (Microsoft Surface",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0626",
            "sub_category_id": "018d1386-602f-7de0-8b6e-42676a2f4ce0",
            "wording": "Tablettes graphiques pour artistes (ex. Wacom)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0623",
            "sub_category_id": "018d1386-602f-7de0-8b6e-42676a2f4ce0",
            "wording": "Tablettes haut de gamme (iPad Proo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0451",
            "sub_category_id": "018d1386-602f-7b07-8147-39f146d69c95",
            "wording": "Tabourets de bar",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0521",
            "sub_category_id": "018d1386-602f-762f-8cca-6e944ad74650",
            "wording": "Tabourets de bar pour cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0163",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Taille-crayon cosmétiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1621",
            "sub_category_id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "wording": "Taloches",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0993",
            "sub_category_id": null,
            "wording": "Talons hauts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0425",
            "sub_category_id": "018d1386-602f-7ed8-8de3-3a4758bc83ec",
            "wording": "Tambours et percussions",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0968",
            "sub_category_id": "018d1386-602f-7d64-b479-c3216fb252fb",
            "wording": "Tankinis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0494",
            "sub_category_id": "018d1386-602f-7531-98c9-50e072e0dfcb",
            "wording": "Tapis",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1422",
            "sub_category_id": "018d1386-6030-7e98-9caa-562cceec10ea",
            "wording": "Tapis artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0388",
            "sub_category_id": null,
            "wording": "Tapis d'éveil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0465",
            "sub_category_id": "018d1386-602f-73b1-855b-a7be41d8443d",
            "wording": "Tapis de bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0264",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Tapis de course motorisé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0263",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Tapis de course pliable",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0774",
            "sub_category_id": "018d1386-602f-7dbc-9a74-488ed39b1e8e",
            "wording": "Tapis de souris ergonomiques avec repose-poignet",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0311",
            "sub_category_id": "018d1386-602f-7e00-991d-65ff80aa6736",
            "wording": "Tapis de yoga en liège",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1418",
            "sub_category_id": "018d1386-6030-7ae3-9758-62c19c745cdc",
            "wording": "Tapisseries artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0309",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Tente de camping 4 saisons",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1145",
            "sub_category_id": null,
            "wording": "Tenues de Noël",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1032",
            "sub_category_id": null,
            "wording": "Tenues de cosplay",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1044",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Tenues de danse contemporaine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1023",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Tenues de danse contemporaine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0332",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Tenues de fitness respirantes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0331",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Tenues de running techniques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1325",
            "sub_category_id": "018d1386-6030-71b2-a11e-5d5958eeb0f2",
            "wording": "Tenues de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "0192523c-e869-7b38-927b-0a1c90e6ebd1",
            "sub_category_id": "0192523a-9173-7512-acc4-e46f186b7dc8",
            "wording": "Tesla Cybertruck",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019257c7-93af-78e9-bd7b-88066dbd8fda",
            "sub_category_id": null,
            "wording": "Tesla modèle 3",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01925235-8ef8-7060-b846-b993ea9db3e6",
            "sub_category_id": null,
            "wording": "Tesla modèle 3",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0192527b-d6bd-72f7-a50c-b54208c4dfd8",
            "sub_category_id": null,
            "wording": "Tesla modèle Y",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01917959-bde2-719f-9556-a6202d65e677",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Test",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1469",
            "sub_category_id": null,
            "wording": "Testeurs de continuité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1472",
            "sub_category_id": null,
            "wording": "Testeurs de câbles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1474",
            "sub_category_id": null,
            "wording": "Testeurs de résistance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1475",
            "sub_category_id": null,
            "wording": "Testeurs de terre",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1473",
            "sub_category_id": null,
            "wording": "Testeurs de transformateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1344",
            "sub_category_id": "018d1386-6030-77d8-b5fe-d8e991cf5fcd",
            "wording": "Textes sacrés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0666",
            "sub_category_id": null,
            "wording": "Thermostats intelligents",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1640",
            "sub_category_id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "wording": "Théodolites",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0346",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Ticket to Ride",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1446",
            "sub_category_id": "018d1386-6030-797f-b89d-032b7c444b82",
            "wording": "Timbres artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0358",
            "sub_category_id": "018d1386-602f-7168-80b7-3ad8615a6c2e",
            "wording": "Tinker Toys",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1398",
            "sub_category_id": "018d1386-6030-722e-b7e1-415b4502bb5c",
            "wording": "Tirages photographiques d'artistes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1424",
            "sub_category_id": "018d1386-6030-7e98-9caa-562cceec10ea",
            "wording": "Tissus artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018fc94f-64bd-7ea3-8225-687974a75d83",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Tomate ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0250",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Tondeuse à cheveux professionnelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0230",
            "sub_category_id": "018d1386-602f-758a-b9fe-99d477572f95",
            "wording": "Tondeuse à gazon électrique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1189",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Tongs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1248",
            "sub_category_id": "018d1386-6030-76c0-807f-90d06d953a8c",
            "wording": "Tongs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0113",
            "sub_category_id": "018d1386-602e-7776-ad83-b1e10c60265d",
            "wording": "Toniques hydratants et astringents",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1750",
            "sub_category_id": null,
            "wording": "Tours de refroidissement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1714",
            "sub_category_id": null,
            "wording": "Tours et fraiseuses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1704",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "Tracteurs agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0371",
            "sub_category_id": "018d1386-602f-72c0-bd3a-bbd5aae4a7ce",
            "wording": "Train en bois (Brioo",
            "is_published": null,
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0406",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Trains électriques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0131",
            "sub_category_id": "018d1386-602e-7ae1-99f1-2304387fd5f5",
            "wording": "Traitements antipelliculaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1501",
            "sub_category_id": null,
            "wording": "Transformateurs d'isolement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1499",
            "sub_category_id": null,
            "wording": "Transformateurs de courant",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1498",
            "sub_category_id": null,
            "wording": "Transformateurs de distribution",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1497",
            "sub_category_id": null,
            "wording": "Transformateurs de puissance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1500",
            "sub_category_id": null,
            "wording": "Transformateurs de tension",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1698",
            "sub_category_id": null,
            "wording": "Transpalettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1565",
            "sub_category_id": null,
            "wording": "Transporteurs de balles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1634",
            "sub_category_id": "018d1386-6030-7d54-a45a-199a142a30fb",
            "wording": "Treuils de levage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1754",
            "sub_category_id": null,
            "wording": "Treuils de levage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1582",
            "sub_category_id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "wording": "Trieurs à grains",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0305",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Trottinette freestyle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "01918eb3-db58-73a8-894f-d65dc8666872",
            "sub_category_id": "018d1386-6030-78e5-8315-96567aaac553",
            "wording": "Trottinette électrique",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0391",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Trottinettes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0161",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Trousse de maquillage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1620",
            "sub_category_id": "018d1386-6030-7508-97cc-f55f2317cbca",
            "wording": "Truelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0570",
            "sub_category_id": "018d1386-602f-7365-991b-15dcd309e057",
            "wording": "Trépieds",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0584",
            "sub_category_id": null,
            "wording": "Trépieds pour caméras",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1352",
            "sub_category_id": "018d1386-6030-71f9-8bee-544e043716c4",
            "wording": "Télescopes et jumelles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1567",
            "sub_category_id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "wording": "Télescopiques agricoles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1643",
            "sub_category_id": "018d1386-6030-7176-a1b8-8b131a2c6870",
            "wording": "Télémètres",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "0191097e-264a-78e4-9ad2-b37df88d445f",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Téléphones Android haut de gamme (Samsung Galaxy S)",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "wording": "Téléphones Android haut de gamme (Samsung Galaxy S, ...)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0621",
            "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "wording": "Téléphones gaming (ex. ASUS ROG Phone",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0622",
            "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
            "wording": "Téléphones pliables (ex. Samsung Galaxy Z Fold",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0535",
            "sub_category_id": "018d1386-602f-7362-9879-a7076031bcfb",
            "wording": "Téléviseurs 4K",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0533",
            "sub_category_id": "018d1386-602f-7362-9879-a7076031bcfb",
            "wording": "Téléviseurs LED",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0534",
            "sub_category_id": "018d1386-602f-7362-9879-a7076031bcfb",
            "wording": "Téléviseurs Smart TV",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0536",
            "sub_category_id": "018d1386-602f-7362-9879-a7076031bcfb",
            "wording": "Téléviseurs incurvés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018fc563-7c14-7f3b-8d54-a81a1552c80c",
            "sub_category_id": null,
            "wording": "Tétine",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fc581-385b-75b2-ae45-16528a46e3b2",
            "sub_category_id": null,
            "wording": "Tétine pour enfant",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1037",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Uniformes et tenues spécialisées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0350",
            "sub_category_id": "018d1386-602f-7db3-ba9d-7e6ed8b5d201",
            "wording": "Unoo",
            "is_published": null,
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1314",
            "sub_category_id": "018d1386-6030-786c-9186-0727b06c077e",
            "wording": "Ustensiles de cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0449",
            "sub_category_id": "018d1386-602f-7b07-8147-39f146d69c95",
            "wording": "Vaisselier",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1493",
            "sub_category_id": "018d1386-6030-79d2-804b-a537fbd5d2c3",
            "wording": "Variateurs de fréquence",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1494",
            "sub_category_id": "018d1386-6030-79d2-804b-a537fbd5d2c3",
            "wording": "Variateurs de vitesse",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1394",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "Vases en céramique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1433",
            "sub_category_id": "018d1386-6030-7149-afdb-4cdc4c676914",
            "wording": "Vases en verre artistiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0245",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Ventilateur de plafond",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0246",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Ventilateur sur pied",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0730",
            "sub_category_id": "018d1386-602f-7d0a-82aa-f6eaab61fb32",
            "wording": "Ventilateurs de boîtier haute performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1751",
            "sub_category_id": null,
            "wording": "Ventilateurs industriels",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0728",
            "sub_category_id": "018d1386-602f-7d0a-82aa-f6eaab61fb32",
            "wording": "Ventirads pour processeurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0151",
            "sub_category_id": "018d1386-602e-7429-ae3d-4b1abed3b3be",
            "wording": "Vernis à ongles classiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1020",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vestes coupe-vent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1138",
            "sub_category_id": null,
            "wording": "Vestes coupe-vent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0891",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vestes coupe-vent",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1016",
            "sub_category_id": null,
            "wording": "Vestes d'hiver matelassées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0841",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "Vestes de costume",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1093",
            "sub_category_id": null,
            "wording": "Vestes de cérémonie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1001",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Vestes de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0882",
            "sub_category_id": "018d1386-602f-798b-a2fe-761e5682852f",
            "wording": "Vestes de luxe",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0876",
            "sub_category_id": "018d1386-602f-7035-a05d-18be5781a22a",
            "wording": "Vestes de motoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0895",
            "sub_category_id": "018d1386-602f-73a8-bb15-2288201986dd",
            "wording": "Vestes de pluie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1018",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vestes de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0889",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vestes de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1015",
            "sub_category_id": null,
            "wording": "Vestes de randonnée",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0869",
            "sub_category_id": "018d1386-602f-75e0-b72b-b2d5299597f0",
            "wording": "Vestes de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0974",
            "sub_category_id": "018d1386-602f-7657-a7b5-aa02d80c9815",
            "wording": "Vestes de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1133",
            "sub_category_id": null,
            "wording": "Vestes de sport",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0907",
            "sub_category_id": null,
            "wording": "Vestes de sportswear",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0872",
            "sub_category_id": "018d1386-602f-76de-b0da-111536c44214",
            "wording": "Vestes de travail",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0819",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0942",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes en cuir",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0947",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes en fausse fourrure",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0820",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes en jean",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0945",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes en jean",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1078",
            "sub_category_id": null,
            "wording": "Vestes en jean",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1013",
            "sub_category_id": null,
            "wording": "Vestes imperméables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1136",
            "sub_category_id": null,
            "wording": "Vestes imperméables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0825",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes imperméables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1039",
            "sub_category_id": null,
            "wording": "Vestes imperméables de marque",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1071",
            "sub_category_id": null,
            "wording": "Vestes légères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0824",
            "sub_category_id": "018d1386-602f-7ca6-9ee7-ebfb4f236073",
            "wording": "Vestes légères",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1139",
            "sub_category_id": null,
            "wording": "Vestes matelassées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1532",
            "sub_category_id": null,
            "wording": "Vibroculteurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1670",
            "sub_category_id": "018d1386-6030-735d-842c-c13fedc84c3b",
            "wording": "Vis pour maçonnerie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "019194d8-e236-76d6-bff0-aea2d46511c8",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Voiture Tokpa Tokpa",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019194d7-968a-7569-ade2-8a1001ea92c5",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Voiture Tokpa Tokpa",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fa01a-9137-7867-a4d8-09aa1666555f",
            "sub_category_id": null,
            "wording": "Voiture citadelle",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fa01a-e6b5-7faf-be48-246eab71f71d",
            "sub_category_id": null,
            "wording": "Voiture citadelle",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fc519-bf4a-7390-a8ce-5c486e66ee1a",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Voiture familiale",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fc4ea-3618-7bea-a534-701ffc857e8d",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Voiture familiale",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fc4e6-bb1c-72e0-8fb6-63e930e0ed50",
            "sub_category_id": "018d1386-602f-78c9-b88e-969446d14a63",
            "wording": "Voiture personnelle",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0405",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Voitures miniatures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0408",
            "sub_category_id": "018d1386-602f-7425-a8bc-c531ab0c70b6",
            "wording": "Véhicules télécommandés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0259",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Vélo d'appartement couché",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0258",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Vélo d'appartement vertical",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0303",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "Vélo de montagne haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0267",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Vélo de spinning haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0260",
            "sub_category_id": "018d1386-602f-7d41-86d2-35467e7cfdc4",
            "wording": "Vélo elliptique à bras mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0390",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Vélos pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0903",
            "sub_category_id": null,
            "wording": "Vêtements courts",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0912",
            "sub_category_id": null,
            "wording": "Vêtements de Mariage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1319",
            "sub_category_id": "018d1386-6030-78a5-8429-dce15fb9ff0b",
            "wording": "Vêtements de créateurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0899",
            "sub_category_id": null,
            "wording": "Vêtements de créateurs renommés",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1143",
            "sub_category_id": null,
            "wording": "Vêtements de designers pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1025",
            "sub_category_id": "018d1386-602f-7721-bc9e-d3b53cf85a7d",
            "wording": "Vêtements de performance",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1655",
            "sub_category_id": "018d1386-6030-7e39-acaf-5ddc2272d3a7",
            "wording": "Vêtements de protection",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0893",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vêtements de pêche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1041",
            "sub_category_id": null,
            "wording": "Vêtements de ski et de snowboard",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1021",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vêtements de ski et snowboard",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0892",
            "sub_category_id": "018d1386-602f-78a9-bf43-273cf36850d1",
            "wording": "Vêtements de ski et snowboard",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0900",
            "sub_category_id": null,
            "wording": "Vêtements grande taille",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0902",
            "sub_category_id": null,
            "wording": "Vêtements longs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0901",
            "sub_category_id": null,
            "wording": "Vêtements slim fit",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1148",
            "sub_category_id": null,
            "wording": "Vêtements Éducatifs pour Enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1147",
            "sub_category_id": null,
            "wording": "Vêtements à thème (super-héros",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0604",
            "sub_category_id": null,
            "wording": "Webcams HD",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0747",
            "sub_category_id": "018d1386-602f-7d78-9f88-9a9986b2a6b9",
            "wording": "Webcams HD pour la visioconférence",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "019262fc-bc44-73e1-9540-e526df7ca1bf",
            "sub_category_id": null,
            "wording": "arme à feu",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018f9fee-63b5-7576-8fc4-8096a020550d",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "chef",
            "is_published": null,
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018fb1e7-ccdb-7593-99e7-031b2e2b4bba",
            "sub_category_id": "018d1386-602f-7525-8fc2-49652cbcd86c",
            "wording": "chemise homme",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018f8ca2-c7df-7f34-905a-6e0497b4a037",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "de",
            "is_published": null,
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "019198a8-886c-70ed-ab8e-e0c0501cc70f",
            "sub_category_id": "018d1386-6030-7d32-9046-a5971e9b24d6",
            "wording": "fleurs",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fbed0-a939-785f-a958-a23ec39db062",
            "sub_category_id": null,
            "wording": "free2",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fca80-75ee-7103-97a7-05203c0588cd",
            "sub_category_id": null,
            "wording": "geek flow",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fca83-906d-7e9d-8d7f-831f50e32e49",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "geek flow",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fca93-c4e6-7e51-8f11-6a16ac0380b0",
            "sub_category_id": null,
            "wording": "geek flow",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fca82-4684-7f79-8924-c5ebd4f90672",
            "sub_category_id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
            "wording": "geek flow 2",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fca91-2172-7783-8d54-c397f912073c",
            "sub_category_id": "018d1386-602e-70f3-bcfc-366d8ad4cd5d",
            "wording": "geek flow 3",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01910302-76aa-70ee-9789-930c59578b31",
            "sub_category_id": null,
            "wording": "iPhone 14",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fa034-b2f5-77d5-a5e0-18d4e1048489",
            "sub_category_id": null,
            "wording": "job",
            "is_published": null,
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018f9fbc-7743-726d-bb34-7083a7ccb304",
            "sub_category_id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "la Glace",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0192bf35-9c3d-7e16-9aff-e5971c8816d5",
            "sub_category_id": "018d1386-602f-7041-857b-ea99dd3fb98c",
            "wording": "marqueur",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0192664f-8e42-768e-88f1-3b1faa3b7b56",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "pc gaming",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0191be6d-24a3-72e5-bf06-b952b9096fb5",
            "sub_category_id": "0191be19-f78d-7468-9a7e-61fecdefed32",
            "wording": "test",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "0192c49f-b71f-72ec-b109-5686f6f471a6",
            "sub_category_id": "0190ee02-b511-7c36-9745-d741496fc526",
            "wording": "test",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0192c4a0-0e5d-7c00-8885-2ebcf638ed94",
            "sub_category_id": "018d1386-6030-7067-ae4a-12f7eebc4f84",
            "wording": "test 2",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0191be6f-1f0b-7d01-afc5-96713f267661",
            "sub_category_id": "018d1386-602f-795d-93d2-f4e7a27682a9",
            "wording": "testtt",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fcb30-c4b0-7754-9d82-7cf350cbaf59",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "turbo",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01931a19-79cf-796c-9bc1-b12be8e3aff3",
            "sub_category_id": "018d1386-602f-7bb5-a7fb-c5ae923b9a70",
            "wording": "velo",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019316ca-5216-7c3a-ac50-7300219babe4",
            "sub_category_id": "018d1386-602f-7924-9c52-db51eea1aed8",
            "wording": "veste",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019252bf-6739-79c8-a10f-5cb76830c31a",
            "sub_category_id": "018d1386-602f-71ff-b4fc-4fb331e1e08b",
            "wording": "voile mousselines ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019252be-f4e4-74a4-9b45-0da8b0d622ae",
            "sub_category_id": "018d1386-602f-71ff-b4fc-4fb331e1e08b",
            "wording": "voile mousselines ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019252ba-a8dc-7cbc-a5c4-35756b6d6ed3",
            "sub_category_id": null,
            "wording": "voile mousselines ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019252bb-f7da-7733-a39d-269c2d9aed88",
            "sub_category_id": null,
            "wording": "voile mousselines ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019252bd-245a-705c-b28e-acbda337a512",
            "sub_category_id": "018d1386-602e-789e-948f-e551671eaa13",
            "wording": "voile mousselines ",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0190e99e-b4e0-704b-8379-440a727e8429",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "voiture neuve benz",
            "is_published": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1599",
            "sub_category_id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "wording": "Ébrancheurs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1626",
            "sub_category_id": null,
            "wording": "Échafaudages mobiles",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0860",
            "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
            "wording": "Écharpes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1112",
            "sub_category_id": null,
            "wording": "Écharpes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0985",
            "sub_category_id": null,
            "wording": "Écharpes",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:34.000000Z",
            "updated_at": "2026-07-17T18:03:34.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0330",
            "sub_category_id": "018d1386-602f-7c1d-b22f-9598f1f605de",
            "wording": "Échelle de poids intelligente avec analyse corporelle",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1630",
            "sub_category_id": null,
            "wording": "Échelles de maçon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1526",
            "sub_category_id": null,
            "wording": "Échelles et échafaudages",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1629",
            "sub_category_id": null,
            "wording": "Échelles multifonctions",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1628",
            "sub_category_id": null,
            "wording": "Échelles télescopiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1513",
            "sub_category_id": null,
            "wording": "Éclairage LED",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0611",
            "sub_category_id": null,
            "wording": "Éclairage LED pour streaming",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0583",
            "sub_category_id": null,
            "wording": "Éclairage de studioo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1516",
            "sub_category_id": null,
            "wording": "Éclairage de sécurité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0606",
            "sub_category_id": null,
            "wording": "Éclairage pour vidéoconférence",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0553",
            "sub_category_id": null,
            "wording": "Écouteurs intra-auriculaires",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0554",
            "sub_category_id": null,
            "wording": "Écouteurs sans fil",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0642",
            "sub_category_id": null,
            "wording": "Écouteurs sans fil True Wireless",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0643",
            "sub_category_id": null,
            "wording": "Écouteurs sportifs résistants à l'eau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1400",
            "sub_category_id": "018d1386-6030-722e-b7e1-415b4502bb5c",
            "wording": "Éditions limitées",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1311",
            "sub_category_id": "018d1386-6030-7b5a-9d68-44e27e983844",
            "wording": "Éditions spéciales de films",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1678",
            "sub_category_id": null,
            "wording": "Électrodes de soudure",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1702",
            "sub_category_id": null,
            "wording": "Élévateurs à ciseaux",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1569",
            "sub_category_id": "018d1386-6030-7987-a1b9-c60f46b75f88",
            "wording": "Élévateurs à fourche",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1583",
            "sub_category_id": "018d1386-6030-70aa-b64c-bfe1dfc68147",
            "wording": "Élévateurs à godets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1601",
            "sub_category_id": "018d1386-6030-7208-8a3c-c1061cfa2fda",
            "wording": "Émondoirs",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1557",
            "sub_category_id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "wording": "Épandage localisé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1554",
            "sub_category_id": "018d1386-6030-7009-a06e-90b2852ca0e7",
            "wording": "Épandeurs d'engrais",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1316",
            "sub_category_id": "018d1386-6030-786c-9186-0727b06c077e",
            "wording": "Épices et condiments",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0251",
            "sub_category_id": "018d1386-602f-7770-bae3-2ae10776e0e6",
            "wording": "Épilateur électrique haut de gamme",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0050",
            "sub_category_id": null,
            "wording": "Épingles de revers",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0159",
            "sub_category_id": "018d1386-602e-7e97-8a38-9c9e4f98d9af",
            "wording": "Éponges de maquillage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1302",
            "sub_category_id": "018d1386-6030-74e8-844c-ad22f9808160",
            "wording": "Équipement audio (casques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1331",
            "sub_category_id": "018d1386-6030-7920-8f89-f873a9f8f545",
            "wording": "Équipement audiovisuel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0701",
            "sub_category_id": null,
            "wording": "Équipement de fitness intelligent (ex. haltères connectés)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1350",
            "sub_category_id": "018d1386-6030-71f9-8bee-544e043716c4",
            "wording": "Équipement de laboratoire",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1520",
            "sub_category_id": null,
            "wording": "Équipement de mesure de la qualité de l'énergie",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1523",
            "sub_category_id": null,
            "wording": "Équipement de soudage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0662",
            "sub_category_id": "018d1386-602f-7818-9980-e3cb4c7a1dca",
            "wording": "Équipement pour réalité virtuelle (VR)",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1324",
            "sub_category_id": "018d1386-6030-71b2-a11e-5d5958eeb0f2",
            "wording": "Équipement sportif",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0397",
            "sub_category_id": "018d1386-602f-7850-8b14-8b698620315e",
            "wording": "Équipements de camping pour enfants",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1764",
            "sub_category_id": null,
            "wording": "Équipements de décapage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1605",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Équipements de décompactage du sol",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1603",
            "sub_category_id": "018d1386-6030-7c56-9644-fa44ee5f3b75",
            "wording": "Équipements de désherbage mécanique",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0301",
            "sub_category_id": null,
            "wording": "Équipements de protection professionnels (casques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1744",
            "sub_category_id": null,
            "wording": "Équipements de recyclage",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0444",
            "sub_category_id": "018d1386-602f-7d7e-b592-8e9dead95fce",
            "wording": "Étagère",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0514",
            "sub_category_id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "wording": "Étagère à chaussures",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0550",
            "sub_category_id": "018d1386-602f-7268-bec4-7b7eb70d7b19",
            "wording": "Étagères audio-vidéoo",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0466",
            "sub_category_id": "018d1386-602f-7f0c-9d52-0abd5e085f93",
            "wording": "Étagères de rangement",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0483",
            "sub_category_id": "018d1386-602f-726b-811a-14d76da5c531",
            "wording": "Étagères de rangement pour jouets",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0519",
            "sub_category_id": "018d1386-602f-762f-8cca-6e944ad74650",
            "wording": "Étagères de rangement pour la cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0524",
            "sub_category_id": "018d1386-602f-77e4-a0a6-f26be5e18be8",
            "wording": "Étagères de rangement pour le bureau",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0512",
            "sub_category_id": "018d1386-602f-7f1a-b10c-fd774e59d6e0",
            "wording": "Étagères de rangement pour salle de bain",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0504",
            "sub_category_id": "018d1386-602f-7e7a-8407-c1c28a26279b",
            "wording": "Étagères modulables",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1645",
            "sub_category_id": "018d1386-6030-73fc-aaad-06c216c59102",
            "wording": "Étais de maçon",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1646",
            "sub_category_id": "018d1386-6030-73fc-aaad-06c216c59102",
            "wording": "Étais télescopiques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:37.000000Z",
            "updated_at": "2026-07-17T18:03:37.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0675",
            "sub_category_id": "018d1386-602f-70c2-8dc8-8072ee0ea031",
            "wording": "Étuis de protection et housses",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0175",
            "sub_category_id": "018d1386-602e-785a-87f8-1f7b26fe9ce2",
            "wording": "Étuis et valises de maquillage professionnel",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:31.000000Z",
            "updated_at": "2026-07-17T18:03:31.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0520",
            "sub_category_id": "018d1386-602f-762f-8cca-6e944ad74650",
            "wording": "Îlot de cuisine",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:32.000000Z",
            "updated_at": "2026-07-17T18:03:32.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1457",
            "sub_category_id": "018d1386-6030-795c-8b76-4122d4411a70",
            "wording": "Œuvres abstraites",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1419",
            "sub_category_id": "018d1386-6030-7ae3-9758-62c19c745cdc",
            "wording": "Œuvres d'art en macramé",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1455",
            "sub_category_id": "018d1386-6030-78f3-b616-a7cbf3a5556c",
            "wording": "Œuvres d'art en origami",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1408",
            "sub_category_id": "018d1386-6030-76d2-a906-7f43a795bb16",
            "wording": "Œuvres d'art générées par ordinateur",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1465",
            "sub_category_id": "018d1386-6030-74ab-a23c-cef1937886b4",
            "wording": "Œuvres d'art inspirées par la spiritualité",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1297",
            "sub_category_id": "018d1386-6030-7e9c-a110-82b7f1093114",
            "wording": "Œuvres d'art numériques",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:35.000000Z",
            "updated_at": "2026-07-17T18:03:35.000000Z"
        },
        {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb1426",
            "sub_category_id": "018d1386-6030-7e98-9caa-562cceec10ea",
            "wording": "Œuvres d'art textile",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:36.000000Z",
            "updated_at": "2026-07-17T18:03:36.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/articles

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/articles

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/articles" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"sub_category_id\": \"architecto\",
    \"wording\": \"architecto\",
    \"wording_fr\": \"architecto\",
    \"wording_en\": \"architecto\",
    \"is_published\": \"architecto\",
    \"reference_price\": 4326.41688,
    \"brand_ids\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/articles"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "sub_category_id": "architecto",
    "wording": "architecto",
    "wording_fr": "architecto",
    "wording_en": "architecto",
    "is_published": "architecto",
    "reference_price": 4326.41688,
    "brand_ids": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/articles

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

sub_category_id   uuid  optional    

nullable Existing sub-category identifier. Example: architecto

wording   string  optional    

nullable Legacy article label. Example: architecto

wording_fr   string  optional    

nullable French article label. Example: architecto

wording_en   string  optional    

nullable English article label. Example: architecto

is_published   string  optional    

nullable Publication flag: o or n. Example: architecto

reference_price   number  optional    

nullable Reference price. Example: 4326.41688

brand_ids   uuid[]  optional    

nullable Associated brand identifiers.

GET api/v1/reference/articles/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/articles/018d11dc-9368-7cf7-858a-e6506dcb0023" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/articles/018d11dc-9368-7cf7-858a-e6506dcb0023"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018d11dc-9368-7cf7-858a-e6506dcb0023",
        "sub_category_id": "018d1386-602e-7592-b68b-38d49c990786",
        "wording": "Bracelets manchettes",
        "is_published": "o",
        "sub_category": {
            "id": "018d1386-602e-7592-b68b-38d49c990786",
            "category_id": "018d0cf9-a560-75ce-a203-0c00958333c4",
            "brand_id": null,
            "wording": "Bracelets",
            "wording_fr": null,
            "wording_en": null,
            "category": {
                "id": "018d0cf9-a560-75ce-a203-0c00958333c4",
                "wording": "BIJOUX",
                "wording_fr": null,
                "wording_en": null,
                "file_path": "categories/photos/bijoux.png",
                "file_url": "https://pub-21be773efd664f4ebb61b82f776a61a8.r2.dev/categories/photos/bijoux.png",
                "description": null,
                "description_fr": null,
                "description_en": null,
                "created_at": "2026-07-17T18:03:18.000000Z",
                "updated_at": "2026-07-17T18:03:18.000000Z"
            },
            "created_at": "2026-07-17T18:03:18.000000Z",
            "updated_at": "2026-07-17T18:03:18.000000Z"
        },
        "brands": [],
        "article_variants": [],
        "created_at": "2026-07-17T18:03:30.000000Z",
        "updated_at": "2026-07-17T18:03:30.000000Z"
    }
}
 

Request      

GET api/v1/reference/articles/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article. Example: 018d11dc-9368-7cf7-858a-e6506dcb0023

PUT api/v1/reference/articles/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/articles/018d11dc-9368-7cf7-858a-e6506dcb0023" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"sub_category_id\": \"architecto\",
    \"wording\": \"architecto\",
    \"wording_fr\": \"architecto\",
    \"wording_en\": \"architecto\",
    \"is_published\": \"architecto\",
    \"reference_price\": 4326.41688,
    \"brand_ids\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/articles/018d11dc-9368-7cf7-858a-e6506dcb0023"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "sub_category_id": "architecto",
    "wording": "architecto",
    "wording_fr": "architecto",
    "wording_en": "architecto",
    "is_published": "architecto",
    "reference_price": 4326.41688,
    "brand_ids": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/articles/{id}

PATCH api/v1/reference/articles/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article. Example: 018d11dc-9368-7cf7-858a-e6506dcb0023

Body Parameters

sub_category_id   uuid  optional    

nullable Existing sub-category identifier. Example: architecto

wording   string  optional    

nullable Legacy article label. Example: architecto

wording_fr   string  optional    

nullable French article label. Example: architecto

wording_en   string  optional    

nullable English article label. Example: architecto

is_published   string  optional    

nullable Publication flag: o or n. Example: architecto

reference_price   number  optional    

nullable Reference price. Example: 4326.41688

brand_ids   uuid[]  optional    

nullable Associated brand identifiers.

DELETE api/v1/reference/articles/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/articles/018d11dc-9368-7cf7-858a-e6506dcb0023" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/articles/018d11dc-9368-7cf7-858a-e6506dcb0023"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/articles/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article. Example: 018d11dc-9368-7cf7-858a-e6506dcb0023

GET api/v1/reference/article-characteristics

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/article-characteristics" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "01912cd8-0501-7fd1-9611-89040f0781d7",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01912cd8-0501-7fd1-9611-890410064db7",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01919351-be87-72ba-9785-88354e92f53c",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01919351-be87-72ba-9785-88354f4cbb61",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01919354-42b8-751a-88f2-29207ffa6d2c",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01919354-42b8-751a-88f2-292080cb75dd",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01919359-5cca-72cb-877b-ed543390a170",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01919359-5cca-72cb-877b-ed54346f0b10",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0191c169-697d-7e39-b8d9-9f986c3c6410",
            "article_id": "0191c169-697d-7e39-b8d9-9f986beee81d",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0191c169-697d-7e39-b8d9-9f986cf4ec3a",
            "article_id": "0191c169-697d-7e39-b8d9-9f986beee81d",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa4d8-e8b0-717a-a883-4ce2bd18c759",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa4d8-e8b0-717a-a883-4ce2bd5f908a",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa4d8-e8b0-717a-a883-4ce2bddeda7f",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "characteristic_id": "018fa144-c603-7872-973f-cc0ad6c1d203",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa144-c603-7872-973f-cc0ad6c1d203",
                "wording": "Carte Graphique",
                "input_type": "text",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa604-e791-7d8b-b42e-6cb06f77021a",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "characteristic_id": "018fa602-d7c9-7914-a24c-7f7e7991a4a4",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa602-d7c9-7914-a24c-7f7e7991a4a4",
                "wording": "Capacité",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa604-e791-7d8b-b42e-6cb06fd8caf5",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "characteristic_id": "018fa602-3a0e-7dfe-a634-a2a421212ce4",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa602-3a0e-7dfe-a634-a2a421212ce4",
                "wording": "Type de SIM",
                "input_type": "text",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa604-e791-7d8b-b42e-6cb070207551",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "characteristic_id": "018fa600-75bd-7387-858a-627e7991f7f3",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa600-75bd-7387-858a-627e7991f7f3",
                "wording": "Nombre de capteurs (arrière et avant)",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa604-e791-7d8b-b42e-6cb0711f3849",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": "n",
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa604-e791-7d8b-b42e-6cb07125964a",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": "n",
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0190c2eb-2ea0-7583-8439-bd0081b7e88d",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0146",
            "characteristic_id": "018fa600-1d80-7000-a428-f983b00a8b52",
            "unit_id": null,
            "is_required": "o",
            "characteristic": {
                "id": "018fa600-1d80-7000-a428-f983b00a8b52",
                "wording": "Appareil photo (dorsal)",
                "input_type": "text",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0190c2ec-f658-720a-8a38-4220fc4b8ca1",
            "article_id": null,
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": "019f426a-958a-731f-8513-8394b17a5a5b",
            "is_required": "o",
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": {
                "id": "019f426a-958a-731f-8513-8394b17a5a5b",
                "wording": "Giga Octect",
                "input_type": "number",
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0190c2ec-f658-720a-8a38-4220fcbe98d7",
            "article_id": null,
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": "019f426a-958a-731f-8513-8394b17a5a5b",
            "is_required": "o",
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": {
                "id": "019f426a-958a-731f-8513-8394b17a5a5b",
                "wording": "Giga Octect",
                "input_type": "number",
                "created_at": "2026-07-08T15:48:29.000000Z",
                "updated_at": "2026-07-08T15:48:29.000000Z"
            },
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01912c60-abc3-7c8f-ac96-8d73f38e9c3c",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
                "wording": "RAM",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "01912c60-abc3-7c8f-ac96-8d73f47e00f7",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "characteristic_id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "unit_id": null,
            "is_required": null,
            "characteristic": {
                "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
                "wording": "Stockage externe",
                "input_type": "number",
                "created_at": "2026-07-17T18:03:39.000000Z",
                "updated_at": "2026-07-17T18:03:39.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/article-characteristics

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/article-characteristics

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"architecto\",
    \"characteristic_id\": \"architecto\",
    \"unit_id\": \"architecto\",
    \"is_required\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "architecto",
    "characteristic_id": "architecto",
    "unit_id": "architecto",
    "is_required": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/article-characteristics

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

article_id   uuid  optional    

nullable Existing article identifier. Example: architecto

characteristic_id   uuid  optional    

nullable Existing characteristic identifier. Example: architecto

unit_id   uuid  optional    

nullable Existing unit identifier. Example: architecto

is_required   string  optional    

nullable Required flag: o or n. Example: architecto

GET api/v1/reference/article-characteristics/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/article-characteristics/01912cd8-0501-7fd1-9611-89040f0781d7" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics/01912cd8-0501-7fd1-9611-89040f0781d7"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "01912cd8-0501-7fd1-9611-89040f0781d7",
        "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
        "characteristic_id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
        "unit_id": null,
        "is_required": null,
        "characteristic": {
            "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "wording": "RAM",
            "input_type": "number",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        "unit": null,
        "created_at": "2026-07-17T18:03:39.000000Z",
        "updated_at": "2026-07-17T18:03:39.000000Z"
    }
}
 

Request      

GET api/v1/reference/article-characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article characteristic. Example: 01912cd8-0501-7fd1-9611-89040f0781d7

PUT api/v1/reference/article-characteristics/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics/01912cd8-0501-7fd1-9611-89040f0781d7" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"architecto\",
    \"characteristic_id\": \"architecto\",
    \"unit_id\": \"architecto\",
    \"is_required\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics/01912cd8-0501-7fd1-9611-89040f0781d7"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "architecto",
    "characteristic_id": "architecto",
    "unit_id": "architecto",
    "is_required": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/article-characteristics/{id}

PATCH api/v1/reference/article-characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article characteristic. Example: 01912cd8-0501-7fd1-9611-89040f0781d7

Body Parameters

article_id   uuid  optional    

nullable Existing article identifier. Example: architecto

characteristic_id   uuid  optional    

nullable Existing characteristic identifier. Example: architecto

unit_id   uuid  optional    

nullable Existing unit identifier. Example: architecto

is_required   string  optional    

nullable Required flag: o or n. Example: architecto

DELETE api/v1/reference/article-characteristics/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics/01912cd8-0501-7fd1-9611-89040f0781d7" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-characteristics/01912cd8-0501-7fd1-9611-89040f0781d7"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/article-characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article characteristic. Example: 01912cd8-0501-7fd1-9611-89040f0781d7

GET api/v1/reference/variants

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "wording": "Couleur",
            "type": "color",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        {
            "id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
            "wording": "Taille",
            "type": "size",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/variants

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"Couleur\",
    \"type\": \"color\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "Couleur",
    "type": "color"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Variant label. Example: Couleur

type   string  optional    

nullable Variant type. Example: color

GET api/v1/reference/variants/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/variants/018fa4d3-947f-75d9-b241-8a504684c4a4" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/variants/018fa4d3-947f-75d9-b241-8a504684c4a4"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
        "wording": "Taille",
        "type": "size",
        "created_at": "2026-07-17T18:03:30.000000Z",
        "updated_at": "2026-07-17T18:03:30.000000Z"
    }
}
 

Request      

GET api/v1/reference/variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the variant. Example: 018fa4d3-947f-75d9-b241-8a504684c4a4

PUT api/v1/reference/variants/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/variants/018fa4d3-947f-75d9-b241-8a504684c4a4" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"Couleur\",
    \"type\": \"color\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/variants/018fa4d3-947f-75d9-b241-8a504684c4a4"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "Couleur",
    "type": "color"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/variants/{id}

PATCH api/v1/reference/variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the variant. Example: 018fa4d3-947f-75d9-b241-8a504684c4a4

Body Parameters

wording   string     

Variant label. Example: Couleur

type   string  optional    

nullable Variant type. Example: color

DELETE api/v1/reference/variants/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/variants/018fa4d3-947f-75d9-b241-8a504684c4a4" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/variants/018fa4d3-947f-75d9-b241-8a504684c4a4"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the variant. Example: 018fa4d3-947f-75d9-b241-8a504684c4a4

GET api/v1/reference/units

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/units" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/units"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-95a1-72c4-93a3-d7bfe8da4702",
            "wording": "A",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9594-733f-8fda-8697cc7fffd1",
            "wording": "ATM",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95a4-7333-8186-c0e0f53938e3",
            "wording": "Ah",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95ac-72fb-8bc5-38c03d1f6b00",
            "wording": "GHz",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-958c-7198-8712-abb3809c3099",
            "wording": "Ghz",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-958a-731f-8513-8394b17a5a5b",
            "wording": "Giga Octect",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95b5-7366-9409-320e7301c894",
            "wording": "Go",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95a8-72d5-a006-a45dae4484a8",
            "wording": "Hz",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9593-73e4-a8fd-718c2b87bcad",
            "wording": "Inches",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95c7-7007-8fed-e788a66aa53d",
            "wording": "J",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95aa-71af-8fd5-9613ccebdb52",
            "wording": "KHz",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9596-724e-a819-b2c15f6cd8f0",
            "wording": "L",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95ae-702f-ae64-d218afd94d92",
            "wording": "MHz",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95b9-7057-9a36-bb4334884936",
            "wording": "Mo",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9588-7364-9df2-f78cb78c2cd8",
            "wording": "Méga pixel (Mp)",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95b7-729a-8e97-e2e78ee354fc",
            "wording": "To",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95a3-7213-95c8-228d96e6d643",
            "wording": "V",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-959e-7356-8403-c3bb0084233d",
            "wording": "W",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9597-71ba-bad1-ed9d1b0a1c4b",
            "wording": "cL",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-958f-7260-8dbf-c2e2ccb371af",
            "wording": "cm",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95b1-727c-8575-94817fccd6ee",
            "wording": "dB",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95be-704f-b846-c0fc9f0c5a51",
            "wording": "h",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-959f-70c4-ba04-1bb86e504d52",
            "wording": "kW",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95bf-731f-a6de-f46ea981fa3f",
            "wording": "km/h",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-959a-7398-85a7-f04c5c084e4c",
            "wording": "lm",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-959c-73bd-af81-425705bb7fe8",
            "wording": "lx",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9591-7274-b127-fdaf4458bf8c",
            "wording": "m",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95c1-71fc-bdd6-d197a6bcf300",
            "wording": "m/s",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-9599-72d7-a578-50d19caae60f",
            "wording": "mL",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95bc-7098-8499-d836fdc77304",
            "wording": "min",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-958e-71dc-a5b1-601965a81138",
            "wording": "mm",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95ba-70ec-a9d1-491943c9844b",
            "wording": "ms",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95a6-7213-850f-cd006aa14b7e",
            "wording": "px",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95c2-7223-8c48-1660d075b2e2",
            "wording": "°",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95c4-7096-bc40-1ae55da6b79a",
            "wording": "°C",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95c6-7355-9104-7437598357b8",
            "wording": "°F",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        },
        {
            "id": "019f426a-95b3-7067-9342-a26861f28f57",
            "wording": "Ω",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:29.000000Z",
            "updated_at": "2026-07-08T15:48:29.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/units

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/units

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/units" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"cm\",
    \"input_type\": \"number\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/units"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "cm",
    "input_type": "number"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/units

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Unit label. Example: cm

input_type   string  optional    

nullable Expected input type. Example: number

GET api/v1/reference/units/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/units/019f426a-9588-7364-9df2-f78cb78c2cd8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/units/019f426a-9588-7364-9df2-f78cb78c2cd8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-9588-7364-9df2-f78cb78c2cd8",
        "wording": "Méga pixel (Mp)",
        "input_type": "number",
        "created_at": "2026-07-08T15:48:29.000000Z",
        "updated_at": "2026-07-08T15:48:29.000000Z"
    }
}
 

Request      

GET api/v1/reference/units/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the unit. Example: 019f426a-9588-7364-9df2-f78cb78c2cd8

PUT api/v1/reference/units/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/units/019f426a-9588-7364-9df2-f78cb78c2cd8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"cm\",
    \"input_type\": \"number\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/units/019f426a-9588-7364-9df2-f78cb78c2cd8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "cm",
    "input_type": "number"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/units/{id}

PATCH api/v1/reference/units/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the unit. Example: 019f426a-9588-7364-9df2-f78cb78c2cd8

Body Parameters

wording   string     

Unit label. Example: cm

input_type   string  optional    

nullable Expected input type. Example: number

DELETE api/v1/reference/units/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/units/019f426a-9588-7364-9df2-f78cb78c2cd8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/units/019f426a-9588-7364-9df2-f78cb78c2cd8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/units/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the unit. Example: 019f426a-9588-7364-9df2-f78cb78c2cd8

GET api/v1/reference/article-variants

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/article-variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018fa4d8-e8b0-717a-a883-4ce2be6cb8e6",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "variant_id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
                "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
                "wording": "Ordinateurs portables ultrabooks",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:33.000000Z",
                "updated_at": "2026-07-17T18:03:33.000000Z"
            },
            "variant": {
                "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
                "wording": "Couleur",
                "type": "color",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fa4d8-e8b0-717a-a883-4ce2bf67e742",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "variant_id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
                "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
                "wording": "Ordinateurs portables ultrabooks",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:33.000000Z",
                "updated_at": "2026-07-17T18:03:33.000000Z"
            },
            "variant": {
                "id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
                "wording": "Taille",
                "type": "size",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fa604-e791-7d8b-b42e-6cb0718b118b",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "variant_id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
                "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
                "wording": "Téléphones Android haut de gamme (Samsung Galaxy S, ...)",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:33.000000Z",
                "updated_at": "2026-07-17T18:03:33.000000Z"
            },
            "variant": {
                "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
                "wording": "Couleur",
                "type": "color",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018fa604-e792-7b61-804b-c7b01e398348",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
            "variant_id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0619",
                "sub_category_id": "018d1386-602f-7896-bff2-3337d63ddaaa",
                "wording": "Téléphones Android haut de gamme (Samsung Galaxy S, ...)",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:33.000000Z",
                "updated_at": "2026-07-17T18:03:33.000000Z"
            },
            "variant": {
                "id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
                "wording": "Taille",
                "type": "size",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0190a61c-90d4-7828-a354-452d2d3f07bc",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0081",
            "variant_id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0081",
                "sub_category_id": "018d1386-602e-7523-b8b4-62512f6e8d5e",
                "wording": "Bijoux vintage de créateur",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": {
                "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
                "wording": "Couleur",
                "type": "color",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0190c2eb-2ea0-7583-8439-bd008240e4c2",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0146",
            "variant_id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0146",
                "sub_category_id": "018d1386-602e-7286-9cc4-d020db10b4d7",
                "wording": "Exfoliants corporels",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": {
                "id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
                "wording": "Taille",
                "type": "size",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0190c2ec-f658-720a-8a38-4220fd0ea5cd",
            "article_id": null,
            "variant_id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "unit_id": null,
            "is_required": " ",
            "article": null,
            "variant": {
                "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
                "wording": "Couleur",
                "type": "color",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019121fa-970d-790e-a1a6-4fa90c586d79",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0012",
            "variant_id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0012",
                "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
                "wording": "Colliers en perles",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "variant": {
                "id": "018fa4d3-947f-75d9-b241-8a504684c4a4",
                "wording": "Taille",
                "type": "size",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019121fa-970e-71a8-a6a4-d520972b65be",
            "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0012",
            "variant_id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "unit_id": null,
            "is_required": " ",
            "article": {
                "id": "018d11dc-9368-7cf7-858a-e6506dcb0012",
                "sub_category_id": "018d1386-602e-7120-bc33-f571846e065e",
                "wording": "Colliers en perles",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "variant": {
                "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
                "wording": "Couleur",
                "type": "color",
                "created_at": "2026-07-17T18:03:30.000000Z",
                "updated_at": "2026-07-17T18:03:30.000000Z"
            },
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01912c60-abc3-7c8f-ac96-8d73f5778c0e",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Sample Article",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01912c60-abc3-7c8f-ac96-8d73f5914bb8",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Sample Article",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01912cd8-0502-78dd-9250-68235062768c",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Sample Article",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01912cd8-0502-78dd-9250-682351096010",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Sample Article",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919351-be87-72ba-9785-88354f58e537",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Sample Article",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919351-be87-72ba-9785-88355044e5a5",
            "article_id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01912c60-abc3-7c8f-ac96-8d73f2b49112",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Sample Article",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919354-42b9-7e07-8d12-f3895482fd29",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01919354-42b8-751a-88f2-29207f52018c",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Apple MacBook",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919354-42b9-7e07-8d12-f38954e69d4c",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01919354-42b8-751a-88f2-29207f52018c",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Apple MacBook",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919359-5cca-72cb-877b-ed54351eafa9",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01919354-42b8-751a-88f2-29207f52018c",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Apple MacBook",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01919359-5cca-72cb-877b-ed543594e79c",
            "article_id": "01919354-42b8-751a-88f2-29207f52018c",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "01919354-42b8-751a-88f2-29207f52018c",
                "sub_category_id": "018d1386-602f-71a7-8511-311d1d3b42cb",
                "wording": "Apple MacBook",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0191c169-697e-75c9-a6af-5c6c0e641dab",
            "article_id": "0191c169-697d-7e39-b8d9-9f986beee81d",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "0191c169-697d-7e39-b8d9-9f986beee81d",
                "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
                "wording": "Smartphone Samsung Galaxy",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "0191c169-697e-75c9-a6af-5c6c0e9d7b09",
            "article_id": "0191c169-697d-7e39-b8d9-9f986beee81d",
            "variant_id": null,
            "unit_id": null,
            "is_required": null,
            "article": {
                "id": "0191c169-697d-7e39-b8d9-9f986beee81d",
                "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
                "wording": "Smartphone Samsung Galaxy",
                "is_published": "o",
                "created_at": "2026-07-17T18:03:38.000000Z",
                "updated_at": "2026-07-17T18:03:38.000000Z"
            },
            "variant": null,
            "unit": null,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/article-variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/article-variants

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/article-variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"architecto\",
    \"variant_id\": \"architecto\",
    \"unit_id\": \"architecto\",
    \"is_required\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "architecto",
    "variant_id": "architecto",
    "unit_id": "architecto",
    "is_required": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/article-variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

article_id   uuid  optional    

nullable Existing article identifier. Example: architecto

variant_id   uuid  optional    

nullable Existing variant identifier. Example: architecto

unit_id   uuid  optional    

nullable Existing unit identifier. Example: architecto

is_required   string  optional    

nullable Required flag: o or n. Example: architecto

GET api/v1/reference/article-variants/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/article-variants/018fa4d8-e8b0-717a-a883-4ce2be6cb8e6" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-variants/018fa4d8-e8b0-717a-a883-4ce2be6cb8e6"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018fa4d8-e8b0-717a-a883-4ce2be6cb8e6",
        "article_id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
        "variant_id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
        "unit_id": null,
        "is_required": " ",
        "article": {
            "id": "018d11dc-9368-7cf7-858a-e6506dcb0627",
            "sub_category_id": "018d1386-602f-7f51-9c5a-35d38255fa68",
            "wording": "Ordinateurs portables ultrabooks",
            "is_published": "o",
            "created_at": "2026-07-17T18:03:33.000000Z",
            "updated_at": "2026-07-17T18:03:33.000000Z"
        },
        "variant": {
            "id": "018fa4d0-f90d-7637-867c-33e30b2dc454",
            "wording": "Couleur",
            "type": "color",
            "created_at": "2026-07-17T18:03:30.000000Z",
            "updated_at": "2026-07-17T18:03:30.000000Z"
        },
        "unit": null,
        "created_at": "2026-07-17T18:03:38.000000Z",
        "updated_at": "2026-07-17T18:03:38.000000Z"
    }
}
 

Request      

GET api/v1/reference/article-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article variant. Example: 018fa4d8-e8b0-717a-a883-4ce2be6cb8e6

PUT api/v1/reference/article-variants/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/article-variants/018fa4d8-e8b0-717a-a883-4ce2be6cb8e6" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"article_id\": \"architecto\",
    \"variant_id\": \"architecto\",
    \"unit_id\": \"architecto\",
    \"is_required\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-variants/018fa4d8-e8b0-717a-a883-4ce2be6cb8e6"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "article_id": "architecto",
    "variant_id": "architecto",
    "unit_id": "architecto",
    "is_required": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/article-variants/{id}

PATCH api/v1/reference/article-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article variant. Example: 018fa4d8-e8b0-717a-a883-4ce2be6cb8e6

Body Parameters

article_id   uuid  optional    

nullable Existing article identifier. Example: architecto

variant_id   uuid  optional    

nullable Existing variant identifier. Example: architecto

unit_id   uuid  optional    

nullable Existing unit identifier. Example: architecto

is_required   string  optional    

nullable Required flag: o or n. Example: architecto

DELETE api/v1/reference/article-variants/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/article-variants/018fa4d8-e8b0-717a-a883-4ce2be6cb8e6" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/article-variants/018fa4d8-e8b0-717a-a883-4ce2be6cb8e6"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/article-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the article variant. Example: 018fa4d8-e8b0-717a-a883-4ce2be6cb8e6

GET api/v1/reference/characteristics

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/characteristics" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/characteristics"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-a935-7253-9f7b-d0ef7cc8b117",
            "wording": "Adaptabilité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a924-737b-823d-3f5289d3f34d",
            "wording": "Année",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "018fa600-1d80-7000-a428-f983b00a8b52",
            "wording": "Appareil photo (dorsal)",
            "input_type": "text",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "019f426a-a904-7329-af74-f1cb22a2e0ba",
            "wording": "Autonomie",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a933-72e8-a0b9-daefa99e3eac",
            "wording": "Blindage",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8dc-73fe-9ca4-e7824e6473a3",
            "wording": "Cadran",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "018fa602-d7c9-7914-a24c-7f7e7991a4a4",
            "wording": "Capacité",
            "input_type": "number",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa601-1a52-7690-9185-3fd54b0e41ab",
            "wording": "Capteur photo frontal",
            "input_type": "number",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "018fa144-c603-7872-973f-cc0ad6c1d203",
            "wording": "Carte Graphique",
            "input_type": "text",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "019f426a-a91f-73db-9386-3a60b53c1c17",
            "wording": "Carte graphique",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a92b-7088-89bf-1ed079c04bbf",
            "wording": "Chronologie",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a941-736f-8009-e06d1cce5c62",
            "wording": "Coefficient de performance",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a931-73ba-a6b1-b452c56f0aa0",
            "wording": "Composition",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a906-71eb-86fd-e33e5ab75f15",
            "wording": "Connectivité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8ef-735d-943a-053a7f6c7869",
            "wording": "Consommation",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8e3-7260-900e-3c7fafcbb33c",
            "wording": "Contenance",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8f1-7257-97a6-106737cca99c",
            "wording": "Design",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8d9-70ed-aec1-4afeaa1e80f1",
            "wording": "Diamètre",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a91c-7329-9276-1cb35f278361",
            "wording": "Directivité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a929-7136-add4-6c68ef02510d",
            "wording": "Durabilité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8e8-72c6-9c7e-90cc3fc0e40b",
            "wording": "Eclairage",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a902-72c9-aa90-9ac899a2cda3",
            "wording": "Effets",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8f8-71f3-bbf5-54b879ac7d2b",
            "wording": "Elasticité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8f7-73ce-be0e-a135bc33a4ae",
            "wording": "Epaisseur",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8f3-71d2-baed-c66447d4b816",
            "wording": "Ergonomie",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8da-701f-ac8e-8108f4fb9911",
            "wording": "Etanchéité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a93c-71b2-b63c-133e840948cb",
            "wording": "Flexibilité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8e5-732d-a410-2faf7d3681a0",
            "wording": "Format",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a907-7120-ab4d-e029365a8adb",
            "wording": "Forme",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a91e-7177-8ffc-f618d3ef4649",
            "wording": "Fréquence",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8ed-7185-8c35-e8d063e810fd",
            "wording": "Hauteur",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a911-71c9-b35f-2a820a6eb509",
            "wording": "Impédance",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8eb-718e-8171-a061e2592e28",
            "wording": "Largeur",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a919-73c6-9c58-da762aee6fdd",
            "wording": "Latence",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8de-707a-9384-14af5ae9b15d",
            "wording": "Longueur",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8e0-720c-9d15-b39ef8de0825",
            "wording": "Matériau",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a938-73f7-a764-994f9fba3919",
            "wording": "Mobilité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8f5-7353-a055-a8c12aaea7b5",
            "wording": "Moteur",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a900-7364-9e2b-46402a5ec6eb",
            "wording": "Niveaux de difficulté",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "018fa600-75bd-7387-858a-627e7991f7f3",
            "wording": "Nombre de capteurs (arrière et avant)",
            "input_type": "number",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "019f426a-a8ff-727c-9673-ee3da3d35c0c",
            "wording": "Nombre de niveaux",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a922-7030-b347-cf1b5889c24f",
            "wording": "Origine",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a916-7276-905e-41f134ebffe4",
            "wording": "Polyphonie",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a90e-7135-9477-4fd558bdcec4",
            "wording": "Processeurs",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8e1-72d8-be3f-bd78edd502c6",
            "wording": "Propriétés",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a936-70a8-ac56-9c23516dd4e8",
            "wording": "Précision",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a909-72f1-8ef4-3c0f1d8af391",
            "wording": "Puissance",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8fd-7001-90ba-f083de5c898e",
            "wording": "Qualité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "018fa109-f2ef-78a3-bc2e-f138f6fd1cb3",
            "wording": "RAM",
            "input_type": "number",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "019f426a-a92f-7003-a22f-dd6943f5c6d5",
            "wording": "Rationnalité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a92d-70dd-b2c4-6fc7f998873c",
            "wording": "Référence",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a90a-731d-b7a1-2f4cb4d8a6bc",
            "wording": "Résolution",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a926-70ea-9083-02bc6bdb20a9",
            "wording": "Saisonnabilité",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a910-7026-b1c0-7027b67247fc",
            "wording": "Sensibilité",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a913-73e4-b93d-5132baf2e92c",
            "wording": "Stockage",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "018fa115-cf64-7d2e-a85a-4fe8160442e1",
            "wording": "Stockage externe",
            "input_type": "number",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "019f426a-a915-716e-9316-3df7061915b2",
            "wording": "Taille de l'écran",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8ea-7194-be8a-89171f0f0283",
            "wording": "Technologie",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a93f-7019-8eb1-385ce636d562",
            "wording": "Température",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8fb-7167-8992-5d918c7e97ff",
            "wording": "Tension",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a8e6-7055-a26c-20abb07ff5b6",
            "wording": "Texture",
            "input_type": "string",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "018fa602-3a0e-7dfe-a634-a2a421212ce4",
            "wording": "Type de SIM",
            "input_type": "text",
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "019f426a-a91a-71f4-a7cf-1d86c20c5e9f",
            "wording": "Vitesse",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a90c-72ec-b1e0-82e1a451a894",
            "wording": "Zoom",
            "input_type": "number",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/characteristics

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/characteristics

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/characteristics" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"input_type\": \"number\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/characteristics"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "input_type": "number"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/characteristics

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Characteristic label. Example: architecto

input_type   string  optional    

nullable Input type. Example: number

GET api/v1/reference/characteristics/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/characteristics/019f426a-a8d9-70ed-aec1-4afeaa1e80f1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/characteristics/019f426a-a8d9-70ed-aec1-4afeaa1e80f1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-a8d9-70ed-aec1-4afeaa1e80f1",
        "wording": "Diamètre",
        "input_type": "number",
        "created_at": "2026-07-08T15:48:34.000000Z",
        "updated_at": "2026-07-08T15:48:34.000000Z"
    }
}
 

Request      

GET api/v1/reference/characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the characteristic. Example: 019f426a-a8d9-70ed-aec1-4afeaa1e80f1

PUT api/v1/reference/characteristics/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/characteristics/019f426a-a8d9-70ed-aec1-4afeaa1e80f1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"input_type\": \"number\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/characteristics/019f426a-a8d9-70ed-aec1-4afeaa1e80f1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "input_type": "number"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/characteristics/{id}

PATCH api/v1/reference/characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the characteristic. Example: 019f426a-a8d9-70ed-aec1-4afeaa1e80f1

Body Parameters

wording   string     

Characteristic label. Example: architecto

input_type   string  optional    

nullable Input type. Example: number

DELETE api/v1/reference/characteristics/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/characteristics/019f426a-a8d9-70ed-aec1-4afeaa1e80f1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/characteristics/019f426a-a8d9-70ed-aec1-4afeaa1e80f1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/characteristics/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the characteristic. Example: 019f426a-a8d9-70ed-aec1-4afeaa1e80f1

GET api/v1/reference/product-states

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/product-states" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-states"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "01887365-20aa-75d0-932d-3f407632c549",
            "wording": "Neuf",
            "position": 1,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01887365-7ed2-78df-90e8-1706d5161669",
            "wording": "Comme neuf",
            "position": 2,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01887365-e18e-7629-ae7c-8d83f08f453a",
            "wording": "Reconditionné",
            "position": 3,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01887366-0ba9-71d9-b3b0-04207cbf6239",
            "wording": "Très bon état",
            "position": 4,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01887366-a5c4-7458-a366-61411943cd49",
            "wording": "Bon état",
            "position": 5,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018877f6-b256-72f3-a9fa-ecc2a65d548d",
            "wording": "Etat satisfaisant",
            "position": 6,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018b7fed-4602-7d0b-b7b7-d1d04a72a3de",
            "wording": "Non fonctionnel",
            "position": 7,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018b7fed-a28d-74d4-af21-5c083ba5273a",
            "wording": "Pour pièces",
            "position": 8,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/product-states

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/product-states

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/product-states" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-states"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/product-states

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

State label. Example: architecto

position   integer  optional    

optional Display order. Example: 16

GET api/v1/reference/product-states/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/product-states/01887365-7ed2-78df-90e8-1706d5161669" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-states/01887365-7ed2-78df-90e8-1706d5161669"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "01887365-7ed2-78df-90e8-1706d5161669",
        "wording": "Comme neuf",
        "position": 2,
        "created_at": "2026-07-17T18:03:38.000000Z",
        "updated_at": "2026-07-17T18:03:38.000000Z"
    }
}
 

Request      

GET api/v1/reference/product-states/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product state. Example: 01887365-7ed2-78df-90e8-1706d5161669

PUT api/v1/reference/product-states/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/product-states/01887365-7ed2-78df-90e8-1706d5161669" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-states/01887365-7ed2-78df-90e8-1706d5161669"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/product-states/{id}

PATCH api/v1/reference/product-states/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product state. Example: 01887365-7ed2-78df-90e8-1706d5161669

Body Parameters

wording   string     

State label. Example: architecto

position   integer  optional    

optional Display order. Example: 16

DELETE api/v1/reference/product-states/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/product-states/01887365-7ed2-78df-90e8-1706d5161669" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-states/01887365-7ed2-78df-90e8-1706d5161669"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/product-states/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product state. Example: 01887365-7ed2-78df-90e8-1706d5161669

GET api/v1/reference/product-conditions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/product-conditions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "Enregistrer et Publier plus tard",
            "position": 1,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-72a3-bfb7-6cf69221cc50",
            "wording": "Publier Immédiatement",
            "position": 2,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "indisponible",
            "position": 3,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "en cours de vente",
            "position": 4,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7eb1-90d8-f97383d6d85f",
            "wording": "vendu",
            "position": 5,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7933-9f81-b609c20f5d58",
            "wording": "Mettre en pause",
            "position": 6,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-713d-8a90-63990fbd4058",
            "wording": "don",
            "position": 7,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7882-a019-6a6f3d629460",
            "wording": "troc",
            "position": 8,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7c72-b786-bbc728962a2f",
            "wording": "débarras",
            "position": 9,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018b7fed-a28d-74d4-af21-5c083ba5273a",
            "wording": "bloquer",
            "position": 10,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01887366-a5c4-7458-a366-61411943cd49",
            "wording": "analyse en cours",
            "position": 11,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "019320fd-f2ef-7601-8848-adf605f94e35",
            "wording": "Publier pour lot de produit",
            "position": 12,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/product-conditions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/product-conditions

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/product-conditions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Condition label. Example: architecto

position   integer  optional    

optional Display order. Example: 16

GET api/v1/reference/product-conditions/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/product-conditions/018d1386-602e-7592-b68b-38d49c990786" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions/018d1386-602e-7592-b68b-38d49c990786"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018d1386-602e-7592-b68b-38d49c990786",
        "wording": "indisponible",
        "position": 3,
        "created_at": "2026-07-17T18:03:38.000000Z",
        "updated_at": "2026-07-17T18:03:38.000000Z"
    }
}
 

Request      

GET api/v1/reference/product-conditions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product condition. Example: 018d1386-602e-7592-b68b-38d49c990786

PUT api/v1/reference/product-conditions/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions/018d1386-602e-7592-b68b-38d49c990786" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions/018d1386-602e-7592-b68b-38d49c990786"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/product-conditions/{id}

PATCH api/v1/reference/product-conditions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product condition. Example: 018d1386-602e-7592-b68b-38d49c990786

Body Parameters

wording   string     

Condition label. Example: architecto

position   integer  optional    

optional Display order. Example: 16

DELETE api/v1/reference/product-conditions/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions/018d1386-602e-7592-b68b-38d49c990786" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/product-conditions/018d1386-602e-7592-b68b-38d49c990786"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/product-conditions/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the product condition. Example: 018d1386-602e-7592-b68b-38d49c990786

GET api/v1/reference/reservation-statuses

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018d1386-602e-7592-b68b-38d49c990786",
            "wording": "En attente",
            "position": 1,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7120-bc33-f571846e065e",
            "wording": "En attente",
            "position": 1,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-72a3-bfb7-6cf69221cc50",
            "wording": "Validée",
            "position": 2,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1386-602e-7947-a0b1-3af4501dddbd",
            "wording": "Annuler",
            "position": 3,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018d1693-0886-7abf-935d-4773c99f8203",
            "wording": "Expirée",
            "position": 4,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "018de9e0-04f3-7d30-a5b3-544ec9ce16e6",
            "wording": "Acheté",
            "position": 5,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        },
        {
            "id": "01915afb-07ed-77bb-bb9c-6ca6d38f6398",
            "wording": "sellercancel",
            "position": 99,
            "created_at": "2026-07-17T18:03:38.000000Z",
            "updated_at": "2026-07-17T18:03:38.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/reservation-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/reservation-statuses

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/reservation-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Status wording. Example: architecto

position   integer  optional    

nullable Legacy Symfony workflow position. Example: 16

GET api/v1/reference/reservation-statuses/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses/018d1386-602e-7947-a0b1-3af4501dddbd" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses/018d1386-602e-7947-a0b1-3af4501dddbd"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "018d1386-602e-7947-a0b1-3af4501dddbd",
        "wording": "Annuler",
        "position": 3,
        "created_at": "2026-07-17T18:03:38.000000Z",
        "updated_at": "2026-07-17T18:03:38.000000Z"
    }
}
 

Request      

GET api/v1/reference/reservation-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation status. Example: 018d1386-602e-7947-a0b1-3af4501dddbd

PUT api/v1/reference/reservation-statuses/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses/018d1386-602e-7947-a0b1-3af4501dddbd" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses/018d1386-602e-7947-a0b1-3af4501dddbd"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/reservation-statuses/{id}

PATCH api/v1/reference/reservation-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation status. Example: 018d1386-602e-7947-a0b1-3af4501dddbd

Body Parameters

wording   string     

Status wording. Example: architecto

position   integer  optional    

nullable Legacy Symfony workflow position. Example: 16

DELETE api/v1/reference/reservation-statuses/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses/018d1386-602e-7947-a0b1-3af4501dddbd" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/reservation-statuses/018d1386-602e-7947-a0b1-3af4501dddbd"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/reservation-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation status. Example: 018d1386-602e-7947-a0b1-3af4501dddbd

GET api/v1/reference/command-seller-statuses

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-a80f-7211-866d-2931a6897dfb",
            "wording": "En cours",
            "position": 1,
            "created_at": "2026-07-08T15:48:33.000000Z",
            "updated_at": "2026-07-08T15:48:33.000000Z"
        },
        {
            "id": "019f426a-a812-7329-845b-85372ec2df3f",
            "wording": "En attente",
            "position": 2,
            "created_at": "2026-07-08T15:48:33.000000Z",
            "updated_at": "2026-07-08T15:48:33.000000Z"
        },
        {
            "id": "019f426a-a814-71b0-8a1b-24920804a74d",
            "wording": "Terminee",
            "position": 3,
            "created_at": "2026-07-08T15:48:33.000000Z",
            "updated_at": "2026-07-08T15:48:33.000000Z"
        },
        {
            "id": "019f426a-a816-73b6-a4ba-d8018ddb343e",
            "wording": "Annulee",
            "position": 4,
            "created_at": "2026-07-08T15:48:33.000000Z",
            "updated_at": "2026-07-08T15:48:33.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/command-seller-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/command-seller-statuses

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/command-seller-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Status wording. Example: architecto

position   integer  optional    

nullable Workflow position. Example: 16

GET api/v1/reference/command-seller-statuses/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses/019f426a-a80f-7211-866d-2931a6897dfb" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses/019f426a-a80f-7211-866d-2931a6897dfb"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-a80f-7211-866d-2931a6897dfb",
        "wording": "En cours",
        "position": 1,
        "created_at": "2026-07-08T15:48:33.000000Z",
        "updated_at": "2026-07-08T15:48:33.000000Z"
    }
}
 

Request      

GET api/v1/reference/command-seller-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command seller status. Example: 019f426a-a80f-7211-866d-2931a6897dfb

PUT api/v1/reference/command-seller-statuses/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses/019f426a-a80f-7211-866d-2931a6897dfb" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses/019f426a-a80f-7211-866d-2931a6897dfb"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/command-seller-statuses/{id}

PATCH api/v1/reference/command-seller-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command seller status. Example: 019f426a-a80f-7211-866d-2931a6897dfb

Body Parameters

wording   string     

Status wording. Example: architecto

position   integer  optional    

nullable Workflow position. Example: 16

DELETE api/v1/reference/command-seller-statuses/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses/019f426a-a80f-7211-866d-2931a6897dfb" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/command-seller-statuses/019f426a-a80f-7211-866d-2931a6897dfb"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/command-seller-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the command seller status. Example: 019f426a-a80f-7211-866d-2931a6897dfb

GET api/v1/reference/stock-movements

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/stock-movements" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-a9cb-73bb-b1f2-cdfb6e9a1041",
            "wording": "adjustment",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9c1-706f-a343-e17d70bf0c18",
            "wording": "entry",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9c3-732d-b32d-2a99703f683e",
            "wording": "exit",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9c6-711d-9f5c-3bcb28179a65",
            "wording": "reservation",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9ca-7193-b17f-3bd15905c86f",
            "wording": "return",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9c8-70a1-a06c-02066f0279a1",
            "wording": "sale",
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/stock-movements

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/stock-movements

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/stock-movements

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Movement label. Example: architecto

GET api/v1/reference/stock-movements/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/stock-movements/019f426a-a9c1-706f-a343-e17d70bf0c18" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements/019f426a-a9c1-706f-a343-e17d70bf0c18"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-a9c1-706f-a343-e17d70bf0c18",
        "wording": "entry",
        "created_at": "2026-07-08T15:48:34.000000Z",
        "updated_at": "2026-07-08T15:48:34.000000Z"
    }
}
 

Request      

GET api/v1/reference/stock-movements/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the stock movement. Example: 019f426a-a9c1-706f-a343-e17d70bf0c18

PUT api/v1/reference/stock-movements/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements/019f426a-a9c1-706f-a343-e17d70bf0c18" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements/019f426a-a9c1-706f-a343-e17d70bf0c18"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/stock-movements/{id}

PATCH api/v1/reference/stock-movements/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the stock movement. Example: 019f426a-a9c1-706f-a343-e17d70bf0c18

Body Parameters

wording   string     

Movement label. Example: architecto

DELETE api/v1/reference/stock-movements/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements/019f426a-a9c1-706f-a343-e17d70bf0c18" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/stock-movements/019f426a-a9c1-706f-a343-e17d70bf0c18"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/stock-movements/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the stock movement. Example: 019f426a-a9c1-706f-a343-e17d70bf0c18

GET api/v1/reference/source-product-in-carts

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f426a-a9aa-70b3-a041-c08c053d9e69",
            "wording": "négociation",
            "position": 1,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9ae-73ff-9337-2972c217c1af",
            "wording": "enchère",
            "position": 2,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9b1-7343-b76b-058b48f529d0",
            "wording": "promotion",
            "position": 3,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9b4-7081-94f1-8c82d726db80",
            "wording": "vente standard",
            "position": 4,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9b7-730f-a41f-a243ad0c41b3",
            "wording": "reservation",
            "position": 5,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9bb-70e6-b279-8f221ab1ddc6",
            "wording": "don",
            "position": 6,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        },
        {
            "id": "019f426a-a9be-72b0-bc41-a0ce3c1f2d9a",
            "wording": "Cadeau",
            "position": 7,
            "created_at": "2026-07-08T15:48:34.000000Z",
            "updated_at": "2026-07-08T15:48:34.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/source-product-in-carts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/source-product-in-carts

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/source-product-in-carts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Source label. Example: architecto

position   integer  optional    

optional Display order. Example: 16

GET api/v1/reference/source-product-in-carts/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts/019f426a-a9aa-70b3-a041-c08c053d9e69" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts/019f426a-a9aa-70b3-a041-c08c053d9e69"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f426a-a9aa-70b3-a041-c08c053d9e69",
        "wording": "négociation",
        "position": 1,
        "created_at": "2026-07-08T15:48:34.000000Z",
        "updated_at": "2026-07-08T15:48:34.000000Z"
    }
}
 

Request      

GET api/v1/reference/source-product-in-carts/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the source product in cart. Example: 019f426a-a9aa-70b3-a041-c08c053d9e69

PUT api/v1/reference/source-product-in-carts/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts/019f426a-a9aa-70b3-a041-c08c053d9e69" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"architecto\",
    \"position\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts/019f426a-a9aa-70b3-a041-c08c053d9e69"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "architecto",
    "position": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/source-product-in-carts/{id}

PATCH api/v1/reference/source-product-in-carts/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the source product in cart. Example: 019f426a-a9aa-70b3-a041-c08c053d9e69

Body Parameters

wording   string     

Source label. Example: architecto

position   integer  optional    

optional Display order. Example: 16

DELETE api/v1/reference/source-product-in-carts/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts/019f426a-a9aa-70b3-a041-c08c053d9e69" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/source-product-in-carts/019f426a-a9aa-70b3-a041-c08c053d9e69"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/source-product-in-carts/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the source product in cart. Example: 019f426a-a9aa-70b3-a041-c08c053d9e69

GET api/v1/reference/unit-proposals

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/unit-proposals" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f7120-138c-73d1-b025-48d3af18e60f",
            "wording": "0,00 kg - 0,25 kg",
            "unit": "kg",
            "type": "weight",
            "min": "0.00",
            "max": "0.25"
        },
        {
            "id": "019f7120-1390-734a-92c9-d707d0940b05",
            "wording": "0,25 kg - 0,75 kg",
            "unit": "kg",
            "type": "weight",
            "min": "0.25",
            "max": "0.75"
        },
        {
            "id": "019f7120-1392-7353-b241-e46629332dcb",
            "wording": "0,75 kg - 1,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "0.75",
            "max": "1.00"
        },
        {
            "id": "019f7120-1394-70d6-a8b0-57d49b317a06",
            "wording": "1,00 kg - 2,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "1.00",
            "max": "2.00"
        },
        {
            "id": "019f7120-139d-70f3-830e-90304701619a",
            "wording": "10,00 kg - 15,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "10.00",
            "max": "15.00"
        },
        {
            "id": "019f7120-139f-738b-b76d-bfffc4927e49",
            "wording": "15,00 kg - 20,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "15.00",
            "max": "20.00"
        },
        {
            "id": "019f7120-1396-710e-b5f9-8f25466951ff",
            "wording": "2,00 kg - 3,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "2.00",
            "max": "3.00"
        },
        {
            "id": "019f7120-13a1-70fd-b799-230b8dfa7c9a",
            "wording": "25,00 kg - 30,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "25.00",
            "max": "30.00"
        },
        {
            "id": "019f7120-1398-736c-a502-954afe296a37",
            "wording": "3,00 kg - 5,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "3.00",
            "max": "5.00"
        },
        {
            "id": "019f7120-1399-7221-888a-ca06a03f9316",
            "wording": "5,00 kg - 7,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "5.00",
            "max": "7.00"
        },
        {
            "id": "019f7120-139b-71eb-b5cf-3a07f5e0f2c2",
            "wording": "7,00 kg - 10,00 kg",
            "unit": "kg",
            "type": "weight",
            "min": "7.00",
            "max": "10.00"
        }
    ]
}
 

Request      

GET api/v1/reference/unit-proposals

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/unit-proposals

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"0,00 kg - 0,25 kg\",
    \"unit\": \"kg\",
    \"type\": \"weight\",
    \"min\": \"0.00\",
    \"max\": \"0.25\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "0,00 kg - 0,25 kg",
    "unit": "kg",
    "type": "weight",
    "min": "0.00",
    "max": "0.25"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/unit-proposals

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Display label. Example: 0,00 kg - 0,25 kg

unit   string     

Unit symbol. Example: kg

type   string     

Proposal type. Example: weight

min   string     

Minimum value. Example: 0.00

max   string     

Maximum value. Example: 0.25

GET api/v1/reference/unit-proposals/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/unit-proposals/019f7120-138c-73d1-b025-48d3af18e60f" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals/019f7120-138c-73d1-b025-48d3af18e60f"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f7120-138c-73d1-b025-48d3af18e60f",
        "wording": "0,00 kg - 0,25 kg",
        "unit": "kg",
        "type": "weight",
        "min": "0.00",
        "max": "0.25"
    }
}
 

Request      

GET api/v1/reference/unit-proposals/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the unit proposal. Example: 019f7120-138c-73d1-b025-48d3af18e60f

PUT api/v1/reference/unit-proposals/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals/019f7120-138c-73d1-b025-48d3af18e60f" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"0,00 kg - 0,25 kg\",
    \"unit\": \"kg\",
    \"type\": \"weight\",
    \"min\": \"0.00\",
    \"max\": \"0.25\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals/019f7120-138c-73d1-b025-48d3af18e60f"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "0,00 kg - 0,25 kg",
    "unit": "kg",
    "type": "weight",
    "min": "0.00",
    "max": "0.25"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/unit-proposals/{id}

PATCH api/v1/reference/unit-proposals/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the unit proposal. Example: 019f7120-138c-73d1-b025-48d3af18e60f

Body Parameters

wording   string     

Display label. Example: 0,00 kg - 0,25 kg

unit   string     

Unit symbol. Example: kg

type   string     

Proposal type. Example: weight

min   string     

Minimum value. Example: 0.00

max   string     

Maximum value. Example: 0.25

DELETE api/v1/reference/unit-proposals/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals/019f7120-138c-73d1-b025-48d3af18e60f" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/unit-proposals/019f7120-138c-73d1-b025-48d3af18e60f"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/unit-proposals/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the unit proposal. Example: 019f7120-138c-73d1-b025-48d3af18e60f

RΓ©servations

POST api/v1/reservations/change-status

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reservations/change-status" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reservation_id\": \"architecto\",
    \"position\": 16,
    \"buyer_reason\": \"architecto\",
    \"seller_reason\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/change-status"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "reservation_id": "architecto",
    "position": 16,
    "buyer_reason": "architecto",
    "seller_reason": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reservations/change-status

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

reservation_id   uuid     

Reservation UUID. Example: architecto

position   integer     

Target reservation status position from Symfony workflow. Example: 16

buyer_reason   string  optional    

nullable Buyer cancellation/refusal reason. Example: architecto

seller_reason   string  optional    

nullable Seller cancellation/refusal reason. Example: architecto

GET api/v1/reservations/history

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reservations/history" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/history"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/reservations/history

POST api/v1/reservations/history

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reservations/ask-extension

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reservations/ask-extension" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"architecto\",
    \"extension_date\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/ask-extension"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "architecto",
    "extension_date": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reservations/ask-extension

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   uuid     

Reservation UUID. Example: architecto

extension_date   datetime     

Requested extension date. Legacy extenxionDate is accepted. Example: architecto

POST api/v1/reservations/extension-decision

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reservations/extension-decision" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"architecto\",
    \"is_extended\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/extension-decision"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "architecto",
    "is_extended": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reservations/extension-decision

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   uuid     

Reservation UUID. Example: architecto

is_extended   string     

One-character decision flag. Example: architecto

GET api/v1/reservations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reservations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/reservations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reservations

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reservations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reservation_status_id\": \"architecto\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"cart_row_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"seller_id\": \"architecto\",
    \"quantity\": 16,
    \"client_note\": \"architecto\",
    \"seller_note\": \"architecto\",
    \"reservation_date\": \"2026-07-17T18:03:42\",
    \"reservation_deadline\": \"2052-08-09\",
    \"is_accepted\": \"n\",
    \"seller_reason\": \"architecto\",
    \"buyer_reason\": \"architecto\",
    \"extension_date\": \"2026-07-17T18:03:42\",
    \"is_extended\": \"n\",
    \"is_paid\": \"g\",
    \"is_abusive\": \"z\",
    \"motif\": \"architecto\",
    \"variants\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "reservation_status_id": "architecto",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "cart_row_id": "architecto",
    "buyer_id": "architecto",
    "seller_id": "architecto",
    "quantity": 16,
    "client_note": "architecto",
    "seller_note": "architecto",
    "reservation_date": "2026-07-17T18:03:42",
    "reservation_deadline": "2052-08-09",
    "is_accepted": "n",
    "seller_reason": "architecto",
    "buyer_reason": "architecto",
    "extension_date": "2026-07-17T18:03:42",
    "is_extended": "n",
    "is_paid": "g",
    "is_abusive": "z",
    "motif": "architecto",
    "variants": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reservations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

reservation_status_id   uuid     

Current reservation status UUID. Example: architecto

product_id   uuid  optional    

nullable Reserved product UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Reserved lot UUID. Example: architecto

cart_row_id   uuid  optional    

nullable Origin cart row UUID. Example: architecto

buyer_id   uuid  optional    

nullable Buyer UUID until user migration is complete. Example: architecto

seller_id   uuid  optional    

nullable Seller UUID until user migration is complete. Example: architecto

quantity   integer  optional    

Must be at least 1. Example: 16

client_note   string  optional    

Example: architecto

seller_note   string  optional    

Example: architecto

reservation_date   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:42

reservation_deadline   string  optional    

Must be a valid date. Must be a date after or equal to reservation_date. Example: 2052-08-09

is_accepted   string  optional    

Must be 1 character. Example: n

seller_reason   string  optional    

Example: architecto

buyer_reason   string  optional    

Example: architecto

extension_date   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:42

is_extended   string  optional    

Must be 1 character. Example: n

is_paid   string  optional    

Must be 1 character. Example: g

is_abusive   string  optional    

Must be 1 character. Example: z

motif   string  optional    

Example: architecto

variants   string[]  optional    

nullable Reserved product variants.

product_variant_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

quantity   integer  optional    

Must be at least 1. Example: 66

GET api/v1/reservations/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reservations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/reservations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation. Example: architecto

PUT api/v1/reservations/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reservations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reservation_status_id\": \"architecto\",
    \"product_id\": \"architecto\",
    \"product_lot_id\": \"architecto\",
    \"cart_row_id\": \"architecto\",
    \"buyer_id\": \"architecto\",
    \"seller_id\": \"architecto\",
    \"quantity\": 16,
    \"client_note\": \"architecto\",
    \"seller_note\": \"architecto\",
    \"reservation_date\": \"2026-07-17T18:03:42\",
    \"reservation_deadline\": \"2052-08-09\",
    \"is_accepted\": \"n\",
    \"seller_reason\": \"architecto\",
    \"buyer_reason\": \"architecto\",
    \"extension_date\": \"2026-07-17T18:03:42\",
    \"is_extended\": \"n\",
    \"is_paid\": \"g\",
    \"is_abusive\": \"z\",
    \"motif\": \"architecto\",
    \"variants\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "reservation_status_id": "architecto",
    "product_id": "architecto",
    "product_lot_id": "architecto",
    "cart_row_id": "architecto",
    "buyer_id": "architecto",
    "seller_id": "architecto",
    "quantity": 16,
    "client_note": "architecto",
    "seller_note": "architecto",
    "reservation_date": "2026-07-17T18:03:42",
    "reservation_deadline": "2052-08-09",
    "is_accepted": "n",
    "seller_reason": "architecto",
    "buyer_reason": "architecto",
    "extension_date": "2026-07-17T18:03:42",
    "is_extended": "n",
    "is_paid": "g",
    "is_abusive": "z",
    "motif": "architecto",
    "variants": [
        "architecto"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reservations/{id}

PATCH api/v1/reservations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation. Example: architecto

Body Parameters

reservation_status_id   uuid     

Current reservation status UUID. Example: architecto

product_id   uuid  optional    

nullable Reserved product UUID. Example: architecto

product_lot_id   uuid  optional    

nullable Reserved lot UUID. Example: architecto

cart_row_id   uuid  optional    

nullable Origin cart row UUID. Example: architecto

buyer_id   uuid  optional    

nullable Buyer UUID until user migration is complete. Example: architecto

seller_id   uuid  optional    

nullable Seller UUID until user migration is complete. Example: architecto

quantity   integer  optional    

Must be at least 1. Example: 16

client_note   string  optional    

Example: architecto

seller_note   string  optional    

Example: architecto

reservation_date   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:42

reservation_deadline   string  optional    

Must be a valid date. Must be a date after or equal to reservation_date. Example: 2052-08-09

is_accepted   string  optional    

Must be 1 character. Example: n

seller_reason   string  optional    

Example: architecto

buyer_reason   string  optional    

Example: architecto

extension_date   string  optional    

Must be a valid date. Example: 2026-07-17T18:03:42

is_extended   string  optional    

Must be 1 character. Example: n

is_paid   string  optional    

Must be 1 character. Example: g

is_abusive   string  optional    

Must be 1 character. Example: z

motif   string  optional    

Example: architecto

variants   string[]  optional    

nullable Reserved product variants.

product_variant_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

quantity   integer  optional    

Must be at least 1. Example: 66

DELETE api/v1/reservations/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reservations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reservations/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation. Example: architecto

GET api/v1/reservation-product-variants

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reservation-product-variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/reservation-product-variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reservation-product-variants

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reservation_id\": \"architecto\",
    \"product_variant_id\": \"architecto\",
    \"quantity\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "reservation_id": "architecto",
    "product_variant_id": "architecto",
    "quantity": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reservation-product-variants

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

reservation_id   uuid     

Reservation UUID. Example: architecto

product_variant_id   uuid  optional    

nullable Product variant UUID. Example: architecto

quantity   integer  optional    

nullable Reserved quantity for this variant. Example: 16

GET api/v1/reservation-product-variants/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reservation-product-variants/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/reservation-product-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation product variant. Example: architecto

PUT api/v1/reservation-product-variants/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reservation_id\": \"architecto\",
    \"product_variant_id\": \"architecto\",
    \"quantity\": 16
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "reservation_id": "architecto",
    "product_variant_id": "architecto",
    "quantity": 16
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reservation-product-variants/{id}

PATCH api/v1/reservation-product-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation product variant. Example: architecto

Body Parameters

reservation_id   uuid     

Reservation UUID. Example: architecto

product_variant_id   uuid  optional    

nullable Product variant UUID. Example: architecto

quantity   integer  optional    

nullable Reserved quantity for this variant. Example: 16

DELETE api/v1/reservation-product-variants/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reservation-product-variants/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reservation-product-variants/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the reservation product variant. Example: architecto

GET api/v1/notification-reservations

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-reservations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-reservations"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/notification-reservations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/notification-reservations/{notificationReservation_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/notification-reservations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-reservations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/notification-reservations/{notificationReservation_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationReservation_id   string     

The ID of the notificationReservation. Example: architecto

PUT api/v1/notification-reservations/{notificationReservation_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/notification-reservations/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_seen\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/notification-reservations/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_seen": "o"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/notification-reservations/{notificationReservation_id}

PATCH api/v1/notification-reservations/{notificationReservation_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

notificationReservation_id   string     

The ID of the notificationReservation. Example: architecto

Body Parameters

is_seen   string     

Example: o

Must be one of:
  • o
  • n

SantΓ© de l’API

GET api/v1/health

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/health" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/health"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "service": "Occaverse",
        "locale": "en",
        "environment": "local"
    }
}
 

Request      

GET api/v1/health

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/date

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/date" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/date"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "date": "2026-07-17T18:03",
        "timestamp": 1784311418,
        "dateGmt": "2026-07-17T18:03",
        "date_gmt": "2026-07-17T18:03"
    }
}
 

Request      

GET api/v1/date

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Services externes

Suggestions d'adresse

Recherche, complΓ©tion et extraction intelligente des adresses.

GET api/v1/addresse/suggestions

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/addresse/suggestions?query=123+Rue+Sainte-Catherine&identifier=ChIJN1t_tDeuEmsRUsoyG83frY4&country=ca&language=fr" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresse/suggestions"
);

const params = {
    "query": "123 Rue Sainte-Catherine",
    "identifier": "ChIJN1t_tDeuEmsRUsoyG83frY4",
    "country": "ca",
    "language": "fr",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/addresse/suggestions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

query   string  optional    

Texte saisi par l'utilisateur pour rechercher une adresse. Must not be greater than 255 characters. Example: 123 Rue Sainte-Catherine

identifier   string  optional    

Identifiant fournisseur utilisΓ© pour rΓ©cupΓ©rer le dΓ©tail d’une suggestion. Must not be greater than 255 characters. Example: ChIJN1t_tDeuEmsRUsoyG83frY4

country   string  optional    

Code pays utilisΓ© pour restreindre la recherche. Must not be greater than 10 characters. Example: ca

language   string  optional    

Langue de rΓ©ponse souhaitΓ©e. Must not be greater than 10 characters. Example: fr

GET api/v1/addresse/suggestions-2

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/addresse/suggestions-2?query=123+Rue+Sainte-Catherine&identifier=ChIJN1t_tDeuEmsRUsoyG83frY4&country=ca&language=fr" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresse/suggestions-2"
);

const params = {
    "query": "123 Rue Sainte-Catherine",
    "identifier": "ChIJN1t_tDeuEmsRUsoyG83frY4",
    "country": "ca",
    "language": "fr",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/addresse/suggestions-2

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

query   string  optional    

Texte saisi par l'utilisateur pour rechercher une adresse. Must not be greater than 255 characters. Example: 123 Rue Sainte-Catherine

identifier   string  optional    

Identifiant fournisseur utilisΓ© pour rΓ©cupΓ©rer le dΓ©tail d’une suggestion. Must not be greater than 255 characters. Example: ChIJN1t_tDeuEmsRUsoyG83frY4

country   string  optional    

Code pays utilisΓ© pour restreindre la recherche. Must not be greater than 10 characters. Example: ca

language   string  optional    

Langue de rΓ©ponse souhaitΓ©e. Must not be greater than 10 characters. Example: fr

GET api/v1/addresse/ia/get-address-line1

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/addresse/ia/get-address-line1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fullAddress\": \"123 Rue Sainte-Catherine O, MontrΓ©al, QC H3B 1A1, Canada\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresse/ia/get-address-line1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fullAddress": "123 Rue Sainte-Catherine O, MontrΓ©al, QC H3B 1A1, Canada"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/addresse/ia/get-address-line1

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

fullAddress   string     

Adresse complète à analyser pour extraire la première ligne d'adresse. Must not be greater than 500 characters. Example: 123 Rue Sainte-Catherine O, Montréal, QC H3B 1A1, Canada

Signalement et blocage

GET api/v1/content-report/reasons

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/content-report/reasons" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"seller_profile\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/content-report/reasons"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "type": "seller_profile"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/content-report/reasons

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

type   string  optional    

Example: seller_profile

Must be one of:
  • product
  • product_lot
  • seller_profile

POST api/v1/content-report/product

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/content-report/product" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"seller_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"reason_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"description\": \"Nihil accusantium harum mollitia modi deserunt.\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/content-report/product"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "seller_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "reason_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "description": "Nihil accusantium harum mollitia modi deserunt."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/content-report/product

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

reason_id   string     

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

description   string  optional    

Must not be greater than 2000 characters. Example: Nihil accusantium harum mollitia modi deserunt.

POST api/v1/content-report/product-lot

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/content-report/product-lot" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"seller_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"reason_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"description\": \"Nihil accusantium harum mollitia modi deserunt.\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/content-report/product-lot"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "seller_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "reason_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "description": "Nihil accusantium harum mollitia modi deserunt."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/content-report/product-lot

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

reason_id   string     

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

description   string  optional    

Must not be greater than 2000 characters. Example: Nihil accusantium harum mollitia modi deserunt.

POST api/v1/content-report/seller-profile

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/content-report/seller-profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"product_lot_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"seller_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"reason_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"description\": \"Nihil accusantium harum mollitia modi deserunt.\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/content-report/seller-profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "product_lot_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "seller_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "reason_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "description": "Nihil accusantium harum mollitia modi deserunt."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/content-report/seller-profile

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

product_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

product_lot_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

seller_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

reason_id   string     

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

description   string  optional    

Must not be greater than 2000 characters. Example: Nihil accusantium harum mollitia modi deserunt.

POST api/v1/user/block

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/user/block" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"user_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"userId\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user/block"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "user_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "userId": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/user/block

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

user_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

userId   uuid     

User to block or unblock. Example: architecto

POST api/v1/user/unblock

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/user/unblock" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"user_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"userId\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user/unblock"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "user_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "userId": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/user/unblock

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

user_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

userId   uuid     

User to block or unblock. Example: architecto

GET api/v1/user/blocked-list

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/user/blocked-list" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user/blocked-list"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/user/blocked-list

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Statistiques

GET api/v1/connect

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/connect" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/connect"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        "ok"
    ]
}
 

Request      

GET api/v1/connect

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/some-detail-product

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/some-detail-product" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"country\": \"g\",
    \"postalCode\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/some-detail-product"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "country": "g",
    "postalCode": "z"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "An internal server error occurred.",
    "code": "SERVER_ERROR",
    "errors": []
}
 

Request      

GET api/v1/some-detail-product

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

country   string  optional    

Must not be greater than 5 characters. Example: g

postalCode   string  optional    

Must not be greater than 30 characters. Example: z

GET api/v1/some-detail-user/{user_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/some-detail-user/019f426a-43a7-72da-8aa3-43caeedd1f39" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/some-detail-user/019f426a-43a7-72da-8aa3-43caeedd1f39"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "nbrCommand": 0,
        "nbrProduct": 0,
        "nbrProductLot": 0,
        "seller": {
            "follower": 0,
            "mark": 0
        }
    }
}
 

Request      

GET api/v1/some-detail-user/{user_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   string     

The ID of the user. Example: 019f426a-43a7-72da-8aa3-43caeedd1f39

GET api/v1/some-detail-seller

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/some-detail-seller" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"isSeller\": \"o\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/some-detail-seller"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "isSeller": "o"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "id": [
            "The selected id is invalid."
        ]
    }
}
 

Request      

GET api/v1/some-detail-seller

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

isSeller   string  optional    

Example: o

Must be one of:
  • o
  • n

GET api/v1/stats/products/details

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/stats/products/details" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"country\": \"g\",
    \"postalCode\": \"z\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/stats/products/details"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "country": "g",
    "postalCode": "z"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "An internal server error occurred.",
    "code": "SERVER_ERROR",
    "errors": []
}
 

Request      

GET api/v1/stats/products/details

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

country   string  optional    

Must not be greater than 5 characters. Example: g

postalCode   string  optional    

Must not be greater than 30 characters. Example: z

GET api/v1/stats/users/{user_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/stats/users/019f426a-43a7-72da-8aa3-43caeedd1f39" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/stats/users/019f426a-43a7-72da-8aa3-43caeedd1f39"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "nbrCommand": 0,
        "nbrProduct": 0,
        "nbrProductLot": 0,
        "seller": {
            "follower": 0,
            "mark": 0
        }
    }
}
 

Request      

GET api/v1/stats/users/{user_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   string     

The ID of the user. Example: 019f426a-43a7-72da-8aa3-43caeedd1f39

GET api/v1/stats/sellers/details

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/stats/sellers/details" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"isSeller\": \"n\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/stats/sellers/details"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "isSeller": "n"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (422):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The submitted data is invalid.",
    "code": "VALIDATION_FAILED",
    "errors": {
        "id": [
            "The selected id is invalid."
        ]
    }
}
 

Request      

GET api/v1/stats/sellers/details

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

isSeller   string  optional    

Example: n

Must be one of:
  • o
  • n

Suppression de compte

GET api/v1/account-deletion-reasons

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/account-deletion-reasons" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/account-deletion-reasons

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/account-deletion-reasons

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"additional_details\": \"architecto\",
    \"created_by_id\": \"architecto\",
    \"reason_field_ids\": [
        \"architecto\"
    ],
    \"is_delete\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "additional_details": "architecto",
    "created_by_id": "architecto",
    "reason_field_ids": [
        "architecto"
    ],
    "is_delete": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/account-deletion-reasons

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

additional_details   string  optional    

optional Free-text details. Example: architecto

created_by_id   uuid  optional    

optional User requesting account deletion. Legacy createdBy is accepted. Example: architecto

reason_field_ids   string[]  optional    

optional Selected reason-field UUIDs. Legacy reasonField is accepted.

is_delete   string  optional    

optional Legacy active flag, usually o or n. Example: architecto

GET api/v1/account-deletion-reasons/{accountDeletionReason_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/account-deletion-reasons/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/account-deletion-reasons/{accountDeletionReason_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

accountDeletionReason_id   string     

The ID of the accountDeletionReason. Example: architecto

PUT api/v1/account-deletion-reasons/{accountDeletionReason_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"additional_details\": \"architecto\",
    \"created_by_id\": \"architecto\",
    \"reason_field_ids\": [
        \"architecto\"
    ],
    \"is_delete\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "additional_details": "architecto",
    "created_by_id": "architecto",
    "reason_field_ids": [
        "architecto"
    ],
    "is_delete": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/account-deletion-reasons/{accountDeletionReason_id}

PATCH api/v1/account-deletion-reasons/{accountDeletionReason_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

accountDeletionReason_id   string     

The ID of the accountDeletionReason. Example: architecto

Body Parameters

additional_details   string  optional    

optional Free-text details. Example: architecto

created_by_id   uuid  optional    

optional User requesting account deletion. Legacy createdBy is accepted. Example: architecto

reason_field_ids   string[]  optional    

optional Selected reason-field UUIDs. Legacy reasonField is accepted.

is_delete   string  optional    

optional Legacy active flag, usually o or n. Example: architecto

DELETE api/v1/account-deletion-reasons/{accountDeletionReason_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reasons/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/account-deletion-reasons/{accountDeletionReason_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

accountDeletionReason_id   string     

The ID of the accountDeletionReason. Example: architecto

GET api/v1/account-deletion-reason-fields

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "019f7120-3202-7195-9332-5cedd83e1947",
            "translated_wording": "I no longer wish to use the platform",
            "has_additional_details": false,
            "is_delete": "n"
        },
        {
            "id": "019f7120-320a-70f5-8100-dcdf332e3387",
            "translated_wording": "I cannot find what I am looking for",
            "has_additional_details": false,
            "is_delete": "n"
        },
        {
            "id": "019f7120-3211-708c-82a4-8ec6a72f9697",
            "translated_wording": "The fees are too high",
            "has_additional_details": false,
            "is_delete": "n"
        },
        {
            "id": "019f7120-3217-73ed-8ede-3764592cc8ea",
            "translated_wording": "Security or privacy concerns",
            "has_additional_details": true,
            "is_delete": "n"
        },
        {
            "id": "019f7120-321c-7199-bb1d-1f8ab70b0cbd",
            "translated_wording": "I receive too many notifications",
            "has_additional_details": false,
            "is_delete": "n"
        },
        {
            "id": "019f7120-3221-7300-a078-ee7b15955cdf",
            "translated_wording": "I created a new account",
            "has_additional_details": false,
            "is_delete": "n"
        },
        {
            "id": "019f7120-3227-7040-b6b1-17d75f66e11a",
            "translated_wording": "I am not satisfied with the service",
            "has_additional_details": true,
            "is_delete": "n"
        },
        {
            "id": "019f7120-322b-727a-a42a-c8055386e8ad",
            "translated_wording": "Other",
            "has_additional_details": true,
            "is_delete": "n"
        },
        {
            "id": "019f7120-3207-716c-83eb-5a98724623b8",
            "translated_wording": "I no longer wish to use the platform",
            "has_additional_details": false,
            "is_delete": "o"
        },
        {
            "id": "019f7120-320d-72e4-b72f-eaf647277527",
            "translated_wording": "I cannot find what I am looking for",
            "has_additional_details": false,
            "is_delete": "o"
        },
        {
            "id": "019f7120-3213-7289-9466-35734ac5f1f1",
            "translated_wording": "The fees are too high",
            "has_additional_details": false,
            "is_delete": "o"
        },
        {
            "id": "019f7120-321a-7300-bed3-6eaa00f0dc01",
            "translated_wording": "Security or privacy concerns",
            "has_additional_details": true,
            "is_delete": "o"
        },
        {
            "id": "019f7120-321e-7168-9b20-7f1876d30fdb",
            "translated_wording": "I receive too many notifications",
            "has_additional_details": false,
            "is_delete": "o"
        },
        {
            "id": "019f7120-3225-737b-9093-efcd530ceab0",
            "translated_wording": "I created a new account",
            "has_additional_details": false,
            "is_delete": "o"
        },
        {
            "id": "019f7120-3229-7257-9784-28d13fdd95f0",
            "translated_wording": "I am not satisfied with the service",
            "has_additional_details": true,
            "is_delete": "o"
        },
        {
            "id": "019f7120-322d-717a-894b-b2030cbfb06a",
            "translated_wording": "Other",
            "has_additional_details": true,
            "is_delete": "o"
        }
    ]
}
 

Request      

GET api/v1/account-deletion-reason-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/account-deletion-reason-fields

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": {
        \"fr\": \"architecto\",
        \"en\": \"architecto\"
    },
    \"position\": 16,
    \"has_additional_details\": false,
    \"is_delete\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": {
        "fr": "architecto",
        "en": "architecto"
    },
    "position": 16,
    "has_additional_details": false,
    "is_delete": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/account-deletion-reason-fields

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   object     

Localized wording, for example {"fr":"...", "en":"..."}.

fr   string  optional    

Example: architecto

en   string  optional    

Example: architecto

position   integer     

Display order. Example: 16

has_additional_details   boolean  optional    

optional Whether free text is expected. Example: false

is_delete   string  optional    

optional Legacy active flag, usually o or n. Example: architecto

GET api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields/019f7120-3202-7195-9332-5cedd83e1947" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields/019f7120-3202-7195-9332-5cedd83e1947"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "019f7120-3202-7195-9332-5cedd83e1947",
        "translated_wording": "I no longer wish to use the platform",
        "has_additional_details": false,
        "is_delete": "n"
    }
}
 

Request      

GET api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

accountDeletionReasonField_id   string     

The ID of the accountDeletionReasonField. Example: 019f7120-3202-7195-9332-5cedd83e1947

PUT api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields/019f7120-3202-7195-9332-5cedd83e1947" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": {
        \"fr\": \"architecto\",
        \"en\": \"architecto\"
    },
    \"position\": 16,
    \"has_additional_details\": false,
    \"is_delete\": \"architecto\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields/019f7120-3202-7195-9332-5cedd83e1947"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": {
        "fr": "architecto",
        "en": "architecto"
    },
    "position": 16,
    "has_additional_details": false,
    "is_delete": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

PATCH api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

accountDeletionReasonField_id   string     

The ID of the accountDeletionReasonField. Example: 019f7120-3202-7195-9332-5cedd83e1947

Body Parameters

wording   object     

Localized wording, for example {"fr":"...", "en":"..."}.

fr   string  optional    

Example: architecto

en   string  optional    

Example: architecto

position   integer     

Display order. Example: 16

has_additional_details   boolean  optional    

optional Whether free text is expected. Example: false

is_delete   string  optional    

optional Legacy active flag, usually o or n. Example: architecto

DELETE api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields/019f7120-3202-7195-9332-5cedd83e1947" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/account-deletion-reason-fields/019f7120-3202-7195-9332-5cedd83e1947"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/account-deletion-reason-fields/{accountDeletionReasonField_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

accountDeletionReasonField_id   string     

The ID of the accountDeletionReasonField. Example: 019f7120-3202-7195-9332-5cedd83e1947

Utilisateurs et comptes

GET api/v1/user/activity/{profile}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/user/activity/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"profile\": \"buyer\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/user/activity/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "profile": "buyer"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/user/activity/{profile}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

profile   string     

Example: architecto

Body Parameters

profile   string     

Example: buyer

Must be one of:
  • buyer
  • seller

POST api/v1/users/activate

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/activate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/activate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/users/activate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/users/deactivate

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/deactivate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/deactivate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/users/deactivate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/users/account/edit

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/account/edit" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "firstname=b"\
    --form "lastname=n"\
    --form "username=g"\
    --form "email=rowan.gulgowski@example.com"\
    --form "telephone=d"\
    --form "language=fr"\
    --form "currency=CAD"\
    --form "light_theme=o"\
    --form "device_id=l"\
    --form "is_allowed_notifications=o"\
    --form "has_enabled_colissimo_pdr=o"\
    --form "profile_picture=@/tmp/phpui4TxX" \
    --form "cover_picture=@/tmp/phpd1elTd" 
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/edit"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('firstname', 'b');
body.append('lastname', 'n');
body.append('username', 'g');
body.append('email', 'rowan.gulgowski@example.com');
body.append('telephone', 'd');
body.append('language', 'fr');
body.append('currency', 'CAD');
body.append('light_theme', 'o');
body.append('device_id', 'l');
body.append('is_allowed_notifications', 'o');
body.append('has_enabled_colissimo_pdr', 'o');
body.append('profile_picture', document.querySelector('input[name="profile_picture"]').files[0]);
body.append('cover_picture', document.querySelector('input[name="cover_picture"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/users/account/edit

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

firstname   string  optional    

Must not be greater than 255 characters. Example: b

lastname   string  optional    

Must not be greater than 255 characters. Example: n

username   string  optional    

Must not be greater than 255 characters. Example: g

email   string  optional    

Must be a valid email address. Must not be greater than 180 characters. Example: rowan.gulgowski@example.com

telephone   string  optional    

Must not be greater than 50 characters. Example: d

language   string  optional    

Example: fr

Must be one of:
  • fr
  • en
currency   string  optional    

Example: CAD

Must be one of:
  • CAD
  • XOF
  • EUR
  • USD
light_theme   string  optional    

Example: o

Must be one of:
  • o
  • n
device_id   string  optional    

Must not be greater than 255 characters. Example: l

is_allowed_notifications   string  optional    

Example: o

Must be one of:
  • o
  • n
has_enabled_colissimo_pdr   string  optional    

Example: o

Must be one of:
  • o
  • n
profile_picture   file  optional    

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpui4TxX

cover_picture   file  optional    

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpd1elTd

DELETE api/v1/users/account/delete

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/users/account/delete" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/delete"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/users/account/delete

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/users/account/notification-preferences

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/users/account/notification-preferences" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"billing_app_notification\": false,
    \"billing_email_notification\": true,
    \"regulation_app_notification\": true,
    \"regulation_email_notification\": true,
    \"compliance_app_notification\": true,
    \"compliance_email_notification\": true,
    \"support_app_notification\": false,
    \"support_email_notification\": true,
    \"maintenance_app_notification\": true,
    \"maintenance_email_notification\": true,
    \"promotional_app_notification\": true
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/notification-preferences"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "billing_app_notification": false,
    "billing_email_notification": true,
    "regulation_app_notification": true,
    "regulation_email_notification": true,
    "compliance_app_notification": true,
    "compliance_email_notification": true,
    "support_app_notification": false,
    "support_email_notification": true,
    "maintenance_app_notification": true,
    "maintenance_email_notification": true,
    "promotional_app_notification": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/users/account/notification-preferences

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

billing_app_notification   boolean  optional    

Example: false

billing_email_notification   boolean  optional    

Example: true

regulation_app_notification   boolean  optional    

Example: true

regulation_email_notification   boolean  optional    

Example: true

compliance_app_notification   boolean  optional    

Example: true

compliance_email_notification   boolean  optional    

Example: true

support_app_notification   boolean  optional    

Example: false

support_email_notification   boolean  optional    

Example: true

maintenance_app_notification   boolean  optional    

Example: true

maintenance_email_notification   boolean  optional    

Example: true

promotional_app_notification   boolean  optional    

Example: true

GET api/v1/users/account/activities

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/activities" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/activities"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/activities

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/become-seller

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/become-seller" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"hasAddress\": false,
    \"city\": \"b\",
    \"postal_code\": \"n\",
    \"street\": \"g\",
    \"telephone\": \"z\",
    \"is_default\": \"o\",
    \"complement_address\": \"m\",
    \"address_complete\": \"architecto\",
    \"province\": \"architecto\",
    \"province_name\": \"architecto\",
    \"province_code\": \"ngzmiy\",
    \"country_code\": \"vdljni\",
    \"country_name\": \"k\",
    \"country_id\": \"architecto\",
    \"country_indicative\": \"ngzm\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/become-seller"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "hasAddress": false,
    "city": "b",
    "postal_code": "n",
    "street": "g",
    "telephone": "z",
    "is_default": "o",
    "complement_address": "m",
    "address_complete": "architecto",
    "province": "architecto",
    "province_name": "architecto",
    "province_code": "ngzmiy",
    "country_code": "vdljni",
    "country_name": "k",
    "country_id": "architecto",
    "country_indicative": "ngzm"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/become-seller

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

hasAddress   boolean     

Example: false

city   string  optional    

This field is required when hasAddress is false. Must not be greater than 255 characters. Example: b

postal_code   string  optional    

This field is required when hasAddress is false. Must not be greater than 255 characters. Example: n

street   string  optional    

This field is required when hasAddress is false. Must not be greater than 255 characters. Example: g

telephone   string  optional    

This field is required when hasAddress is false. Must not be greater than 255 characters. Example: z

is_default   string  optional    

Example: o

Must be one of:
  • o
  • n
complement_address   string  optional    

Must not be greater than 255 characters. Example: m

address_complete   string  optional    

Example: architecto

province   string  optional    

Example: architecto

province_name   string  optional    

Example: architecto

province_code   string  optional    

Must not be greater than 10 characters. Example: ngzmiy

country_code   string  optional    

Must not be greater than 10 characters. Example: vdljni

country_name   string  optional    

Must not be greater than 255 characters. Example: k

country_id   string  optional    

Example: architecto

country_indicative   string  optional    

Must not be greater than 4 characters. Example: ngzm

GET api/v1/roles

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/roles" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/roles"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "ROLE_USER": "Utilisateur standard",
        "ROLE_ACHETEUR": "Acheteur",
        "ROLE_VENDEUR": "Vendeur",
        "ROLE_ADMIN": "Administrateur",
        "ROLE_SUPER_ADMIN": "Super administrateur",
        "ROLE_CONTROLLEUR": "Administrateur contrôleur"
    }
}
 

Request      

GET api/v1/roles

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/addresses

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/addresses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/addresses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/addresses

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/addresses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"address_type_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"street\": \"m\",
    \"postal_code\": \"i\",
    \"city\": \"y\",
    \"is_default\": \"n\",
    \"complement_address\": \"v\",
    \"address_complete\": \"architecto\",
    \"province\": \"architecto\",
    \"province_name\": \"architecto\",
    \"province_code\": \"ngzmiy\",
    \"country_code\": \"vdljni\",
    \"country_name\": \"k\",
    \"country_id\": \"architecto\",
    \"telephone\": \"n\",
    \"country_indicative\": \"gzmi\",
    \"address_line1\": \"y\",
    \"address_line2\": \"v\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "address_type_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "street": "m",
    "postal_code": "i",
    "city": "y",
    "is_default": "n",
    "complement_address": "v",
    "address_complete": "architecto",
    "province": "architecto",
    "province_name": "architecto",
    "province_code": "ngzmiy",
    "country_code": "vdljni",
    "country_name": "k",
    "country_id": "architecto",
    "telephone": "n",
    "country_indicative": "gzmi",
    "address_line1": "y",
    "address_line2": "v"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/addresses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

address_type_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

street   string     

Must not be greater than 255 characters. Example: m

postal_code   string  optional    

Must not be greater than 255 characters. Example: i

city   string     

Must not be greater than 255 characters. Example: y

is_default   string  optional    

Example: n

Must be one of:
  • o
  • n
complement_address   string  optional    

Must not be greater than 255 characters. Example: v

address_complete   string  optional    

Example: architecto

province   string  optional    

Example: architecto

province_name   string  optional    

Example: architecto

province_code   string  optional    

Must not be greater than 10 characters. Example: ngzmiy

country_code   string  optional    

Must not be greater than 10 characters. Example: vdljni

country_name   string  optional    

Must not be greater than 255 characters. Example: k

country_id   string  optional    

Example: architecto

telephone   string     

Must not be greater than 255 characters. Example: n

country_indicative   string  optional    

Must not be greater than 4 characters. Example: gzmi

address_line1   string  optional    

Must not be greater than 255 characters. Example: y

address_line2   string  optional    

Must not be greater than 255 characters. Example: v

GET api/v1/addresses/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/addresses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/addresses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the address. Example: architecto

PUT api/v1/addresses/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/addresses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"address_type_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"street\": \"m\",
    \"postal_code\": \"i\",
    \"city\": \"y\",
    \"is_default\": \"o\",
    \"complement_address\": \"v\",
    \"address_complete\": \"architecto\",
    \"province\": \"architecto\",
    \"province_name\": \"architecto\",
    \"province_code\": \"ngzmiy\",
    \"country_code\": \"vdljni\",
    \"country_name\": \"k\",
    \"country_id\": \"architecto\",
    \"telephone\": \"n\",
    \"country_indicative\": \"gzmi\",
    \"address_line1\": \"y\",
    \"address_line2\": \"v\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "address_type_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "street": "m",
    "postal_code": "i",
    "city": "y",
    "is_default": "o",
    "complement_address": "v",
    "address_complete": "architecto",
    "province": "architecto",
    "province_name": "architecto",
    "province_code": "ngzmiy",
    "country_code": "vdljni",
    "country_name": "k",
    "country_id": "architecto",
    "telephone": "n",
    "country_indicative": "gzmi",
    "address_line1": "y",
    "address_line2": "v"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/addresses/{id}

PATCH api/v1/addresses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the address. Example: architecto

Body Parameters

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

address_type_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

street   string     

Must not be greater than 255 characters. Example: m

postal_code   string  optional    

Must not be greater than 255 characters. Example: i

city   string     

Must not be greater than 255 characters. Example: y

is_default   string  optional    

Example: o

Must be one of:
  • o
  • n
complement_address   string  optional    

Must not be greater than 255 characters. Example: v

address_complete   string  optional    

Example: architecto

province   string  optional    

Example: architecto

province_name   string  optional    

Example: architecto

province_code   string  optional    

Must not be greater than 10 characters. Example: ngzmiy

country_code   string  optional    

Must not be greater than 10 characters. Example: vdljni

country_name   string  optional    

Must not be greater than 255 characters. Example: k

country_id   string  optional    

Example: architecto

telephone   string     

Must not be greater than 255 characters. Example: n

country_indicative   string  optional    

Must not be greater than 4 characters. Example: gzmi

address_line1   string  optional    

Must not be greater than 255 characters. Example: y

address_line2   string  optional    

Must not be greater than 255 characters. Example: v

DELETE api/v1/addresses/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/addresses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/addresses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/addresses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the address. Example: architecto

GET api/v1/reference/address-types

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/address-types" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/address-types"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "018877f9-8c0b-72d6-bbae-eba0d0e93693",
            "wording": "Adresse principale",
            "position": 1,
            "created_at": "2026-07-17T18:03:39.000000Z",
            "updated_at": "2026-07-17T18:03:39.000000Z"
        },
        {
            "id": "0190b620-6ac6-7654-8771-e528f8843958",
            "wording": "Adresse secondaire",
            "position": 2,
            "created_at": "2024-07-15T11:06:56.000000Z",
            "updated_at": "2024-07-15T11:06:56.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/address-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/reference/address-types/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/address-types/0190b620-6ac6-7654-8771-e528f8843958" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/address-types/0190b620-6ac6-7654-8771-e528f8843958"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "0190b620-6ac6-7654-8771-e528f8843958",
        "wording": "Adresse secondaire",
        "position": 2,
        "created_at": "2024-07-15T11:06:56.000000Z",
        "updated_at": "2024-07-15T11:06:56.000000Z"
    }
}
 

Request      

GET api/v1/reference/address-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the address type. Example: 0190b620-6ac6-7654-8771-e528f8843958

Γ‰vΓ©nements

GET api/v1/users/account/event-products

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/users/account/event-products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/users/account/event-products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "Authentication is required.",
    "code": "UNAUTHENTICATED",
    "errors": []
}
 

Request      

GET api/v1/users/account/event-products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/event-products

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/event-products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/event-products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/event-products

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/event-products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"event_status_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"event_type_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"event_zone_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"product_id\": \"5707ca55-f609-3528-be8b-1baeaee1567e\",
    \"product_lot_id\": \"947170af-7488-3f30-a16d-723355a9502f\",
    \"transaction_id\": \"i\",
    \"is_paid\": true
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "event_status_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "event_type_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "event_zone_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "product_id": "5707ca55-f609-3528-be8b-1baeaee1567e",
    "product_lot_id": "947170af-7488-3f30-a16d-723355a9502f",
    "transaction_id": "i",
    "is_paid": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/event-products

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

event_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

event_type_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

event_zone_id   string     

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

product_id   string  optional    

This field is required when product_lot_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 5707ca55-f609-3528-be8b-1baeaee1567e

product_lot_id   string  optional    

This field is required when product_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 947170af-7488-3f30-a16d-723355a9502f

transaction_id   string  optional    

This field is required when is_system is not present. Must not be greater than 255 characters. Example: i

response_details   object  optional    
is_system   string  optional    
is_paid   boolean  optional    

Example: true

GET api/v1/event-products/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/event-products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/event-products/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event product. Example: architecto

PUT api/v1/event-products/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/event-products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"created_by_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"event_status_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"event_type_id\": \"977e5426-8d13-3824-86aa-b092f8ae52c5\",
    \"event_zone_id\": \"d6fa562b-acd5-35ff-babb-d11194d3737b\",
    \"product_id\": \"5707ca55-f609-3528-be8b-1baeaee1567e\",
    \"product_lot_id\": \"947170af-7488-3f30-a16d-723355a9502f\",
    \"transaction_id\": \"i\",
    \"is_paid\": false
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "created_by_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "event_status_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "event_type_id": "977e5426-8d13-3824-86aa-b092f8ae52c5",
    "event_zone_id": "d6fa562b-acd5-35ff-babb-d11194d3737b",
    "product_id": "5707ca55-f609-3528-be8b-1baeaee1567e",
    "product_lot_id": "947170af-7488-3f30-a16d-723355a9502f",
    "transaction_id": "i",
    "is_paid": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/event-products/{id}

PATCH api/v1/event-products/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event product. Example: architecto

Body Parameters

created_by_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

event_status_id   string  optional    

Must be a valid UUID. Must match an existing stored value. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

event_type_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 977e5426-8d13-3824-86aa-b092f8ae52c5

event_zone_id   string     

Must be a valid UUID. Must match an existing stored value. Example: d6fa562b-acd5-35ff-babb-d11194d3737b

product_id   string  optional    

This field is required when product_lot_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 5707ca55-f609-3528-be8b-1baeaee1567e

product_lot_id   string  optional    

This field is required when product_id is not present. Must be a valid UUID. Must match an existing stored value. Example: 947170af-7488-3f30-a16d-723355a9502f

transaction_id   string  optional    

This field is required when is_system is not present. Must not be greater than 255 characters. Example: i

response_details   object  optional    
is_system   string  optional    
is_paid   boolean  optional    

Example: false

DELETE api/v1/event-products/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/event-products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/event-products/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event product. Example: architecto

GET api/v1/event-product

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/event-product" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-product"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/event-product

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/event-product/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/event-product/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-product/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/event-product/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event product. Example: architecto

DELETE api/v1/event-product/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/event-product/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/event-product/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/event-product/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event product. Example: architecto

GET api/v1/reference/event-statuses

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/event-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": []
}
 

Request      

GET api/v1/reference/event-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/event-statuses

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/event-statuses

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer     

Must be at least 1. Example: 22

GET api/v1/reference/event-statuses/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/event-statuses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": false,
    "message": "The requested resource was not found.",
    "code": "NOT_FOUND",
    "errors": []
}
 

Request      

GET api/v1/reference/event-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event status. Example: architecto

PUT api/v1/reference/event-statuses/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/event-statuses/{id}

PATCH api/v1/reference/event-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event status. Example: architecto

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer     

Must be at least 1. Example: 22

DELETE api/v1/reference/event-statuses/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-statuses/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/event-statuses/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event status. Example: architecto

GET api/v1/reference/event-types

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/event-types" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-types"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "01932a2e-36fa-74fc-9223-c52eb1fe10d8",
            "wording": "Journalier",
            "position": 0,
            "max_days": 1,
            "description": "Boostez vos ventes! Une visibilité de 24h pour attirer plus d'acheteurs.",
            "zones": [
                {
                    "id": "01932a2e-36fa-74fc-9223-c52eb25a8e53",
                    "wording": "Local",
                    "price": "0.99",
                    "created_at": "2024-11-14T10:18:12.000000Z"
                },
                {
                    "id": "01932a2e-36fa-74fc-9223-c52eb2825bf9",
                    "wording": "Europe",
                    "price": "1.20",
                    "created_at": "2024-11-14T10:18:12.000000Z"
                },
                {
                    "id": "01932a2e-36fa-74fc-9223-c52eb2e3b850",
                    "wording": "Europe + Afrique",
                    "price": "1.35",
                    "created_at": "2024-11-14T10:18:12.000000Z"
                },
                {
                    "id": "01932a2e-36fa-74fc-9223-c52eb37b4267",
                    "wording": "Monde",
                    "price": "1.50",
                    "created_at": "2024-11-14T10:18:12.000000Z"
                }
            ],
            "created_at": "2024-11-14T10:18:12.000000Z"
        },
        {
            "id": "01931fbf-55ea-787e-be2c-31280537968b",
            "wording": "3 Jours",
            "position": 1,
            "max_days": 3,
            "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
            "zones": [
                {
                    "id": "01931fbf-55eb-73ff-96f6-e3895597fdb5",
                    "wording": "Local",
                    "price": "2.14",
                    "created_at": "2024-11-12T09:40:53.000000Z"
                },
                {
                    "id": "01931fbf-55eb-73ff-96f6-e38955a533b2",
                    "wording": "Europe",
                    "price": "2.99",
                    "created_at": "2024-11-12T09:40:53.000000Z"
                },
                {
                    "id": "01931fbf-55eb-73ff-96f6-e38955e854a9",
                    "wording": "Europe + Afrique",
                    "price": "3.85",
                    "created_at": "2024-11-12T09:40:53.000000Z"
                },
                {
                    "id": "01931fbf-55eb-73ff-96f6-e3895655afea",
                    "wording": "Monde",
                    "price": "4.28",
                    "created_at": "2024-11-12T09:40:53.000000Z"
                }
            ],
            "created_at": "2024-11-12T09:40:53.000000Z"
        },
        {
            "id": "01931fc1-4bda-76cf-abcf-cfedcecdaeb9",
            "wording": "1 Semaine",
            "position": 2,
            "max_days": 7,
            "description": "Maximisez l’exposition de votre produit en continue pendant 7 jours.",
            "zones": [
                {
                    "id": "01931fc1-4bdb-7075-bcca-4f9f8a242e0b",
                    "wording": "Local",
                    "price": "4.99",
                    "created_at": "2024-11-12T09:43:01.000000Z"
                },
                {
                    "id": "01931fc1-4bdb-7075-bcca-4f9f8aa512b9",
                    "wording": "Europe",
                    "price": "6.98",
                    "created_at": "2024-11-12T09:43:01.000000Z"
                },
                {
                    "id": "01931fc1-4bdb-7075-bcca-4f9f8b87ed71",
                    "wording": "Europe + Afrique",
                    "price": "8.98",
                    "created_at": "2024-11-12T09:43:01.000000Z"
                },
                {
                    "id": "01931fc1-4bdb-7075-bcca-4f9f8bce35c1",
                    "wording": "Monde",
                    "price": "9.98",
                    "created_at": "2024-11-12T09:43:01.000000Z"
                }
            ],
            "created_at": "2024-11-12T09:43:01.000000Z"
        },
        {
            "id": "01931fc3-a7c7-7c13-8eab-c55b57d7e049",
            "wording": "1 Mois",
            "position": 3,
            "max_days": 30,
            "description": "Garantissez une visibilité maximale sur le long terme.",
            "zones": [
                {
                    "id": "01931fc3-a7c7-7c13-8eab-c55b58224950",
                    "wording": "Local",
                    "price": "20.25",
                    "created_at": "2024-11-12T09:45:36.000000Z"
                },
                {
                    "id": "01931fc3-a7c8-7593-879e-b62ec308235b",
                    "wording": "Europe",
                    "price": "28.35",
                    "created_at": "2024-11-12T09:45:36.000000Z"
                },
                {
                    "id": "01931fc3-a7c8-7593-879e-b62ec3aa88d6",
                    "wording": "Europe + Afrique",
                    "price": "36.45",
                    "created_at": "2024-11-12T09:45:36.000000Z"
                },
                {
                    "id": "01931fc3-a7c8-7593-879e-b62ec48f67c7",
                    "wording": "Monde",
                    "price": "40.50",
                    "created_at": "2024-11-12T09:45:36.000000Z"
                }
            ],
            "created_at": "2024-11-12T09:45:36.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/event-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/event-types

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/event-types" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22,
    \"max_days\": 67,
    \"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-types"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22,
    "max_days": 67,
    "description": "Eius et animi quos velit et."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/event-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer     

Must be at least 1. Example: 22

max_days   integer     

Must be at least 1. Example: 67

description   string  optional    

Example: Eius et animi quos velit et.

wording_object   object  optional    
description_object   object  optional    

GET api/v1/reference/event-types/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/event-types/01931fbf-55ea-787e-be2c-31280537968b" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-types/01931fbf-55ea-787e-be2c-31280537968b"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "01931fbf-55ea-787e-be2c-31280537968b",
        "wording": "3 Jours",
        "position": 1,
        "max_days": 3,
        "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
        "zones": [
            {
                "id": "01931fbf-55eb-73ff-96f6-e3895597fdb5",
                "wording": "Local",
                "price": "2.14",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            {
                "id": "01931fbf-55eb-73ff-96f6-e38955a533b2",
                "wording": "Europe",
                "price": "2.99",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            {
                "id": "01931fbf-55eb-73ff-96f6-e38955e854a9",
                "wording": "Europe + Afrique",
                "price": "3.85",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            {
                "id": "01931fbf-55eb-73ff-96f6-e3895655afea",
                "wording": "Monde",
                "price": "4.28",
                "created_at": "2024-11-12T09:40:53.000000Z"
            }
        ],
        "created_at": "2024-11-12T09:40:53.000000Z"
    }
}
 

Request      

GET api/v1/reference/event-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event type. Example: 01931fbf-55ea-787e-be2c-31280537968b

PUT api/v1/reference/event-types/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/event-types/01931fbf-55ea-787e-be2c-31280537968b" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"wording\": \"b\",
    \"position\": 22,
    \"max_days\": 67,
    \"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-types/01931fbf-55ea-787e-be2c-31280537968b"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "wording": "b",
    "position": 22,
    "max_days": 67,
    "description": "Eius et animi quos velit et."
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/event-types/{id}

PATCH api/v1/reference/event-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event type. Example: 01931fbf-55ea-787e-be2c-31280537968b

Body Parameters

wording   string     

Must not be greater than 255 characters. Example: b

position   integer     

Must be at least 1. Example: 22

max_days   integer     

Must be at least 1. Example: 67

description   string  optional    

Example: Eius et animi quos velit et.

wording_object   object  optional    
description_object   object  optional    

DELETE api/v1/reference/event-types/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/event-types/01931fbf-55ea-787e-be2c-31280537968b" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-types/01931fbf-55ea-787e-be2c-31280537968b"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/event-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event type. Example: 01931fbf-55ea-787e-be2c-31280537968b

GET api/v1/reference/event-zones

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/event-zones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-zones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": [
        {
            "id": "01932a2e-36fa-74fc-9223-c52eb25a8e53",
            "wording": "Local",
            "price": "0.99",
            "event_type": {
                "id": "01932a2e-36fa-74fc-9223-c52eb1fe10d8",
                "wording": "Journalier",
                "position": 0,
                "max_days": 1,
                "description": "Boostez vos ventes! Une visibilité de 24h pour attirer plus d'acheteurs.",
                "created_at": "2024-11-14T10:18:12.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-14T10:18:12.000000Z"
        },
        {
            "id": "01932a2e-36fa-74fc-9223-c52eb37b4267",
            "wording": "Monde",
            "price": "1.50",
            "event_type": {
                "id": "01932a2e-36fa-74fc-9223-c52eb1fe10d8",
                "wording": "Journalier",
                "position": 0,
                "max_days": 1,
                "description": "Boostez vos ventes! Une visibilité de 24h pour attirer plus d'acheteurs.",
                "created_at": "2024-11-14T10:18:12.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-14T10:18:12.000000Z"
        },
        {
            "id": "01932a2e-36fa-74fc-9223-c52eb2e3b850",
            "wording": "Europe + Afrique",
            "price": "1.35",
            "event_type": {
                "id": "01932a2e-36fa-74fc-9223-c52eb1fe10d8",
                "wording": "Journalier",
                "position": 0,
                "max_days": 1,
                "description": "Boostez vos ventes! Une visibilité de 24h pour attirer plus d'acheteurs.",
                "created_at": "2024-11-14T10:18:12.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-14T10:18:12.000000Z"
        },
        {
            "id": "01932a2e-36fa-74fc-9223-c52eb2825bf9",
            "wording": "Europe",
            "price": "1.20",
            "event_type": {
                "id": "01932a2e-36fa-74fc-9223-c52eb1fe10d8",
                "wording": "Journalier",
                "position": 0,
                "max_days": 1,
                "description": "Boostez vos ventes! Une visibilité de 24h pour attirer plus d'acheteurs.",
                "created_at": "2024-11-14T10:18:12.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-14T10:18:12.000000Z"
        },
        {
            "id": "01931fc3-a7c7-7c13-8eab-c55b58224950",
            "wording": "Local",
            "price": "20.25",
            "event_type": {
                "id": "01931fc3-a7c7-7c13-8eab-c55b57d7e049",
                "wording": "1 Mois",
                "position": 3,
                "max_days": 30,
                "description": "Garantissez une visibilité maximale sur le long terme.",
                "created_at": "2024-11-12T09:45:36.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:45:36.000000Z"
        },
        {
            "id": "01931fc3-a7c8-7593-879e-b62ec308235b",
            "wording": "Europe",
            "price": "28.35",
            "event_type": {
                "id": "01931fc3-a7c7-7c13-8eab-c55b57d7e049",
                "wording": "1 Mois",
                "position": 3,
                "max_days": 30,
                "description": "Garantissez une visibilité maximale sur le long terme.",
                "created_at": "2024-11-12T09:45:36.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:45:36.000000Z"
        },
        {
            "id": "01931fc3-a7c8-7593-879e-b62ec3aa88d6",
            "wording": "Europe + Afrique",
            "price": "36.45",
            "event_type": {
                "id": "01931fc3-a7c7-7c13-8eab-c55b57d7e049",
                "wording": "1 Mois",
                "position": 3,
                "max_days": 30,
                "description": "Garantissez une visibilité maximale sur le long terme.",
                "created_at": "2024-11-12T09:45:36.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:45:36.000000Z"
        },
        {
            "id": "01931fc3-a7c8-7593-879e-b62ec48f67c7",
            "wording": "Monde",
            "price": "40.50",
            "event_type": {
                "id": "01931fc3-a7c7-7c13-8eab-c55b57d7e049",
                "wording": "1 Mois",
                "position": 3,
                "max_days": 30,
                "description": "Garantissez une visibilité maximale sur le long terme.",
                "created_at": "2024-11-12T09:45:36.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:45:36.000000Z"
        },
        {
            "id": "01931fc1-4bdb-7075-bcca-4f9f8bce35c1",
            "wording": "Monde",
            "price": "9.98",
            "event_type": {
                "id": "01931fc1-4bda-76cf-abcf-cfedcecdaeb9",
                "wording": "1 Semaine",
                "position": 2,
                "max_days": 7,
                "description": "Maximisez l’exposition de votre produit en continue pendant 7 jours.",
                "created_at": "2024-11-12T09:43:01.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:43:01.000000Z"
        },
        {
            "id": "01931fc1-4bdb-7075-bcca-4f9f8a242e0b",
            "wording": "Local",
            "price": "4.99",
            "event_type": {
                "id": "01931fc1-4bda-76cf-abcf-cfedcecdaeb9",
                "wording": "1 Semaine",
                "position": 2,
                "max_days": 7,
                "description": "Maximisez l’exposition de votre produit en continue pendant 7 jours.",
                "created_at": "2024-11-12T09:43:01.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:43:01.000000Z"
        },
        {
            "id": "01931fc1-4bdb-7075-bcca-4f9f8aa512b9",
            "wording": "Europe",
            "price": "6.98",
            "event_type": {
                "id": "01931fc1-4bda-76cf-abcf-cfedcecdaeb9",
                "wording": "1 Semaine",
                "position": 2,
                "max_days": 7,
                "description": "Maximisez l’exposition de votre produit en continue pendant 7 jours.",
                "created_at": "2024-11-12T09:43:01.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:43:01.000000Z"
        },
        {
            "id": "01931fc1-4bdb-7075-bcca-4f9f8b87ed71",
            "wording": "Europe + Afrique",
            "price": "8.98",
            "event_type": {
                "id": "01931fc1-4bda-76cf-abcf-cfedcecdaeb9",
                "wording": "1 Semaine",
                "position": 2,
                "max_days": 7,
                "description": "Maximisez l’exposition de votre produit en continue pendant 7 jours.",
                "created_at": "2024-11-12T09:43:01.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:43:01.000000Z"
        },
        {
            "id": "01931fbf-55eb-73ff-96f6-e3895597fdb5",
            "wording": "Local",
            "price": "2.14",
            "event_type": {
                "id": "01931fbf-55ea-787e-be2c-31280537968b",
                "wording": "3 Jours",
                "position": 1,
                "max_days": 3,
                "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:40:53.000000Z"
        },
        {
            "id": "01931fbf-55eb-73ff-96f6-e3895655afea",
            "wording": "Monde",
            "price": "4.28",
            "event_type": {
                "id": "01931fbf-55ea-787e-be2c-31280537968b",
                "wording": "3 Jours",
                "position": 1,
                "max_days": 3,
                "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:40:53.000000Z"
        },
        {
            "id": "01931fbf-55eb-73ff-96f6-e38955e854a9",
            "wording": "Europe + Afrique",
            "price": "3.85",
            "event_type": {
                "id": "01931fbf-55ea-787e-be2c-31280537968b",
                "wording": "3 Jours",
                "position": 1,
                "max_days": 3,
                "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:40:53.000000Z"
        },
        {
            "id": "01931fbf-55eb-73ff-96f6-e38955a533b2",
            "wording": "Europe",
            "price": "2.99",
            "event_type": {
                "id": "01931fbf-55ea-787e-be2c-31280537968b",
                "wording": "3 Jours",
                "position": 1,
                "max_days": 3,
                "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
                "created_at": "2024-11-12T09:40:53.000000Z"
            },
            "countries": [],
            "created_at": "2024-11-12T09:40:53.000000Z"
        }
    ]
}
 

Request      

GET api/v1/reference/event-zones

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/reference/event-zones

Example request:
curl --request POST \
    "https://api-staging.occaverse.com/api/v1/reference/event-zones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"event_type_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"wording\": \"g\",
    \"price\": 12,
    \"country_ids\": [
        \"977e5426-8d13-3824-86aa-b092f8ae52c5\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-zones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "event_type_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "wording": "g",
    "price": 12,
    "country_ids": [
        "977e5426-8d13-3824-86aa-b092f8ae52c5"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/reference/event-zones

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

event_type_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

wording   string     

Must not be greater than 255 characters. Example: g

price   number     

Must be at least 0. Example: 12

wording_object   object  optional    
country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

GET api/v1/reference/event-zones/{id}

Example request:
curl --request GET \
    --get "https://api-staging.occaverse.com/api/v1/reference/event-zones/01931fbf-55eb-73ff-96f6-e3895597fdb5" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-zones/01931fbf-55eb-73ff-96f6-e3895597fdb5"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "success": true,
    "message": "OK",
    "data": {
        "id": "01931fbf-55eb-73ff-96f6-e3895597fdb5",
        "wording": "Local",
        "price": "2.14",
        "event_type": {
            "id": "01931fbf-55ea-787e-be2c-31280537968b",
            "wording": "3 Jours",
            "position": 1,
            "max_days": 3,
            "description": "Idéale pour optimiser vos chances de vente sur une courte période.",
            "created_at": "2024-11-12T09:40:53.000000Z"
        },
        "countries": [],
        "created_at": "2024-11-12T09:40:53.000000Z"
    }
}
 

Request      

GET api/v1/reference/event-zones/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event zone. Example: 01931fbf-55eb-73ff-96f6-e3895597fdb5

PUT api/v1/reference/event-zones/{id}

Example request:
curl --request PUT \
    "https://api-staging.occaverse.com/api/v1/reference/event-zones/01931fbf-55eb-73ff-96f6-e3895597fdb5" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"event_type_id\": \"6ff8f7f6-1eb3-3525-be4a-3932c805afed\",
    \"wording\": \"g\",
    \"price\": 12,
    \"country_ids\": [
        \"977e5426-8d13-3824-86aa-b092f8ae52c5\"
    ]
}"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-zones/01931fbf-55eb-73ff-96f6-e3895597fdb5"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "event_type_id": "6ff8f7f6-1eb3-3525-be4a-3932c805afed",
    "wording": "g",
    "price": 12,
    "country_ids": [
        "977e5426-8d13-3824-86aa-b092f8ae52c5"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/reference/event-zones/{id}

PATCH api/v1/reference/event-zones/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event zone. Example: 01931fbf-55eb-73ff-96f6-e3895597fdb5

Body Parameters

event_type_id   string     

Must be a valid UUID. Must match an existing stored value. Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

wording   string     

Must not be greater than 255 characters. Example: g

price   number     

Must be at least 0. Example: 12

wording_object   object  optional    
country_ids   string[]  optional    

Must be a valid UUID. Must match an existing stored value.

DELETE api/v1/reference/event-zones/{id}

Example request:
curl --request DELETE \
    "https://api-staging.occaverse.com/api/v1/reference/event-zones/01931fbf-55eb-73ff-96f6-e3895597fdb5" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://api-staging.occaverse.com/api/v1/reference/event-zones/01931fbf-55eb-73ff-96f6-e3895597fdb5"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/reference/event-zones/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the event zone. Example: 01931fbf-55eb-73ff-96f6-e3895597fdb5