From a5a1bdf7eb61eac73fb955f7e106e5c2251f9224 Mon Sep 17 00:00:00 2001 From: Pmarquez <48651252+pxp9@users.noreply.github.com> Date: Sat, 8 Jul 2023 19:27:36 +0200 Subject: [PATCH 1/4] Pxp9/ft filters url (#14) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * tenemos las tallas gracias a la cortesía de ChatGPT beautiful soup y una buena feature del navegador xd, subimos el JSON donde están todas las categorías (falta parsear) y empezamos con las marcas * script de python que te saca todos los nombres de marcas de la pagina brands/byLetter/Letra * nombres de marcas y tallas extraidas * script que hace requests a la api y obtiene el ID de la marca * Got brands_ids :D * formatting catalogs ids * organizando los recursos de los filtros * materiales * arreglillos de ultima hora * arreglillos de ultima hora * Added scrappers as submodule * Refactor completed * Fmt formatted * actualizando el submodulo del scrapper * primera migration sizes complete * get_catalogs , alvaro y README * Finished catalogs * Fix README * Fix both Readme * Fix dependency for Diesel * Created more migrations * Brands needs a fix * fix migrations and brands * migracion de countries y query de la BBDD de una marca * fix clippy * arreglando un bug con las cookies, haciendo un test y limitando get_item a 1 elemento * fix fmt * mejorando la API del wrapper , implementando FROM de Brand * fix fmt * fix clippy on test * review API and model types * fix fmt * Db tests * fix workflow * empezando a procesar los filtros en la URI * Finished db-feeder * Added some tests * Added query * Added optional num field in get_items * Added Get_category_by_name tested * Converted vec to String Co-authored-by: Pmarquez * Finished filters * Fix doctest * Added get-host * Cargo clippy fix * Small changes big steps * Fix languages * fuck cargo fmt --------- Co-authored-by: alvarocabo Co-authored-by: Pmarquez --- .github/workflows/rust.yml | 30 + .gitmodules | 4 + Cargo.lock | 353 +- Cargo.toml | 25 +- Makefile | 15 + README.md | 74 +- migrations/2023-06-28-222639_sizes/down.sql | 3 + migrations/2023-06-28-222639_sizes/up.sql | 593 + migrations/2023-06-29-160117_colors/down.sql | 4 + migrations/2023-06-29-160117_colors/up.sql | 34 + .../down.sql | 3 + .../2023-06-29-161252_categories_tree/up.sql | 1048 ++ .../2023-06-29-161527_categories/down.sql | 3 + .../2023-06-29-161527_categories/up.sql | 1061 ++ .../2023-06-29-170110_materials/down.sql | 3 + migrations/2023-06-29-170110_materials/up.sql | 63 + migrations/2023-06-29-170114_brands/down.sql | 3 + migrations/2023-06-29-170114_brands/up.sql | 12842 ++++++++++++++++ .../2023-07-01-164526_countries/down.sql | 1 + migrations/2023-07-01-164526_countries/up.sql | 30 + src/db.rs | 95 + src/lib.rs | 7 + src/main.rs | 32 +- src/model.rs | 3 +- src/model/brand.rs | 8 - src/model/filter.rs | 73 +- src/model/filter/brand.rs | 21 + src/model/filter/category.rs | 28 + src/model/filter/category_tree.rs | 21 + src/model/filter/colors.rs | 22 + src/model/filter/country.rs | 23 + src/model/filter/material.rs | 23 + src/model/filter/size.rs | 24 + src/model/item.rs | 23 +- src/model/items.rs | 2 +- src/queries.rs | 259 +- src/sql_queries/GET_BRANDS_BY_NAME.sql | 1 + src/sql_queries/GET_BRAND_BY_NAME.sql | 1 + src/sql_queries/GET_CATEGORY_BY_NAME.sql | 1 + src/sql_queries/GET_CHILDREN_BY_FATHER_ID.sql | 1 + src/sql_queries/GET_COUNTRY_BY_ISO_CODE.sql | 1 + src/tests.rs | 2 + src/tests/db.rs | 58 + src/tests/queries.rs | 95 + vinted-db-feeder | 1 + 45 files changed, 16952 insertions(+), 65 deletions(-) create mode 100644 .gitmodules create mode 100644 Makefile create mode 100644 migrations/2023-06-28-222639_sizes/down.sql create mode 100644 migrations/2023-06-28-222639_sizes/up.sql create mode 100644 migrations/2023-06-29-160117_colors/down.sql create mode 100644 migrations/2023-06-29-160117_colors/up.sql create mode 100644 migrations/2023-06-29-161252_categories_tree/down.sql create mode 100644 migrations/2023-06-29-161252_categories_tree/up.sql create mode 100644 migrations/2023-06-29-161527_categories/down.sql create mode 100644 migrations/2023-06-29-161527_categories/up.sql create mode 100644 migrations/2023-06-29-170110_materials/down.sql create mode 100644 migrations/2023-06-29-170110_materials/up.sql create mode 100644 migrations/2023-06-29-170114_brands/down.sql create mode 100644 migrations/2023-06-29-170114_brands/up.sql create mode 100644 migrations/2023-07-01-164526_countries/down.sql create mode 100644 migrations/2023-07-01-164526_countries/up.sql create mode 100644 src/db.rs delete mode 100644 src/model/brand.rs create mode 100644 src/model/filter/brand.rs create mode 100644 src/model/filter/category.rs create mode 100644 src/model/filter/category_tree.rs create mode 100644 src/model/filter/colors.rs create mode 100644 src/model/filter/country.rs create mode 100644 src/model/filter/material.rs create mode 100644 src/model/filter/size.rs create mode 100644 src/sql_queries/GET_BRANDS_BY_NAME.sql create mode 100644 src/sql_queries/GET_BRAND_BY_NAME.sql create mode 100644 src/sql_queries/GET_CATEGORY_BY_NAME.sql create mode 100644 src/sql_queries/GET_CHILDREN_BY_FATHER_ID.sql create mode 100644 src/sql_queries/GET_COUNTRY_BY_ISO_CODE.sql create mode 100644 src/tests/db.rs create mode 160000 vinted-db-feeder diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 084d53d..7d36743 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,6 +12,27 @@ jobs: name: Test runs-on: ubuntu-latest + services: + # Label used to access the service container + postgres: + # Docker Hub image + image: postgres + # Provide the password for postgres + env: + POSTGRES_DB: vinted-rs + POSTGRES_PASSWORD: postgres + POSTGRES_USER: postgres + # Set health checks to wait until postgres has started + + ports: + - 5432:5432 + + options: >- + --health-cmd pg_isready + --health-interval 10s + --health-timeout 5s + --health-retries 5 + steps: - uses: actions/checkout@v3 @@ -29,6 +50,15 @@ jobs: command: clippy args: --verbose --all-targets --all-features -- -D warnings + - name: Install diesel-cli + uses: actions-rs/cargo@v1 + with: + command: install + args: diesel_cli --no-default-features --features "postgres" + + - name: Setup db + run: diesel setup --database-url=postgres://postgres:postgres@localhost/vinted-rs + - name: Run tests uses: actions-rs/cargo@v1 with: diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c90e80b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "vinted-db-feeder"] + path = vinted-db-feeder + url = git@github.com:TuTarea/vinted-db-feeder.git + branch = main diff --git a/Cargo.lock b/Cargo.lock index 68d16f3..86c5e8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,32 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "async-trait" +version = "0.1.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.20", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -14,18 +40,58 @@ version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" +[[package]] +name = "bb8" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98b4b0f25f18bcdc3ac72bdb486ed0acf7e185221fd4dc985bc15db5800b0ba2" +dependencies = [ + "async-trait", + "futures-channel", + "futures-util", + "parking_lot", + "tokio", +] + +[[package]] +name = "bb8-postgres" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56ac82c42eb30889b5c4ee4763a24b8c566518171ebea648cd7e3bc532c60680" +dependencies = [ + "async-trait", + "bb8", + "tokio", + "tokio-postgres", +] + [[package]] name = "bitflags" version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + [[package]] name = "bumpalo" version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + [[package]] name = "bytes" version = "1.4.0" @@ -44,6 +110,18 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "chrono" +version = "0.4.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "num-traits", + "winapi", +] + [[package]] name = "cookie" version = "0.16.2" @@ -116,6 +194,36 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" +[[package]] +name = "cpufeatures" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c" +dependencies = [ + "libc", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", + "subtle", +] + [[package]] name = "encoding_rs" version = "0.8.32" @@ -146,6 +254,12 @@ dependencies = [ "libc", ] +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" + [[package]] name = "fastrand" version = "1.9.0" @@ -192,6 +306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" dependencies = [ "futures-core", + "futures-sink", ] [[package]] @@ -200,6 +315,17 @@ version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" +[[package]] +name = "futures-macro" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.20", +] + [[package]] name = "futures-sink" version = "0.3.28" @@ -218,10 +344,24 @@ version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" dependencies = [ + "futures-channel", "futures-core", + "futures-macro", + "futures-sink", "futures-task", "pin-project-lite", "pin-utils", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", ] [[package]] @@ -275,6 +415,15 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + [[package]] name = "http" version = "0.2.9" @@ -326,7 +475,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2", + "socket2 0.4.9", "tokio", "tower-service", "tracing", @@ -346,6 +495,29 @@ dependencies = [ "tokio-native-tls", ] +[[package]] +name = "iana-time-zone" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + [[package]] name = "idna" version = "0.2.3" @@ -468,6 +640,21 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" +[[package]] +name = "md-5" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" +dependencies = [ + "digest", +] + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + [[package]] name = "mime" version = "0.3.17" @@ -503,6 +690,15 @@ dependencies = [ "tempfile", ] +[[package]] +name = "num-traits" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +dependencies = [ + "autocfg", +] + [[package]] name = "num_cpus" version = "1.15.0" @@ -592,6 +788,24 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" +[[package]] +name = "phf" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +dependencies = [ + "phf_shared", +] + +[[package]] +name = "phf_shared" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +dependencies = [ + "siphasher", +] + [[package]] name = "pin-project-lite" version = "0.2.9" @@ -610,6 +824,51 @@ version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" +[[package]] +name = "postgres-derive" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "070ffaa78859c779b19f9358ce035480479cf2619e968593ffbe72abcb6e0fcf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.20", +] + +[[package]] +name = "postgres-protocol" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d" +dependencies = [ + "base64", + "byteorder", + "bytes", + "fallible-iterator", + "hmac", + "md-5", + "memchr", + "rand", + "sha2", + "stringprep", +] + +[[package]] +name = "postgres-types" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6" +dependencies = [ + "bytes", + "chrono", + "fallible-iterator", + "postgres-derive", + "postgres-protocol", + "serde", + "serde_json", + "uuid", +] + [[package]] name = "ppv-lite86" version = "0.2.17" @@ -841,6 +1100,17 @@ dependencies = [ "serde", ] +[[package]] +name = "sha2" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + [[package]] name = "signal-hook-registry" version = "1.4.1" @@ -850,6 +1120,12 @@ dependencies = [ "libc", ] +[[package]] +name = "siphasher" +version = "0.3.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" + [[package]] name = "slab" version = "0.4.8" @@ -875,6 +1151,32 @@ dependencies = [ "winapi", ] +[[package]] +name = "socket2" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "stringprep" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "subtle" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + [[package]] name = "syn" version = "1.0.109" @@ -987,7 +1289,7 @@ dependencies = [ "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.4.9", "tokio-macros", "windows-sys 0.48.0", ] @@ -1013,6 +1315,30 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-postgres" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1" +dependencies = [ + "async-trait", + "byteorder", + "bytes", + "fallible-iterator", + "futures-channel", + "futures-util", + "log", + "parking_lot", + "percent-encoding", + "phf", + "pin-project-lite", + "postgres-protocol", + "postgres-types", + "socket2 0.5.3", + "tokio", + "tokio-util", +] + [[package]] name = "tokio-util" version = "0.7.8" @@ -1070,6 +1396,12 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "typenum" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + [[package]] name = "unicode-bidi" version = "0.3.13" @@ -1102,6 +1434,12 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "uuid" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be" + [[package]] name = "vcpkg" version = "0.2.15" @@ -1118,7 +1456,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" name = "vinted-rs" version = "0.1.0" dependencies = [ + "bb8-postgres", "once_cell", + "postgres-types", "rand", "reqwest", "reqwest_cookie_store", @@ -1241,6 +1581,15 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets", +] + [[package]] name = "windows-sys" version = "0.42.0" diff --git a/Cargo.toml b/Cargo.toml index bcab47c..9247a8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,9 +2,22 @@ name = "vinted-rs" version = "0.1.0" edition = "2021" +authors = ["Pepe Márquez " , "Álvaro Cabo "] +description = "An async Vinted API wrapper" +readme = "README.md" +rust-version = "1.70" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[lib] +doctest = false + +[features] +default = ["advanced_filters"] +advanced_filters = ["bb8-postgres", "postgres-types"] +minimal = [] + + [dependencies] reqwest = { version = "0.11", features = ["json", "cookies"] } tokio = { version = "1", features = ["full"] } @@ -13,4 +26,14 @@ thiserror = "1.0" once_cell = "1.18" rand = "0.8" reqwest_cookie_store = "0.6" -typed-builder = "0.14" \ No newline at end of file +typed-builder = "0.14" + +[dependencies.bb8-postgres] +version = "0.8" +features = ["with-serde_json-1" , "with-uuid-1" , "with-chrono-0_4"] +optional = true + +[dependencies.postgres-types] +version = "0.X.X" +features = ["derive"] +optional = true \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..63a0306 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +db: + docker run --rm -d --name postgres -p 5432:5432 \ + -e POSTGRES_DB=vinted-rs \ + -e POSTGRES_USER=postgres \ + -e POSTGRES_PASSWORD=postgres \ + postgres:latest + + +diesel: + DATABASE_URL=postgres://postgres:postgres@localhost/vinted-rs diesel migration run +stop: + docker kill postgres + +clippy: + cargo clippy --all-features \ No newline at end of file diff --git a/README.md b/README.md index 510fcc2..ddf3eaa 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A complete Vinted API-Wrapper in Rust -## Instalation +## Installation Via `cargo` you can add the library to your project's `Cargo.toml` @@ -16,3 +16,75 @@ vinted-rs = "0.0.1" [Álvaro Cabo](https://github.com/alvarocabo) [Pepe Márquez](https://github.com/pxp9) + +## DB setup + +Advanced filtering features must require this setup before running. + +- First start installing diesel-cli (in order to run the migrations in PostgreSQL database) + +### VERY IMPORTANT + +diesel-cli installation may fail if you do not have `libpq` library installed. + +To install `libpq`, just install PostgreSQL package on your machine. + +In `Arch` based is only necessary to install this package. + +```bash +sudo pacman -S postgresql-libs +``` + +In `Debian` based distributions is only necessary to install this package. + +```bash +sudo apt install libpq-dev +``` + +```bash +cargo install diesel_cli --features=postgres --no-default-features +``` + +### Create a migration + +```bash +mkdir migrations +``` + +```bash +diesel migration generate my_migration +``` + +Program after that `up.sql` and `down.sql` scripts. + +### Run a Docker container with PostgreSQL + +- See in [Makefile](https://github.com/TuTarea/vinted-rs/blob/main/Makefile) + +```bash +make db +``` + +### Run migrations + +```bash +make diesel +``` + +### Stop DB + +```bash +make stop +``` + +## Running Tests + +### Very important + +Before running tests is important to do the DB setup + +Then run the tests + +```bash +cargo test +``` diff --git a/migrations/2023-06-28-222639_sizes/down.sql b/migrations/2023-06-28-222639_sizes/down.sql new file mode 100644 index 0000000..aa996cd --- /dev/null +++ b/migrations/2023-06-28-222639_sizes/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` + +DROP TABLE SIZE ; \ No newline at end of file diff --git a/migrations/2023-06-28-222639_sizes/up.sql b/migrations/2023-06-28-222639_sizes/up.sql new file mode 100644 index 0000000..1038a91 --- /dev/null +++ b/migrations/2023-06-28-222639_sizes/up.sql @@ -0,0 +1,593 @@ +-- Your SQL goes here + +CREATE TABLE SIZE( +id SERIAL PRIMARY KEY, +id_vinted INT, +size VARCHAR(80), +category VARCHAR(80) +); + +INSERT INTO SIZE (id_vinted , size , category) VALUES +(610 , 'Prematuro, máx. 44 cm' , 'Niños'), +(666 , 'Recién nacido / 44 cm' , 'Niños'), +(612 , 'De hasta 1 mes / 50 cm' , 'Niños'), +(613 , '1-3 meses / 56 cm' , 'Niños'), +(614 , '3-6 meses / 62 cm' , 'Niños'), +(616 , '6-9 meses / 68 cm' , 'Niños'), +(617 , '9-12 meses / 74 cm' , 'Niños'), +(618 , '12-18 meses / 80 cm' , 'Niños'), +(619 , '18-24 meses / 86 cm' , 'Niños'), +(622 , '24-36 meses / 92 cm' , 'Niños'), +(1567 , '3 años / 98 cm' , 'Niños'), +(623 , '4 años / 104 cm' , 'Niños'), +(624 , '5 años / 110 cm' , 'Niños'), +(625 , '6 años / 116 cm' , 'Niños'), +(626 , '7 años / 122 cm' , 'Niños'), +(627 , '8 años / 128 cm' , 'Niños'), +(628 , '9 años / 134 cm' , 'Niños'), +(629 , '10 años / 140 cm' , 'Niños'), +(630 , '11 años / 146 cm' , 'Niños'), +(631 , '12 años / 152 cm' , 'Niños'), +(632 , '13 años / 158 cm' , 'Niños'), +(633 , '14 años / 164 cm' , 'Niños'), +(634 , '15 años / 170 cm' , 'Niños'), +(635 , '16 años /176 cm' , 'Niños'), +(620 , 'Talla única' , 'Niños'), +(1568 , 'XS' , 'Niños'), +(1569 , 'S' , 'Niños'), +(1570 , 'M' , 'Niños'), +(1571 , 'L' , 'Niños'), +(1572 , 'XL' , 'Niños'), +(657 , '15 o inferior' , 'Niños'), +(585 , '16' , 'Niños'), +(586 , '17' , 'Niños'), +(587 , '18' , 'Niños'), +(588 , '19' , 'Niños'), +(589 , '20' , 'Niños'), +(590 , '21' , 'Niños'), +(591 , '22' , 'Niños'), +(592 , '23' , 'Niños'), +(593 , '24' , 'Niños'), +(594 , '25' , 'Niños'), +(595 , '26' , 'Niños'), +(596 , '27' , 'Niños'), +(597 , '28' , 'Niños'), +(598 , '29' , 'Niños'), +(599 , '30' , 'Niños'), +(600 , '31' , 'Niños'), +(601 , '32' , 'Niños'), +(602 , '33' , 'Niños'), +(603 , '34' , 'Niños'), +(604 , '35' , 'Niños'), +(605 , '36' , 'Niños'), +(606 , '37' , 'Niños'), +(607 , '38' , 'Niños'), +(608 , '39' , 'Niños'), +(609 , '40' , 'Niños'), +(533 , 'max 2 kg ' , 'Niños'), +(534 , '2-5 kg' , 'Niños'), +(535 , '3-6kg' , 'Niños'), +(536 , '4-9 kg' , 'Niños'), +(537 , '7-18 kg' , 'Niños'), +(538 , '9-20 kg' , 'Niños'), +(539 , '11-25 kg' , 'Niños'), +(540 , '13-27 kg' , 'Niños'), +(541 , '16+ kg' , 'Niños'), +(542 , '0-13 kg' , 'Niños'), +(544 , '9-18 kg' , 'Niños'), +(547 , '15-36 kg' , 'Niños'), +(1188 , '22-36 kg' , 'Niños'), +(662 , 'Otros' , 'Niños'), +(577 , 'Cualquier' , 'Niños'), +(565 , 'Desde 0 meses' , 'Niños'), +(566 , 'Desde 3 meses' , 'Niños'), +(567 , 'Desde 6 meses' , 'Niños'), +(568 , 'Desde 9 meses' , 'Niños'), +(569 , 'Desde 1 año' , 'Niños'), +(570 , 'Desde 1 año y medio' , 'Niños'), +(571 , 'Desde 2 años' , 'Niños'), +(572 , 'Desde 3 años' , 'Niños'), +(1311 , 'Desde 4 años' , 'Niños'), +(573 , 'Desde 5 años' , 'Niños'), +(574 , 'Desde 6 años' , 'Niños'), +(575 , 'Desde 7 años' , 'Niños'), +(576 , 'Desde 8 años' , 'Niños'), +(928 , 'Prematuro, 30 cm' , 'Niños'), +(929 , '0-3 meses, 38 cm' , 'Niños'), +(930 , '3-6 meses, 42 cm' , 'Niños'), +(931 , '6-12 meses, 47 cm' , 'Niños'), +(932 , '1-2 años, 49 cm' , 'Niños'), +(933 , '2-3 años, 51 cm' , 'Niños'), +(934 , '3-5 años, 53 cm' , 'Niños'), +(935 , '5-8 años, 54 cm' , 'Niños'), +(936 , '8-12 años, 56 cm' , 'Niños'), +(937 , 'A partir de 12 años >56 cm' , 'Niños'), +(1189 , 'Talla única' , 'Niños'), +(1489 , 'Moisés' , 'Niños'), +(1490 , 'Minicuna' , 'Niños'), +(1566 , 'Cuna de viaje' , 'Niños'), +(1491 , 'Cuna' , 'Niños'), +(1352 , 'XS' , 'Mascotas'), +(1353 , 'S' , 'Mascotas'), +(1354 , 'M' , 'Mascotas'), +(1355 , 'L' , 'Mascotas'), +(1356 , 'XL' , 'Mascotas'), +(1357 , 'XXL' , 'Mascotas'), +(1363 , 'Otro' , 'Mascotas'), +(1365 , 'Talla única' , 'Mascotas'), +(206 , 'XS' , 'Hombre'), +(207 , 'S' , 'Hombre'), +(208 , 'M' , 'Hombre'), +(209 , 'L' , 'Hombre'), +(210 , 'XL' , 'Hombre'), +(211 , 'XXL' , 'Hombre'), +(212 , 'XXXL' , 'Hombre'), +(308 , '4XL' , 'Hombre'), +(309 , '5XL' , 'Hombre'), +(1192 , '6XL' , 'Hombre'), +(1193 , '7XL' , 'Hombre'), +(1194 , '8XL' , 'Hombre'), +(776 , '38' , 'Hombre'), +(777 , '38.5' , 'Hombre'), +(778 , '39' , 'Hombre'), +(779 , '39.5' , 'Hombre'), +(780 , '40' , 'Hombre'), +(781 , '40.5' , 'Hombre'), +(782 , '41' , 'Hombre'), +(783 , '41.5' , 'Hombre'), +(784 , '42' , 'Hombre'), +(785 , '42.5' , 'Hombre'), +(786 , '43' , 'Hombre'), +(787 , '43.5' , 'Hombre'), +(788 , '44' , 'Hombre'), +(789 , '44.5' , 'Hombre'), +(790 , '45' , 'Hombre'), +(791 , '45.5' , 'Hombre'), +(792 , '46' , 'Hombre'), +(793 , '46.5' , 'Hombre'), +(794 , '47' , 'Hombre'), +(795 , '47.5' , 'Hombre'), +(1190 , '48' , 'Hombre'), +(1621 , '48.5' , 'Hombre'), +(1191 , '49' , 'Hombre'), +(1327 , '50' , 'Hombre'), +(1622 , '51' , 'Hombre'), +(1623 , '52' , 'Hombre'), +(1624 , 'Talla única' , 'Hombre'), +(1625 , 'Otra' , 'Hombre'), +(1545 , 'XS' , 'Hombre'), +(1546 , 'S' , 'Hombre'), +(1547 , 'M' , 'Hombre'), +(1548 , 'L' , 'Hombre'), +(1549 , 'XL' , 'Hombre'), +(1550 , 'XXL' , 'Hombre'), +(1551 , 'XXXL' , 'Hombre'), +(1552 , '4XL' , 'Hombre'), +(1553 , '5XL' , 'Hombre'), +(1554 , '6XL' , 'Hombre'), +(1555 , '7XL' , 'Hombre'), +(1556 , '8XL' , 'Hombre'), +(1527 , '35' , 'Hombre'), +(1528 , '36' , 'Hombre'), +(1529 , '37' , 'Hombre'), +(1530 , '38' , 'Hombre'), +(1531 , '39' , 'Hombre'), +(1532 , '40' , 'Hombre'), +(1533 , '41' , 'Hombre'), +(1534 , '42' , 'Hombre'), +(1535 , '43' , 'Hombre'), +(1536 , '44' , 'Hombre'), +(1537 , '45' , 'Hombre'), +(1538 , '46' , 'Hombre'), +(1539 , '47' , 'Hombre'), +(1540 , '48' , 'Hombre'), +(1541 , '49' , 'Hombre'), +(1542 , '50' , 'Hombre'), +(1543 , '51' , 'Hombre'), +(1544 , '52' , 'Hombre'), +(1609 , 'XS' , 'Hombre'), +(1610 , 'S' , 'Hombre'), +(1611 , 'M' , 'Hombre'), +(1612 , 'L' , 'Hombre'), +(1613 , 'XL' , 'Hombre'), +(1614 , 'XXL' , 'Hombre'), +(1615 , 'XXXL' , 'Hombre'), +(1616 , '4XL' , 'Hombre'), +(1617 , '5XL' , 'Hombre'), +(1618 , '6XL' , 'Hombre'), +(1619 , '7XL' , 'Hombre'), +(1620 , '8XL' , 'Hombre'), +(1583 , '22' , 'Hombre'), +(1584 , '23' , 'Hombre'), +(1585 , '24' , 'Hombre'), +(1586 , '25' , 'Hombre'), +(1587 , '26' , 'Hombre'), +(1588 , '27' , 'Hombre'), +(1589 , '28' , 'Hombre'), +(1590 , '29' , 'Hombre'), +(1591 , '30' , 'Hombre'), +(1592 , '42' , 'Hombre'), +(1593 , '44' , 'Hombre'), +(1594 , '46' , 'Hombre'), +(1595 , '48' , 'Hombre'), +(1596 , '50' , 'Hombre'), +(1597 , '52' , 'Hombre'), +(1598 , '54' , 'Hombre'), +(1599 , '56' , 'Hombre'), +(1600 , '58' , 'Hombre'), +(1601 , '90' , 'Hombre'), +(1602 , '94' , 'Hombre'), +(1603 , '98' , 'Hombre'), +(1604 , '102' , 'Hombre'), +(1605 , '106' , 'Hombre'), +(1606 , '110' , 'Hombre'), +(1607 , '112' , 'Hombre'), +(1608 , '118' , 'Hombre'), +(1202 , '14.1' , 'Hombre'), +(1203 , '14.5' , 'Hombre'), +(1204 , '14.9' , 'Hombre'), +(1205 , '15.3' , 'Hombre'), +(1206 , '15.7' , 'Hombre'), +(1207 , '16.1' , 'Hombre'), +(1208 , '16.5' , 'Hombre'), +(1209 , '16.9' , 'Hombre'), +(1210 , '17.3' , 'Hombre'), +(1211 , '17.7' , 'Hombre'), +(1212 , '18.1' , 'Hombre'), +(1213 , '18.5' , 'Hombre'), +(1214 , '19 mm Ø / 21' , 'Hombre'), +(1215 , '19.4' , 'Hombre'), +(1216 , '19.8' , 'Hombre'), +(1217 , '20.2' , 'Hombre'), +(1218 , '20.6' , 'Hombre'), +(1219 , '21 mm Ø / 27' , 'Hombre'), +(1220 , '21.4' , 'Hombre'), +(1221 , '21.8' , 'Hombre'), +(1222 , '22.2' , 'Hombre'), +(1223 , '22.6' , 'Hombre'), +(1224 , 'Ajustable' , 'Hombre'), +(1388 , 'XS' , 'Hombre'), +(1389 , 'S' , 'Hombre'), +(1390 , 'M' , 'Hombre'), +(1391 , 'L' , 'Hombre'), +(1392 , 'XL' , 'Hombre'), +(1393 , 'XXL' , 'Hombre'), +(1387 , 'Talla única' , 'Hombre'), +(1373 , '52' , 'Hombre'), +(1374 , '53' , 'Hombre'), +(1375 , '54' , 'Hombre'), +(1376 , '55' , 'Hombre'), +(1377 , '56' , 'Hombre'), +(1378 , '57' , 'Hombre'), +(1379 , '58' , 'Hombre'), +(1380 , '59' , 'Hombre'), +(1381 , '60' , 'Hombre'), +(1382 , '61' , 'Hombre'), +(1383 , '62' , 'Hombre'), +(1384 , '63' , 'Hombre'), +(1385 , '64' , 'Hombre'), +(1386 , '65' , 'Hombre'), +(1429 , '30 mm o menos' , 'Hombre'), +(1430 , '31-38 mm' , 'Hombre'), +(1431 , '39-42 mm' , 'Hombre'), +(1432 , '43-46 mm' , 'Hombre'), +(1433 , '47 mm o más' , 'Hombre'), +(1435 , 'Talla única' , 'Hombre'), +(1408 , '5' , 'Hombre'), +(1409 , '5.5' , 'Hombre'), +(1410 , '6' , 'Hombre'), +(1411 , '6.5' , 'Hombre'), +(1412 , '7' , 'Hombre'), +(1413 , '7.5' , 'Hombre'), +(1414 , '8' , 'Hombre'), +(1415 , '8.5' , 'Hombre'), +(1416 , '9' , 'Hombre'), +(1417 , '9.5' , 'Hombre'), +(1418 , '10' , 'Hombre'), +(1419 , '10.5' , 'Hombre'), +(1420 , '11' , 'Hombre'), +(1421 , '11.5' , 'Hombre'), +(1422 , '12' , 'Hombre'), +(1423 , 'Talla única' , 'Hombre'), +(1424 , 'XS' , 'Hombre'), +(1425 , 'S' , 'Hombre'), +(1426 , 'M' , 'Hombre'), +(1427 , 'L' , 'Hombre'), +(1428 , 'XL' , 'Hombre'), +(1436 , '80 cm' , 'Hombre'), +(1437 , '85 cm' , 'Hombre'), +(1438 , '90 cm' , 'Hombre'), +(1439 , '95 cm' , 'Hombre'), +(1440 , '100 cm' , 'Hombre'), +(1441 , '105 cm' , 'Hombre'), +(1442 , '110 cm' , 'Hombre'), +(1443 , '115 cm' , 'Hombre'), +(1444 , '120 cm' , 'Hombre'), +(1445 , '125 cm' , 'Hombre'), +(1581 , 'Ajustable' , 'Hombre'), +(1522 , 'XS | 36-37' , 'Hombre'), +(1523 , 'S | 38-42' , 'Hombre'), +(1524 , 'M | 43-46' , 'Hombre'), +(1525 , 'L | 47-52' , 'Hombre'), +(1526 , 'Talla única' , 'Hombre'), +(1226 , 'XXXS / 30 / 2' , 'Mujer'), +(102 , 'XXS / 32 / 4' , 'Mujer'), +(2 , 'XS / 34 / 6' , 'Mujer'), +(3 , 'S / 36 / 8' , 'Mujer'), +(4 , 'M / 38 / 10' , 'Mujer'), +(5 , 'L / 40 / 12' , 'Mujer'), +(6 , 'XL / 42 / 14' , 'Mujer'), +(7 , 'XXL / 44 / 16' , 'Mujer'), +(310 , 'XXXL / 46 / 18' , 'Mujer'), +(311 , '4XL / 48 / 20' , 'Mujer'), +(312 , '5XL / 50 / 22' , 'Mujer'), +(1227 , '6XL / 52 / 24' , 'Mujer'), +(1228 , '7XL / 54 / 26' , 'Mujer'), +(1229 , '8XL / 56 / 28' , 'Mujer'), +(1230 , '9XL / 58 / 30' , 'Mujer'), +(90 , 'Talla única' , 'Mujer'), +(97 , 'Otros' , 'Mujer'), +(1364 , '34' , 'Mujer'), +(1580 , '34.5' , 'Mujer'), +(55 , '35' , 'Mujer'), +(1195 , '35.5' , 'Mujer'), +(56 , '36' , 'Mujer'), +(1196 , '36.5' , 'Mujer'), +(57 , '37' , 'Mujer'), +(1197 , '37.5' , 'Mujer'), +(58 , '38' , 'Mujer'), +(1198 , '38.5' , 'Mujer'), +(59 , '39' , 'Mujer'), +(1199 , '39.5' , 'Mujer'), +(60 , '40' , 'Mujer'), +(1200 , '40.5' , 'Mujer'), +(61 , '41' , 'Mujer'), +(1201 , '41.5' , 'Mujer'), +(62 , '42' , 'Mujer'), +(1579 , '42.5' , 'Mujer'), +(63 , '43' , 'Mujer'), +(1573 , '43.5' , 'Mujer'), +(1574 , '44' , 'Mujer'), +(1575 , '44.5' , 'Mujer'), +(1576 , '45' , 'Mujer'), +(1577 , '45.5' , 'Mujer'), +(1578 , '46' , 'Mujer'), +(94 , 'Talla única' , 'Mujer'), +(99 , 'Otra' , 'Mujer'), +(1247 , '80A y AA' , 'Mujer'), +(1248 , '80B' , 'Mujer'), +(1249 , '80C' , 'Mujer'), +(1250 , '80D' , 'Mujer'), +(1251 , '80E' , 'Mujer'), +(1252 , '80F' , 'Mujer'), +(1317 , '80G' , 'Mujer'), +(1318 , '80H' , 'Mujer'), +(1558 , '80I' , 'Mujer'), +(1319 , '80J' , 'Mujer'), +(1253 , '85A y AA' , 'Mujer'), +(1254 , '85B' , 'Mujer'), +(1255 , '85C' , 'Mujer'), +(1256 , '85D' , 'Mujer'), +(1257 , '85E' , 'Mujer'), +(1258 , '85F' , 'Mujer'), +(1320 , '85G' , 'Mujer'), +(1321 , '85H' , 'Mujer'), +(1559 , '85I' , 'Mujer'), +(1322 , '85J' , 'Mujer'), +(1259 , '90A y AA' , 'Mujer'), +(1260 , '90B' , 'Mujer'), +(1261 , '90C' , 'Mujer'), +(1262 , '90D' , 'Mujer'), +(1263 , '90E' , 'Mujer'), +(1264 , '90F' , 'Mujer'), +(1323 , '90G' , 'Mujer'), +(1324 , '90H' , 'Mujer'), +(1325 , '90J' , 'Mujer'), +(1265 , '95A y AA' , 'Mujer'), +(1266 , '95B' , 'Mujer'), +(1267 , '95C' , 'Mujer'), +(1268 , '95D' , 'Mujer'), +(1269 , '95E' , 'Mujer'), +(1270 , '95F' , 'Mujer'), +(1271 , '95G' , 'Mujer'), +(1272 , '95H' , 'Mujer'), +(1561 , '95I' , 'Mujer'), +(1273 , '95J' , 'Mujer'), +(1274 , '100A y AA' , 'Mujer'), +(1275 , '100B' , 'Mujer'), +(1276 , '100C' , 'Mujer'), +(1277 , '100D' , 'Mujer'), +(1278 , '100E' , 'Mujer'), +(1279 , '100F' , 'Mujer'), +(1280 , '100G' , 'Mujer'), +(1281 , '100H' , 'Mujer'), +(1562 , '100I' , 'Mujer'), +(1282 , '100J' , 'Mujer'), +(1283 , '105A y AA' , 'Mujer'), +(1284 , '105B' , 'Mujer'), +(1285 , '105C' , 'Mujer'), +(1286 , '105D' , 'Mujer'), +(1287 , '105E' , 'Mujer'), +(1288 , '105F' , 'Mujer'), +(1289 , '106G' , 'Mujer'), +(1290 , '105H' , 'Mujer'), +(1563 , '105I' , 'Mujer'), +(1291 , '105J' , 'Mujer'), +(1292 , '110A y AA' , 'Mujer'), +(1293 , '110B' , 'Mujer'), +(1294 , '110C' , 'Mujer'), +(1295 , '110D' , 'Mujer'), +(1296 , '110E' , 'Mujer'), +(1297 , '110F' , 'Mujer'), +(1298 , '110G' , 'Mujer'), +(1299 , '110H' , 'Mujer'), +(1564 , '110I' , 'Mujer'), +(1300 , '110J' , 'Mujer'), +(1301 , '115A y AA' , 'Mujer'), +(1302 , '115B' , 'Mujer'), +(1303 , '115C' , 'Mujer'), +(1304 , '115D' , 'Mujer'), +(1305 , '115E' , 'Mujer'), +(1306 , '115F' , 'Mujer'), +(1307 , '115G' , 'Mujer'), +(1308 , '115H' , 'Mujer'), +(1565 , '115I' , 'Mujer'), +(1309 , '115J' , 'Mujer'), +(1310 , 'Otra' , 'Mujer'), +(1394 , 'XXS' , 'Mujer'), +(1395 , 'XS' , 'Mujer'), +(1396 , 'S' , 'Mujer'), +(1397 , 'M' , 'Mujer'), +(1398 , 'L' , 'Mujer'), +(1399 , 'XL' , 'Mujer'), +(1400 , 'XXL' , 'Mujer'), +(1401 , 'XXXL' , 'Mujer'), +(1402 , '4XL' , 'Mujer'), +(1403 , '5XL' , 'Mujer'), +(1404 , '6XL' , 'Mujer'), +(1405 , '7XL' , 'Mujer'), +(1406 , '8XL' , 'Mujer'), +(1407 , '9XL' , 'Mujer'), +(578 , 'XS' , 'Mujer'), +(580 , 'S' , 'Mujer'), +(581 , 'M' , 'Mujer'), +(582 , 'L' , 'Mujer'), +(583 , 'XL' , 'Mujer'), +(584 , 'XXL' , 'Mujer'), +(1557 , 'Talla única' , 'Mujer'), +(664 , 'Otros' , 'Mujer'), +(1202 , '14.1' , 'Mujer'), +(1203 , '14.5' , 'Mujer'), +(1204 , '14.9' , 'Mujer'), +(1205 , '15.3' , 'Mujer'), +(1206 , '15.7' , 'Mujer'), +(1207 , '16.1' , 'Mujer'), +(1208 , '16.5' , 'Mujer'), +(1209 , '16.9' , 'Mujer'), +(1210 , '17.3' , 'Mujer'), +(1211 , '17.7' , 'Mujer'), +(1212 , '18.1' , 'Mujer'), +(1213 , '18.5' , 'Mujer'), +(1214 , '19 mm Ø / 21' , 'Mujer'), +(1215 , '19.4' , 'Mujer'), +(1216 , '19.8' , 'Mujer'), +(1217 , '20.2' , 'Mujer'), +(1218 , '20.6' , 'Mujer'), +(1219 , '21 mm Ø / 27' , 'Mujer'), +(1220 , '21.4' , 'Mujer'), +(1221 , '21.8' , 'Mujer'), +(1222 , '22.2' , 'Mujer'), +(1223 , '22.6' , 'Mujer'), +(1224 , 'Ajustable' , 'Mujer'), +(1388 , 'XS' , 'Mujer'), +(1389 , 'S' , 'Mujer'), +(1390 , 'M' , 'Mujer'), +(1391 , 'L' , 'Mujer'), +(1392 , 'XL' , 'Mujer'), +(1393 , 'XXL' , 'Mujer'), +(1387 , 'Talla única' , 'Mujer'), +(1373 , '52' , 'Mujer'), +(1374 , '53' , 'Mujer'), +(1375 , '54' , 'Mujer'), +(1376 , '55' , 'Mujer'), +(1377 , '56' , 'Mujer'), +(1378 , '57' , 'Mujer'), +(1379 , '58' , 'Mujer'), +(1380 , '59' , 'Mujer'), +(1381 , '60' , 'Mujer'), +(1382 , '61' , 'Mujer'), +(1383 , '62' , 'Mujer'), +(1384 , '63' , 'Mujer'), +(1385 , '64' , 'Mujer'), +(1386 , '65' , 'Mujer'), +(1429 , '30 mm o menos' , 'Mujer'), +(1430 , '31-38 mm' , 'Mujer'), +(1431 , '39-42 mm' , 'Mujer'), +(1432 , '43-46 mm' , 'Mujer'), +(1433 , '47 mm o más' , 'Mujer'), +(1435 , 'Talla única' , 'Mujer'), +(1408 , '5' , 'Mujer'), +(1409 , '5.5' , 'Mujer'), +(1410 , '6' , 'Mujer'), +(1411 , '6.5' , 'Mujer'), +(1412 , '7' , 'Mujer'), +(1413 , '7.5' , 'Mujer'), +(1414 , '8' , 'Mujer'), +(1415 , '8.5' , 'Mujer'), +(1416 , '9' , 'Mujer'), +(1417 , '9.5' , 'Mujer'), +(1418 , '10' , 'Mujer'), +(1419 , '10.5' , 'Mujer'), +(1420 , '11' , 'Mujer'), +(1421 , '11.5' , 'Mujer'), +(1422 , '12' , 'Mujer'), +(1423 , 'Talla única' , 'Mujer'), +(1424 , 'XS' , 'Mujer'), +(1425 , 'S' , 'Mujer'), +(1426 , 'M' , 'Mujer'), +(1427 , 'L' , 'Mujer'), +(1428 , 'XL' , 'Mujer'), +(1446 , '65 cm' , 'Mujer'), +(1447 , '70 cm' , 'Mujer'), +(1448 , '75 cm' , 'Mujer'), +(1449 , '80 cm' , 'Mujer'), +(1450 , '85 cm' , 'Mujer'), +(1451 , '90 cm' , 'Mujer'), +(1452 , '95 cm' , 'Mujer'), +(1453 , '100 cm' , 'Mujer'), +(1454 , '105 cm' , 'Mujer'), +(1455 , '110 cm' , 'Mujer'), +(1456 , '115 cm' , 'Mujer'), +(1582 , 'Ajustable' , 'Mujer'), +(1517 , 'S | 35–38' , 'Mujer'), +(1518 , 'M | 39–42' , 'Mujer'), +(1519 , 'L | 43–46' , 'Mujer'), +(1520 , 'XL | 47–51' , 'Mujer'), +(1521 , 'Talla única' , 'Mujer'), +(1487 , '30 x 50 cm' , 'Hogar'), +(1488 , '35 x 50 cm' , 'Hogar'), +(1366 , '40 x 40 cm' , 'Hogar'), +(1367 , '40 x 60 cm' , 'Hogar'), +(1368 , '45 x 45 cm' , 'Hogar'), +(1369 , '50 x 50 cm' , 'Hogar'), +(1370 , '60 x 60 cm' , 'Hogar'), +(1371 , '65 x 65 cm' , 'Hogar'), +(1372 , 'Otra' , 'Hogar'), +(1462 , '35 x 40 cm' , 'Hogar'), +(1463 , '40 x 40 cm' , 'Hogar'), +(1464 , '40 x 60 cm' , 'Hogar'), +(1465 , '40 x 75 cm' , 'Hogar'), +(1466 , '40 x 80 cm' , 'Hogar'), +(1467 , '40 x 90 cm' , 'Hogar'), +(1468 , '50 x 50 cm' , 'Hogar'), +(1469 , '50 x 60 cm' , 'Hogar'), +(1470 , '50 x 66 cm' , 'Hogar'), +(1471 , '50 x 70 cm' , 'Hogar'), +(1472 , '50 x 90 cm' , 'Hogar'), +(1473 , '65 x 65 cm' , 'Hogar'), +(1474 , '80 x 80 cm' , 'Hogar'), +(1475 , 'Otra' , 'Hogar'), +(1476 , '70 x 90 cm' , 'Hogar'), +(1477 , '80 x 100 cm' , 'Hogar'), +(1478 , '90 x 90 cm' , 'Hogar'), +(1479 , '100 x 150 cm' , 'Hogar'), +(1480 , '110 x 150 cm' , 'Hogar'), +(1481 , '110 x 170 cm' , 'Hogar'), +(1482 , '120 x 160 cm' , 'Hogar'), +(1483 , '125 x 150 cm' , 'Hogar'), +(1484 , '130 x 170 cm' , 'Hogar'), +(1485 , '150 x 200 cm' , 'Hogar'), +(1486 , 'Otro' , 'Hogar'), +(1492 , 'Individual (135-150 cm x 200-220 cm)' , 'Hogar'), +(1493 , 'Matrimonio (155-190 cm x 200-220 cm)' , 'Hogar'), +(1494 , 'Queen Size (200 cm x 200-220 cm)' , 'Hogar'), +(1495 , 'King Size (220-240 cm x 220-260 cm)' , 'Hogar'), +(1457 , 'Hasta 149 cm' , 'Hogar'), +(1458 , '150-199 cm' , 'Hogar'), +(1459 , '200-249 cm' , 'Hogar'), +(1460 , '250-299 cm' , 'Hogar'), +(1461 , '300 cm o más' , 'Hogar'), +(1312 , 'Individual (90–105 cm x 190–200 cm)' , 'Hogar'), +(1313 , 'Matrimonio (120-140 x 190-200 cm)' , 'Hogar'), +(1314 , 'Queen Size (160-170 x 190-200 cm)' , 'Hogar'), +(1315 , 'King Size (180–200 cm x 200 cm)' , 'Hogar'); \ No newline at end of file diff --git a/migrations/2023-06-29-160117_colors/down.sql b/migrations/2023-06-29-160117_colors/down.sql new file mode 100644 index 0000000..907e6ba --- /dev/null +++ b/migrations/2023-06-29-160117_colors/down.sql @@ -0,0 +1,4 @@ +-- This file should undo anything in `up.sql` + + +DROP TABLE COLOR ; \ No newline at end of file diff --git a/migrations/2023-06-29-160117_colors/up.sql b/migrations/2023-06-29-160117_colors/up.sql new file mode 100644 index 0000000..0632d13 --- /dev/null +++ b/migrations/2023-06-29-160117_colors/up.sql @@ -0,0 +1,34 @@ +CREATE TABLE IF NOT EXISTS COLOR( + id INTEGER PRIMARY KEY, + title VARCHAR(30) NOT NULL, + hex VARCHAR(7) NOT NULL +); + + INSERT INTO COLOR(id,title,hex) VALUES (1,'Noir','#000000'), + (2,'Marron','#663300'), + (3,'Gris','#919191'), + (4,'Beige','#f4e0c8'), + (5,'Rose','#ff0080'), + (6,'Violet','#800080'), + (7,'Rouge','#CC3300'), + (8,'Jaune','#fff200'), + (9,'Bleu','#007bc4'), + (10,'Vert','#369a3d'), + (11,'Orange','#FFA500'), + (12,'Blanc','#FFFFFF'), + (13,'Argenté','#dddddd'), + (14,'Doré','#be9927'), + (15,'Multie','#'), + (16,'Kaki','#86814A'), + (17,'Turquoise','#B7DEE8'), + (20,'Crème','#F8F8E1'), + (21,'Abricot','#FFCC98'), + (22,'Corail','#FE7F5D'), + (23,'Bordeaux','#AE2E3D'), + (24,'Rose','#FFCCCA'), + (25,'Lila','#D297D2'), + (26,'Bleu clair','#89CFF0'), + (27,'Marine','#35358D'), + (28,'Vert foncé','#356639'), + (29,'Moutarde','#E5B539'), + (30,'Menthe','#A2FFBC'); diff --git a/migrations/2023-06-29-161252_categories_tree/down.sql b/migrations/2023-06-29-161252_categories_tree/down.sql new file mode 100644 index 0000000..296d9d2 --- /dev/null +++ b/migrations/2023-06-29-161252_categories_tree/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` + +DROP TABLE CATEGORY_TREE; \ No newline at end of file diff --git a/migrations/2023-06-29-161252_categories_tree/up.sql b/migrations/2023-06-29-161252_categories_tree/up.sql new file mode 100644 index 0000000..c66ede9 --- /dev/null +++ b/migrations/2023-06-29-161252_categories_tree/up.sql @@ -0,0 +1,1048 @@ +-- Your SQL goes here + +CREATE TABLE CATEGORY_TREE( + id SERIAL PRIMARY KEY, -- SERIAL es AUTO INCREMENT en PostgreSQL + -- PRIMARY KEY ya es NOT NULL por defecto siempre + parent_id INTEGER NOT NULL, + child_id INTEGER NOT NULL +); + +INSERT INTO CATEGORY_TREE (id,parent_id,child_id) VALUES (1,1037,1773), + (2,1907,2525), + (3,1907,1090), + (4,1907,2526), + (5,1907,1087), + (6,1907,1076), + (7,1907,1080), + (8,1907,1834), + (9,1037,1907), + (10,1037,2524), + (11,1908,2527), + (12,1908,1078), + (13,1908,1079), + (14,1908,2528), + (15,1908,1086), + (16,1908,2614), + (17,1908,2596), + (18,1908,2529), + (19,1908,2530), + (20,1908,2531), + (21,1908,2532), + (22,1037,1908), + (23,4,1037), + (24,13,196), + (25,1917,190), + (26,1917,191), + (27,1917,192), + (28,1917,529), + (29,1917,193), + (30,1917,1066), + (31,13,1917), + (32,13,1067), + (33,13,194), + (34,13,195), + (35,13,1874), + (36,13,197), + (37,4,13), + (38,8,532), + (39,8,1125), + (40,8,1126), + (41,8,1128), + (42,8,1129), + (43,4,8), + (44,10,178), + (45,10,1056), + (46,10,1055), + (47,1774,1775), + (48,1774,1776), + (49,1774,1777), + (50,1774,1778), + (51,1774,1060), + (52,10,1774), + (53,10,1065), + (54,10,1779), + (55,10,1057), + (56,10,1059), + (57,10,1061), + (58,10,1058), + (59,10,179), + (60,10,176), + (61,4,10), + (62,11,198), + (63,11,199), + (64,11,200), + (65,11,1092), + (66,11,1093), + (67,11,1094), + (68,11,540), + (69,11,1097), + (70,11,539), + (71,11,541), + (72,11,542), + (73,11,201), + (74,4,11), + (75,12,222), + (76,12,1043), + (77,12,14), + (78,12,221), + (79,12,534), + (80,12,227), + (81,12,1041), + (82,12,223), + (83,12,225), + (84,12,224), + (85,12,1835), + (86,12,1042), + (87,12,1045), + (88,12,1837), + (89,12,1044), + (90,12,228), + (91,4,12), + (92,183,1839), + (93,183,1840), + (94,183,1841), + (95,183,1842), + (96,183,1843), + (97,183,1844), + (98,183,1845), + (99,183,1864), + (100,4,183), + (101,9,1070), + (102,9,1071), + (103,9,185), + (104,9,187), + (105,9,1846), + (106,9,184), + (107,9,525), + (108,9,526), + (109,9,189), + (110,4,9), + (111,15,1838), + (112,15,1099), + (113,15,203), + (114,15,538), + (115,15,1101), + (116,15,1100), + (117,15,1103), + (118,15,204), + (119,15,205), + (120,4,15), + (121,1035,1131), + (122,1035,1132), + (123,1035,1134), + (124,4,1035), + (125,28,218), + (126,28,219), + (127,28,1780), + (128,28,220), + (129,4,28), + (130,29,119), + (131,29,120), + (132,29,229), + (133,29,1781), + (134,29,123), + (135,29,1030), + (136,29,1263), + (137,29,1262), + (138,29,1847), + (139,29,124), + (140,4,29), + (141,1176,1179), + (142,1176,1182), + (143,1176,1178), + (144,1176,1177), + (145,1176,1185), + (146,1176,1181), + (147,1176,1184), + (148,1176,1183), + (149,1176,1186), + (150,1614,1615), + (151,1614,1616), + (152,1614,1617), + (153,1614,1618), + (154,1176,1614), + (155,1176,2084), + (156,4,1176), + (157,73,571), + (158,73,572), + (159,73,573), + (160,73,578), + (161,73,574), + (162,73,575), + (163,73,576), + (164,73,577), + (165,579,1440), + (166,579,1441), + (167,579,1442), + (168,579,1443), + (169,579,1444), + (170,579,1445), + (171,579,1446), + (172,73,579), + (173,73,1439), + (174,73,580), + (175,4,73), + (176,4,1782), + (177,4,18), + (178,1904,4), + (179,1049,2618), + (180,1049,2619), + (181,1049,211), + (182,1049,2620), + (183,1049,2621), + (184,1049,213), + (185,1049,2622), + (186,16,1049), + (187,16,2623), + (188,1909,548), + (189,1909,2633), + (190,1909,2634), + (191,1909,2635), + (192,1909,2689), + (193,16,1909), + (194,2624,2637), + (195,2624,2636), + (196,2624,2638), + (197,16,2624), + (198,543,2687), + (199,543,2688), + (200,16,543), + (201,16,215), + (202,2630,2639), + (203,2630,2640), + (204,2630,2641), + (205,2630,2642), + (206,2630,2643), + (207,2630,2644), + (208,2630,2645), + (209,2630,2646), + (210,2630,2647), + (211,2630,2648), + (212,2630,2649), + (213,2630,2650), + (214,2630,2651), + (215,2630,2652), + (216,2630,2653), + (217,2630,2654), + (218,2630,2655), + (219,16,2630), + (220,16,2632), + (221,1904,16), + (222,19,156), + (223,19,158), + (224,19,157), + (225,19,552), + (226,19,159), + (227,19,160), + (228,19,161), + (229,19,1784), + (230,19,1848), + (231,19,1493), + (232,19,1849), + (233,19,1850), + (234,19,155), + (235,1904,19), + (236,21,553), + (237,21,163), + (238,21,165), + (239,21,164), + (240,21,166), + (241,21,1785), + (242,21,167), + (243,21,162), + (244,1187,21), + (245,1187,22), + (246,1187,20), + (247,1187,26), + (248,89,236), + (249,89,237), + (250,89,238), + (251,89,239), + (252,89,240), + (253,1187,89), + (254,1187,90), + (255,88,230), + (256,88,231), + (257,88,232), + (258,88,233), + (259,88,234), + (260,88,235), + (261,1187,88), + (262,1187,1123), + (263,1187,1221), + (264,1187,1851), + (265,1187,1852), + (266,1187,1140), + (267,1904,1187), + (268,146,964), + (269,146,152), + (270,146,948), + (271,1906,1903), + (272,1906,950), + (273,1906,958), + (274,1906,962), + (275,1906,967), + (276,146,1906), + (277,146,1264), + (278,146,960), + (279,146,956), + (280,146,1902), + (281,146,153), + (282,1904,146), + (283,257,1816), + (284,257,1817), + (285,257,1818), + (286,257,1819), + (287,2050,257), + (288,2051,1225), + (289,2051,2533), + (290,2051,1227), + (291,2051,1861), + (292,2051,1859), + (293,2051,1230), + (294,1206,2051), + (295,1206,2553), + (296,2052,2534), + (297,2052,1223), + (298,2052,1224), + (299,2052,2535), + (300,2052,1858), + (301,2052,1226), + (302,2052,2536), + (303,2052,2537), + (304,2052,2538), + (305,2052,2539), + (306,2052,2550), + (307,2052,2551), + (308,1206,2052), + (309,1206,2552), + (310,2050,1206), + (311,536,1801), + (312,536,1802), + (313,536,1803), + (314,536,1804), + (315,536,1805), + (316,536,1865), + (317,76,536), + (318,77,1806), + (319,77,1807), + (320,77,1808), + (321,77,1809), + (322,77,1810), + (323,77,1868), + (324,76,77), + (325,76,560), + (326,2050,76), + (327,32,1786), + (328,32,1787), + (329,32,1788), + (330,32,1789), + (331,32,1790), + (332,32,1866), + (333,2050,32), + (334,79,1811), + (335,79,267), + (336,79,1812), + (337,79,266), + (338,79,1813), + (339,79,264), + (340,79,265), + (341,79,1814), + (342,79,1815), + (343,79,1825), + (344,79,268), + (345,2050,79), + (346,34,1820), + (347,34,1821), + (348,34,259), + (349,34,271), + (350,34,261), + (351,34,260), + (352,34,263), + (353,2050,34), + (354,80,1822), + (355,80,1823), + (356,80,1824), + (357,80,272), + (358,2050,80), + (359,85,1829), + (360,85,1828), + (361,85,1830), + (362,85,1867), + (363,2050,85), + (364,2050,84), + (365,30,581), + (366,30,582), + (367,30,583), + (368,30,586), + (369,30,584), + (370,30,585), + (371,587,1470), + (372,587,1471), + (373,587,1472), + (374,587,1473), + (375,587,1474), + (376,587,1475), + (377,587,1476), + (378,30,587), + (379,30,588), + (380,2050,30), + (381,2050,92), + (382,2050,83), + (383,5,2050), + (384,1231,2656), + (385,1233,2661), + (386,1233,2662), + (387,1233,2663), + (388,1233,1795), + (389,1233,2664), + (390,1231,1233), + (391,1231,2657), + (392,2658,2665), + (393,2658,2666), + (394,2658,2667), + (395,2658,2668), + (396,1231,2658), + (397,1238,2669), + (398,1238,2671), + (399,1238,2670), + (400,1231,1238), + (401,1231,2659), + (402,1452,2672), + (403,1452,2673), + (404,1452,2674), + (405,1452,2675), + (406,1452,2676), + (407,1452,2677), + (408,1452,2678), + (409,1452,2679), + (410,1452,2680), + (411,1452,1467), + (412,1452,2681), + (413,1452,2682), + (414,1452,1453), + (415,1452,2683), + (416,1452,2684), + (417,1452,2685), + (418,1452,2686), + (419,1231,1452), + (420,1231,1242), + (421,5,1231), + (422,82,93), + (423,94,245), + (424,94,247), + (425,94,246), + (426,94,1797), + (427,94,1798), + (428,94,1799), + (429,94,248), + (430,94,1862), + (431,94,249), + (432,82,94), + (433,95,241), + (434,95,242), + (435,95,243), + (436,95,244), + (437,95,1800), + (438,82,95), + (439,82,96), + (440,82,97), + (441,82,98), + (442,86,287), + (443,86,288), + (444,86,289), + (445,86,290), + (446,86,291), + (447,82,86), + (448,87,283), + (449,87,284), + (450,87,285), + (451,87,286), + (452,82,87), + (453,82,91), + (454,82,99), + (455,5,82), + (456,139,143), + (457,2055,1826), + (458,2055,1827), + (459,2055,971), + (460,139,2055), + (461,139,140), + (462,139,141), + (463,139,142), + (464,139,145), + (465,139,144), + (466,139,1863), + (467,139,968), + (468,5,139), + (469,1243,1514), + (470,1243,1515), + (471,1243,1516), + (472,1243,1517), + (473,1243,1875), + (474,1195,1243), + (475,1255,1525), + (476,1530,2695), + (477,1530,2696), + (478,1530,2697), + (479,1530,2698), + (480,1255,1530), + (481,1255,2690), + (482,1526,2753), + (483,1526,2701), + (484,1526,2702), + (485,1255,1526), + (486,2691,2704), + (487,2691,2705), + (488,2691,2707), + (489,1255,2691), + (490,1255,1528), + (491,1255,2692), + (492,1255,1534), + (493,2693,2708), + (494,2693,2709), + (495,2693,2710), + (496,2693,2711), + (497,2693,2712), + (498,2693,2713), + (499,2693,2714), + (500,2693,2715), + (501,2693,2716), + (502,2693,2717), + (503,1255,2693), + (504,1533,2718), + (505,1533,2719), + (506,1533,2720), + (507,1255,1533), + (508,1195,1255), + (509,1519,2540), + (510,1519,2541), + (511,1519,2542), + (512,1519,2543), + (513,1244,1519), + (514,1244,1518), + (515,1521,2544), + (516,1521,2545), + (517,1521,2546), + (518,1521,2547), + (519,1521,2548), + (520,1521,2549), + (521,1244,1521), + (522,2554,2556), + (523,2554,2557), + (524,2554,2555), + (525,2554,2558), + (526,1244,2554), + (527,2559,2560), + (528,2559,2565), + (529,2559,2582), + (530,1244,2559), + (531,1195,1244), + (532,1246,1542), + (533,1246,1543), + (534,1246,1544), + (535,1246,1548), + (536,1246,1549), + (537,1246,1550), + (538,1246,1551), + (539,1246,1877), + (540,1195,1246), + (541,1245,1535), + (542,1245,1536), + (543,1245,1537), + (544,1245,1538), + (545,1245,1539), + (546,1245,1540), + (547,1245,1541), + (548,1245,1878), + (549,1195,1245), + (550,1247,1554), + (551,1247,1553), + (552,1195,1247), + (553,1195,1248), + (554,1249,1559), + (555,1249,1560), + (556,1249,1562), + (557,1249,1565), + (558,1249,1568), + (559,1249,1250), + (560,1249,2079), + (561,1249,1880), + (562,1195,1249), + (563,1195,1258), + (564,1574,1577), + (565,1574,1578), + (566,1574,1580), + (567,1574,1581), + (568,1574,1582), + (569,1574,1584), + (570,1574,1586), + (571,1574,1881), + (572,1195,1574), + (573,1251,1590), + (574,1251,1592), + (575,1251,1593), + (576,1195,1251), + (577,1252,1600), + (578,1252,1601), + (579,1252,1602), + (580,1252,1872), + (581,1195,1252), + (582,1594,1596), + (583,1594,1597), + (584,1594,1598), + (585,1195,1594), + (586,1195,1253), + (587,1195,1510), + (588,1195,1604), + (589,1195,1606), + (590,1195,2080), + (591,1195,1254), + (592,1193,1195), + (593,1196,1642), + (594,1196,1643), + (595,1196,1644), + (596,1196,1645), + (597,1196,1883), + (598,1194,1196), + (599,1256,1653), + (600,1256,2721), + (601,1657,2726), + (602,1657,2727), + (603,1657,2728), + (604,1657,2729), + (605,1256,1657), + (606,1256,2722), + (607,2723,2730), + (608,2723,2732), + (609,2723,2733), + (610,2723,2734), + (611,1256,2723), + (612,1256,1655), + (613,1256,1661), + (614,2724,2735), + (615,2724,2737), + (616,2724,2738), + (617,2724,2742), + (618,2724,2743), + (619,2724,2744), + (620,2724,2745), + (621,2724,2746), + (622,2724,2748), + (623,2724,2749), + (624,1256,2724), + (625,1660,2750), + (626,1660,2751), + (627,1660,2752), + (628,1256,1660), + (629,1194,1256), + (630,1647,2561), + (631,1647,2562), + (632,1647,2563), + (633,1647,2564), + (634,1197,1647), + (635,1197,1646), + (636,1649,2571), + (637,1649,2573), + (638,1649,2574), + (639,1649,2575), + (640,1649,2576), + (641,1649,2577), + (642,1197,1649), + (643,2583,2604), + (644,2583,2609), + (645,2583,2602), + (646,2583,2606), + (647,1197,2583), + (648,2590,2610), + (649,2590,2613), + (650,2590,2612), + (651,1197,2590), + (652,1194,1197), + (653,1199,1668), + (654,1199,1669), + (655,1199,1670), + (656,1199,1671), + (657,1199,1672), + (658,1199,1673), + (659,1199,1887), + (660,1194,1199), + (661,1198,1662), + (662,1198,1663), + (663,1198,1664), + (664,1198,1665), + (665,1198,1666), + (666,1198,1667), + (667,1198,1886), + (668,1194,1198), + (669,1200,1696), + (670,1200,1697), + (671,1200,1698), + (672,1200,1701), + (673,1200,1702), + (674,1200,1201), + (675,1200,2082), + (676,1200,1870), + (677,1194,1200), + (678,1194,1257), + (679,1714,1749), + (680,1714,1740), + (681,1714,1741), + (682,1714,1743), + (683,1714,1745), + (684,1714,1746), + (685,1714,1748), + (686,1194,1714), + (687,1202,1750), + (688,1202,1751), + (689,1194,1202), + (690,1203,1757), + (691,1203,1758), + (692,1203,1759), + (693,1203,1871), + (694,1194,1203), + (695,1752,1754), + (696,1752,1755), + (697,1194,1752), + (698,1194,1204), + (699,1194,1760), + (700,1194,1761), + (701,1194,1762), + (702,1194,2083), + (703,1194,1205), + (704,1193,1194), + (705,1499,1730), + (706,1499,1725), + (707,1499,1731), + (708,1499,1763), + (709,1499,1764), + (710,1499,1765), + (711,1499,1766), + (712,1499,1767), + (713,1499,1768), + (714,1499,1769), + (715,1499,1770), + (716,1499,1771), + (717,1499,2085), + (718,1499,2086), + (719,1193,1499), + (720,1620,1622), + (721,1620,1623), + (722,1620,1624), + (723,1620,1625), + (724,1620,1626), + (725,1620,1627), + (726,1500,1620), + (727,1621,1628), + (728,1621,1629), + (729,1621,1630), + (730,1621,1631), + (731,1621,1633), + (732,1621,1640), + (733,1621,2088), + (734,1500,1621), + (735,1500,1674), + (736,1500,1675), + (737,1676,1678), + (738,1676,1679), + (739,1676,1680), + (740,1676,2087), + (741,1500,1676), + (742,1681,1682), + (743,1681,1683), + (744,1681,1684), + (745,1681,1685), + (746,1681,1686), + (747,1500,1681), + (748,1687,1688), + (749,1687,1689), + (750,1500,1687), + (751,1500,1690), + (752,1500,1691), + (753,1692,1695), + (754,1692,1700), + (755,1692,1703), + (756,1692,1772), + (757,1500,1692), + (758,1193,1500), + (759,1496,1512), + (760,1496,1611), + (761,1496,1612), + (762,1496,1613), + (763,1496,1511), + (764,1193,1496), + (765,1497,1599), + (766,1497,1603), + (767,1497,1595), + (768,1497,1605), + (769,1497,1607), + (770,1497,1608), + (771,1497,1609), + (772,1497,1610), + (773,1193,1497), + (774,1495,1503), + (775,1495,1504), + (776,1193,1495), + (777,1498,1561), + (778,1498,1563), + (779,1498,1566), + (780,1567,1569), + (781,1567,1570), + (782,1567,1571), + (783,1498,1567), + (784,1498,1572), + (785,1498,1573), + (786,1498,1575), + (787,1576,1579), + (788,1576,1585), + (789,1576,1587), + (790,1576,1588), + (791,1576,1589), + (792,1576,1591), + (793,1498,1576), + (794,1193,1498), + (795,1501,1508), + (796,1501,1509), + (797,1193,1501), + (798,1193,1502), + (799,1924,1942), + (800,1924,1943), + (801,1924,1944), + (802,1924,1945), + (803,1919,1924), + (804,1919,1925), + (805,1926,1946), + (806,1926,1955), + (807,1919,1926), + (808,1919,1974), + (809,1927,1953), + (810,1927,1954), + (811,1919,1927), + (812,1919,1928), + (813,1919,1929), + (814,1930,1947), + (815,1930,1948), + (816,1930,1949), + (817,1919,1930), + (818,1918,1919), + (819,1935,1957), + (820,1935,1956), + (821,1934,1935), + (822,1936,1966), + (823,1936,1967), + (824,1934,1936), + (825,1934,1941), + (826,1934,1937), + (827,1938,1969), + (828,1938,1968), + (829,1934,1938), + (830,1939,1962), + (831,1939,1963), + (832,1939,2012), + (833,1939,1964), + (834,1939,1965), + (835,1934,1939), + (836,1934,1940), + (837,1918,1934), + (838,1931,1950), + (839,1931,1951), + (840,1931,1970), + (841,1931,1952), + (842,1920,1931), + (843,1932,1958), + (844,1932,1959), + (845,1932,1960), + (846,1932,1961), + (847,1920,1932), + (848,2005,2006), + (849,2005,2007), + (850,2005,2008), + (851,2005,2009), + (852,2005,2010), + (853,2005,2011), + (854,1920,2005), + (855,1918,1920), + (856,2371,2378), + (857,2371,2379), + (858,2371,2380), + (859,2313,2371), + (860,2372,2381), + (861,2372,2382), + (862,2372,2383), + (863,2313,2372), + (864,2373,2384), + (865,2373,2385), + (866,2373,2386), + (867,2313,2373), + (868,2374,2390), + (869,2374,2391), + (870,2374,2392), + (871,2313,2374), + (872,2375,2399), + (873,2375,2402), + (874,2375,2405), + (875,2313,2375), + (876,2377,2406), + (877,2377,2407), + (878,2377,2409), + (879,2313,2377), + (880,2376,2412), + (881,2376,2420), + (882,2376,2421), + (883,2313,2376), + (884,2422,2431), + (885,2422,2447), + (886,2422,2448), + (887,2313,2422), + (888,2323,2449), + (889,2323,2450), + (890,2323,2451), + (891,2313,2323), + (892,2324,2452), + (893,2324,2453), + (894,2324,2454), + (895,2313,2324), + (896,2366,2455), + (897,2366,2456), + (898,2366,2458), + (899,2313,2366), + (900,2367,2474), + (901,2367,2475), + (902,2367,2476), + (903,2313,2367), + (904,2313,2368), + (905,2369,2465), + (906,2369,2466), + (907,2369,2469), + (908,2313,2369), + (909,2370,2459), + (910,2370,2460), + (911,2370,2461), + (912,2370,2462), + (913,2370,2463), + (914,2370,2464), + (915,2313,2370), + (916,2309,2313), + (917,2311,2321), + (918,2311,2477), + (919,2311,2322), + (920,2311,2478), + (921,2311,2479), + (922,2311,2480), + (923,2311,2481), + (924,2311,2482), + (925,2311,2483), + (926,2309,2311), + (927,2314,2328), + (928,2314,2329), + (929,2314,2330), + (930,2314,2332), + (931,2310,2314), + (932,2315,2521), + (933,2315,2333), + (934,2315,2334), + (935,2310,2315), + (936,2309,2310), + (937,2319,2336), + (938,2319,2337), + (939,2319,2338), + (940,2319,2339), + (941,2319,2340), + (942,2319,2341), + (943,2319,2342), + (944,2319,2343), + (945,2319,2344), + (946,2312,2319), + (947,2320,2345), + (948,2320,2346), + (949,2320,2347), + (950,2320,2348), + (951,2320,2349), + (952,2320,2350), + (953,2320,2351), + (954,2320,2352), + (955,2320,2353), + (956,2320,2354), + (957,2320,2355), + (958,2320,2356), + (959,2320,2357), + (960,2320,2358), + (961,2320,2359), + (962,2320,2360), + (963,2320,2361), + (964,2320,2362), + (965,2312,2320), + (966,2318,2363), + (967,2318,2364), + (968,2318,2365), + (969,2312,2318), + (970,2309,2312), + (971,2109,2512), + (972,2109,2511), + (973,2095,2109), + (974,2112,2119), + (975,2112,2484), + (976,2112,2517), + (977,2112,2518), + (978,2112,2120), + (979,2112,2121), + (980,2095,2112), + (981,2115,2515), + (982,2115,2514), + (983,2115,2513), + (984,2095,2115), + (985,2113,2122), + (986,2113,2124), + (987,2113,2123), + (988,2113,2516), + (989,2095,2113), + (990,2488,2510), + (991,2488,2509), + (992,2095,2488), + (993,2110,2117), + (994,2110,2118), + (995,2095,2110), + (996,2111,2508), + (997,2111,2507), + (998,2095,2111), + (999,2114,2506), + (1000,2114,2505), + (1001,2095,2114), + (1002,2093,2095), + (1003,2098,2099), + (1004,2098,2126), + (1005,2096,2098), + (1006,2137,2500), + (1007,2137,2501), + (1008,2137,2502), + (1009,2137,2503), + (1010,2137,2504), + (1011,2096,2137), + (1012,2131,2133), + (1013,2131,2134), + (1014,2096,2131), + (1015,2096,2097), + (1016,2125,2499), + (1017,2125,2498), + (1018,2096,2125), + (1019,2127,2128), + (1020,2127,2129), + (1021,2127,2130), + (1022,2096,2127), + (1023,2096,2489), + (1024,2136,2496), + (1025,2136,2497), + (1026,2096,2136), + (1027,2093,2096), + (1028,2138,2140), + (1029,2138,2142), + (1030,2093,2138), + (1031,2485,2491), + (1032,2485,2490), + (1033,2093,2485), + (1034,2486,2492), + (1035,2486,2493), + (1036,2093,2486), + (1037,2487,2494), + (1038,2487,2495), + (1039,2093,2487); diff --git a/migrations/2023-06-29-161527_categories/down.sql b/migrations/2023-06-29-161527_categories/down.sql new file mode 100644 index 0000000..2e2f6c4 --- /dev/null +++ b/migrations/2023-06-29-161527_categories/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` + +DROP TABLE CATEGORY; \ No newline at end of file diff --git a/migrations/2023-06-29-161527_categories/up.sql b/migrations/2023-06-29-161527_categories/up.sql new file mode 100644 index 0000000..97c1d67 --- /dev/null +++ b/migrations/2023-06-29-161527_categories/up.sql @@ -0,0 +1,1061 @@ +-- SQLBook: Code +-- Your SQL goes here + -- patron mamado de visual \((\d+),'(.+?)'(.+?)\n + -- regex por el cual sustituir "$1,$2"\n + +CREATE TABLE CATEGORY( + id INTEGER PRIMARY KEY, + title VARCHAR(80) NOT NULL, + code VARCHAR(80) NOT NULL, + parent_id INTEGER NOT NULL, + url VARCHAR(256) NOT NULL, + url_en VARCHAR(256) NOT NULL +); + + INSERT INTO CATEGORY(id,title,code,parent_id,url,url_en) VALUES + (1904,'Women','WOMEN_ROOT',0,'/women','/women'), + (4,'Clothes','WOMENS',1904,'/women/clothes','/women/clothes'), + (1037,'Outerwear','COATS_JACKETS',4,'/women/clothes/outerwear','/women/clothes/outerwear'), + (1773,'Capes & ponchos','CAPES_PONCHOS',1037,'/women/clothes/coats-and-jackets/capes-and-ponchos','/women/clothes/coats-and-jackets/capes-and-ponchos'), + (1907,'Coats','W_COATS',1037,'/women/clothes/coats-and-jackets-1907','/women/clothes/coats-and-jackets-1907'), + (2525,'Duffle coats','WOMEN_DUFFLE_COATS',1907,'/women/clothes/outerwear/coats/duffle-coats','/women/clothes/outerwear/coats/duffle-coats'), + (1090,'Faux fur coats','FAUX_FUR_COATS',1907,'/women/clothes/coats-and-jackets/faux-fur-coats','/women/clothes/coats-and-jackets/faux-fur-coats'), + (2526,'Overcoats & long coats','WOMEN_OVERCOATS_LONGCOATS',1907,'/women/clothes/outerwear/coats/overcoats-and-long-coats','/women/clothes/outerwear/coats/overcoats-and-long-coats'), + (1087,'Parkas','PARKAS',1907,'/women/clothes/coats-and-jackets/parkas','/women/clothes/coats-and-jackets/parkas'), + (1076,'Peacoats','PEA_COATS',1907,'/women/clothes/outerwear/coats/peacoats','/women/clothes/outerwear/coats/peacoats'), + (1080,'Raincoats','W_RAINCOATS',1907,'/women/clothes/coats-and-jackets/raincoats','/women/clothes/coats-and-jackets/raincoats'), + (1834,'Trench coats','W_TRENCH_COATS',1907,'/women/clothes/coats-and-jackets/trench-coats','/women/clothes/coats-and-jackets/trench-coats'), + (2524,'Gilets & body warmers','WOMEN_OUTERWEAR_VESTS',1037,'/women/clothes/outerwear/gilets-and-body-warmers','/women/clothes/outerwear/gilets-and-body-warmers'), + (1908,'Jackets','W_JACKETS',1037,'/women/clothes/coats-and-jackets/jackets','/women/clothes/coats-and-jackets/jackets'), + (2527,'Biker & racer jackets','WOMEN_BIKER_RACER_JACKETS',1908,'/women/clothes/outerwear/jackets/biker-and-racer-jackets','/women/clothes/outerwear/jackets/biker-and-racer-jackets'), + (1078,'Bomber jackets','BOMBER_JACKETS',1908,'/women/clothes/coats-and-jackets/jackets/bomber-jackets','/women/clothes/coats-and-jackets/jackets/bomber-jackets'), + (1079,'Denim jackets','DENIM_JACKETS',1908,'/women/clothes/coats-and-jackets/jackets/denim-jackets','/women/clothes/coats-and-jackets/jackets/denim-jackets'), + (2528,'Field & utility jackets','WOMEN_MILITARY_UTILITY_JACKETS',1908,'/women/clothes/outerwear/jackets/field-and-utility-jackets','/women/clothes/outerwear/jackets/field-and-utility-jackets'), + (1086,'Fleece jackets','FLEECE_JACKETS',1908,'/women/clothes/coats-and-jackets/jackets/fleece-jackets','/women/clothes/coats-and-jackets/jackets/fleece-jackets'), + (2614,'Puffer jackets','WOMEN_PUFFER_JACKETS',1908,'/women/clothes/outerwear/jackets/puffer-jackets','/women/clothes/outerwear/jackets/puffer-jackets'), + (2596,'Quilted jackets','WOMEN_QUILTED_JACKETS',1908,'/women/clothes/outerwear/jackets/quilted-jackets','/women/clothes/outerwear/jackets/quilted-jackets'), + (2529,'Shackets','WOMEN_SHACKETS',1908,'/women/clothes/outerwear/jackets/shackets','/women/clothes/outerwear/jackets/shackets'), + (2530,'Ski & snowboard jackets','WOMEN_SKI_SNOWBOARD_JACKETS',1908,'/women/clothes/outerwear/jackets/ski-and-snowboard-jackets','/women/clothes/outerwear/jackets/ski-and-snowboard-jackets'), + (2531,'Varsity jackets','WOMEN_VARISTY_JACKETS',1908,'/women/clothes/outerwear/jackets/varsity-jackets','/women/clothes/outerwear/jackets/varsity-jackets'), + (2532,'Windbreakers','WOMEN_WINDBREAKERS',1908,'/women/clothes/outerwear/jackets/windbreakers','/women/clothes/outerwear/jackets/windbreakers'), + (13,'Jumpers & sweaters','PULLOVERS_SWEATERS',4,'/women/clothes/jumpers-and-sweaters','/women/clothes/jumpers-and-sweaters'), + (196,'Hoodies & sweatshirts','HOODIES_JUMPERS',13,'/women/clothes/jumpers-and-sweaters/hoodies-and-sweatshirts','/women/clothes/jumpers-and-sweaters/hoodies-and-sweatshirts'), + (1917,'Jumpers','W_NEW_SWEATERS',13,'/women/clothes/jumpers-and-sweaters/jumpers','/women/clothes/jumpers-and-sweaters/jumpers'), + (190,'V-neck jumpers','V_NECK_SWEATERS',1917,'/women/clothes/jumpers-and-sweaters/sweaters/v-neck-jumpers','/women/clothes/jumpers-and-sweaters/sweaters/v-neck-jumpers'), + (191,'Turtleneck jumpers','TURTLENECK_SWEATERS',1917,'/women/clothes/jumpers-and-sweaters/sweaters/turtleneck-jumpers','/women/clothes/jumpers-and-sweaters/sweaters/turtleneck-jumpers'), + (192,'Long jumpers','LONG_SWEATERS',1917,'/women/clothes/jumpers-and-sweaters/sweaters/long-jumpers','/women/clothes/jumpers-and-sweaters/sweaters/long-jumpers'), + (529,'Knitted jumpers','KNITTED_SWEATERS',1917,'/women/clothes/jumpers-and-sweaters/sweaters/knitted-jumpers','/women/clothes/jumpers-and-sweaters/sweaters/knitted-jumpers'), + (193,'¾-sleeve jumpers','34_SLEEVE_SWEATERS',1917,'/women/clothes/jumpers-and-sweaters/sweaters/three-fourths-sleeve-jumpers','/women/clothes/jumpers-and-sweaters/sweaters/three-fourths-sleeve-jumpers'), + (1066,'Other jumpers','W_SWEATERS',1917,'/women/clothes/jumpers-and-sweaters/sweaters/other-jumpers','/women/clothes/jumpers-and-sweaters/sweaters/other-jumpers'), + (1067,'Kimonos','KIMONOS',13,'/women/clothes/jumpers-and-sweaters/kimonos','/women/clothes/jumpers-and-sweaters/kimonos'), + (194,'Cardigans','CARDIGANS',13,'/women/clothes/jumpers-and-sweaters/cardigans','/women/clothes/jumpers-and-sweaters/cardigans'), + (195,'Boleros','BOLERO',13,'/women/clothes/jumpers-and-sweaters/boleros','/women/clothes/jumpers-and-sweaters/boleros'), + (1874,'Waistcoats','WOMEN_WAISTCOAT_SWEATER',13,'/women/clothes/jumpers-and-sweaters/waistcoats','/women/clothes/jumpers-and-sweaters/waistcoats'), + (197,'Other jumpers & sweaters','WOM_PUL_OTHER',13,'/women/clothes/jumpers-and-sweaters/other-jumpers-and-sweaters','/women/clothes/jumpers-and-sweaters/other-jumpers-and-sweaters'), + (8,'Suits & blazers','BLAZERS',4,'/women/clothes/suits-and-blazers','/women/clothes/suits-and-blazers'), + (532,'Blazers','WOM_BLA_BLAZERS',8,'/women/clothes/suits-and-blazers/blazers','/women/clothes/suits-and-blazers/blazers'), + (1125,'Trouser suits','W_PANTSUITS',8,'/women/clothes/suits-and-blazers/trouser-suits','/women/clothes/suits-and-blazers/trouser-suits'), + (1126,'Skirt suits','W_SKIRT_SUITS',8,'/women/clothes/suits-and-blazers/skirt-suits','/women/clothes/suits-and-blazers/skirt-suits'), + (1128,'Suit separates','W_SUIT_SEPARATES',8,'/women/clothes/suits-and-blazers/suit-separates','/women/clothes/suits-and-blazers/suit-separates'), + (1129,'Other suits & blazers','W_OTHER_SUITS_BLAZERS',8,'/women/clothes/suits-and-blazers/other-suits-and-blazers','/women/clothes/suits-and-blazers/other-suits-and-blazers'), + (10,'Dresses','DRESSES',4,'/women/clothes/dresses-10','/women/clothes/dresses-10'), + (178,'Mini-dresses','MINI_DRESSES',10,'/women/clothes/dresses/mini-dresses','/women/clothes/dresses/mini-dresses'), + (1056,'Midi-dresses','MIDI_DRESSES',10,'/women/clothes/dresses/midi-dresses','/women/clothes/dresses/midi-dresses'), + (1055,'Long dresses','MAXI_DRESSES',10,'/women/clothes/dresses/long-dresses','/women/clothes/dresses/long-dresses'), + (1774,'Special-occasion dresses','OCCASIONAL_DRESSES',10,'/women/clothes/dresses/special-occasion-dresses','/women/clothes/dresses/special-occasion-dresses'), + (1775,'Party & cocktail dresses','PARTY_DRESSES',1774,'/women/clothes/dresses/special-occasion-dresses/party-and-cocktail-dresses','/women/clothes/dresses/special-occasion-dresses/party-and-cocktail-dresses'), + (1776,'Wedding dresses','WEDDING_DRESSES1',1774,'/women/clothes/dresses/special-occasion-dresses/wedding-dresses','/women/clothes/dresses/special-occasion-dresses/wedding-dresses'), + (1777,'Prom dresses','PROM_DRESSES1',1774,'/women/clothes/dresses/special-occasion-dresses/prom-dresses','/women/clothes/dresses/special-occasion-dresses/prom-dresses'), + (1778,'Evening dresses','EVENING_DRESSES1',1774,'/women/clothes/dresses/special-occasion-dresses/evening-dresses','/women/clothes/dresses/special-occasion-dresses/evening-dresses'), + (1060,'Backless dresses','BACKLESS_DRESSES',1774,'/women/clothes/dresses/special-occasion-dresses/backless-dresses','/women/clothes/dresses/special-occasion-dresses/backless-dresses'), + (1065,'Summer dresses','SUMMER_DRESSES',10,'/women/clothes/dresses/summer-dresses','/women/clothes/dresses/summer-dresses'), + (1779,'Winter dresses','WINTER_DRESSES',10,'/women/clothes/dresses/winter-dresses','/women/clothes/dresses/winter-dresses'), + (1057,'Formal & work dresses','FORMAL_DRESSES',10,'/women/clothes/dresses/formal-and-work-dresses','/women/clothes/dresses/formal-and-work-dresses'), + (1059,'Casual dresses','CASUAL_DRESSES',10,'/women/clothes/dresses/casual-dresses','/women/clothes/dresses/casual-dresses'), + (1061,'Strapless dresses','STRAPLESS_DRESSES',10,'/women/clothes/dresses/strapless-dresses','/women/clothes/dresses/strapless-dresses'), + (1058,'Little black dresses','LITTLE_BLACK_DRESSES',10,'/women/clothes/dresses/little-black-dresses','/women/clothes/dresses/little-black-dresses'), + (179,'Denim dresses','JEANS_DRESSES_TUNICS',10,'/women/clothes/dresses/denim-dresses','/women/clothes/dresses/denim-dresses'), + (176,'Other dresses','WOM_DRE_OTHER',10,'/women/clothes/dresses/other-dresses','/women/clothes/dresses/other-dresses'), + (11,'Skirts','SKIRTS',4,'/women/clothes/skirts','/women/clothes/skirts'), + (198,'Mini-skirts','MINI_SKIRTS',11,'/women/clothes/skirts/mini-skirts','/women/clothes/skirts/mini-skirts'), + (199,'Midi skirts','KNEE_LENGTH_SKIRTS',11,'/women/clothes/skirts/midi-skirts','/women/clothes/skirts/midi-skirts'), + (200,'Maxi-skirts','MAXI_SKIRTS',11,'/women/clothes/skirts/maxi-skirts','/women/clothes/skirts/maxi-skirts'), + (1092,'A-line skirts','A_LINE_SKIRTS',11,'/women/clothes/skirts/a-line-skirts','/women/clothes/skirts/a-line-skirts'), + (1093,'Bodycon skirts','BODYCON_SKIRTS',11,'/women/clothes/skirts/bodycon-skirts','/women/clothes/skirts/bodycon-skirts'), + (1094,'Skater skirts','SKATER_SKIRTS',11,'/women/clothes/skirts/skater-skirts','/women/clothes/skirts/skater-skirts'), + (540,'Denim skirts','JEANS_SKIRTS',11,'/women/clothes/skirts/denim-skirts','/women/clothes/skirts/denim-skirts'), + (1097,'Pleated skirts','PLEATED_SKIRTS',11,'/women/clothes/skirts/pleated-skirts','/women/clothes/skirts/pleated-skirts'), + (539,'High-waisted skirts','HIGH_WAIST_SKIRTS',11,'/women/clothes/skirts/high-waisted-skirts','/women/clothes/skirts/high-waisted-skirts'), + (541,'Tulip skirts','TULIP_SKIRTS',11,'/women/clothes/skirts/tulip-skirts','/women/clothes/skirts/tulip-skirts'), + (542,'Pencil skirts','PENCIL_SKIRTS',11,'/women/clothes/skirts/pencil-skirts','/women/clothes/skirts/pencil-skirts'), + (201,'Other skirts','WOM_SKI_OTHER',11,'/women/clothes/skirts/other-skirts','/women/clothes/skirts/other-skirts'), + (12,'Tops & t-shirts','TOPS_T_SHIRTS',4,'/women/clothes/tops-and-t-shirts','/women/clothes/tops-and-t-shirts'), + (222,'Shirts','SHIRTS',12,'/women/clothes/tops-and-t-shirts/shirts','/women/clothes/tops-and-t-shirts/shirts'), + (1043,'Blouses','BLOUSES',12,'/women/clothes/tops-and-t-shirts/blouses','/women/clothes/tops-and-t-shirts/blouses'), + (14,'Camis','VESTS',12,'/women/clothes/tops-and-t-shirts/camis','/women/clothes/tops-and-t-shirts/camis'), + (221,'T-shirts','WOM_TOP_T_SHIRTS',12,'/women/clothes/tops-and-t-shirts/t-shirts','/women/clothes/tops-and-t-shirts/t-shirts'), + (534,'Vest tops','TANK_TOPS',12,'/women/clothes/tops-and-t-shirts/vest-tops','/women/clothes/tops-and-t-shirts/vest-tops'), + (227,'Tunics','TUNICS',12,'/women/clothes/tops-and-t-shirts/tunics','/women/clothes/tops-and-t-shirts/tunics'), + (1041,'Crop tops','CROP_TOPS',12,'/women/clothes/tops-and-t-shirts/crop-tops','/women/clothes/tops-and-t-shirts/crop-tops'), + (223,'Short-sleeved tops','SHORT_SLEEVE_BLOUSES',12,'/women/clothes/tops-and-t-shirts/short-sleeved-tops','/women/clothes/tops-and-t-shirts/short-sleeved-tops'), + (225,'¾-sleeve tops','MIDDLE_SLEEVE_BLOUSES',12,'/women/clothes/tops-and-t-shirts/three-fourths-sleeve-tops','/women/clothes/tops-and-t-shirts/three-fourths-sleeve-tops'), + (224,'Long-sleeved tops','LONG_SLEEVE_BLOUSES',12,'/women/clothes/tops-and-t-shirts/long-sleeved-tops','/women/clothes/tops-and-t-shirts/long-sleeved-tops'), + (1835,'Bodysuits','TOPS_BODIES',12,'/women/clothes/tops-and-t-shirts/bodysuits','/women/clothes/tops-and-t-shirts/bodysuits'), + (1042,'Off-the-shoulder tops','TUBE_TOPS',12,'/women/clothes/tops-and-t-shirts/off-the-shoulder-tops','/women/clothes/tops-and-t-shirts/off-the-shoulder-tops'), + (1045,'Turtlenecks','W_TURTLENECKS',12,'/women/clothes/tops-and-t-shirts/turtlenecks','/women/clothes/tops-and-t-shirts/turtlenecks'), + (1837,'Peplum tops','PEPLUM_TOPS',12,'/women/clothes/tops-and-t-shirts/peplum-tops','/women/clothes/tops-and-t-shirts/peplum-tops'), + (1044,'Halterneck tops','HALTER_TOPS',12,'/women/clothes/tops-and-t-shirts/halterneck-tops','/women/clothes/tops-and-t-shirts/halterneck-tops'), + (228,'Other tops & t-shirts','WOM_TOP_OTHER',12,'/women/clothes/tops-and-t-shirts/other-tops-and-t-shirts','/women/clothes/tops-and-t-shirts/other-tops-and-t-shirts'), + (183,'Jeans','JEANS',4,'/women/clothes/jeans','/women/clothes/jeans'), + (1839,'Boyfriend jeans','BOYFRIEND_JEANS',183,'/women/clothes/jeans/boyfriend-jeans','/women/clothes/jeans/boyfriend-jeans'), + (1840,'Cropped jeans','W_CROPPED_JEANS',183,'/women/clothes/jeans/cropped-jeans','/women/clothes/jeans/cropped-jeans'), + (1841,'Flared jeans','FLARED_JEANS',183,'/women/clothes/jeans/flared-jeans','/women/clothes/jeans/flared-jeans'), + (1842,'High waisted jeans','W_HIGH_WAIST_JEANS',183,'/women/clothes/jeans/high-waisted-jeans','/women/clothes/jeans/high-waisted-jeans'), + (1843,'Ripped jeans','W_RIPPED_JEANS',183,'/women/clothes/jeans/ripped-jeans','/women/clothes/jeans/ripped-jeans'), + (1844,'Skinny jeans','W_SKINNY_JEANS',183,'/women/clothes/jeans/skinny-jeans','/women/clothes/jeans/skinny-jeans'), + (1845,'Straight jeans','W_STRAIGHT_JEANS',183,'/women/clothes/jeans/straight-jeans','/women/clothes/jeans/straight-jeans'), + (1864,'Other','JEANS_OTHER',183,'/women/clothes/jeans/other','/women/clothes/jeans/other'), + (9,'Trousers & leggings','TROUSERS',4,'/women/clothes/trousers-and-leggings','/women/clothes/trousers-and-leggings'), + (1070,'Cropped trousers & chinos','CROPPED_PANTS',9,'/women/clothes/trousers-and-leggings/cropped-trousers-and-chinos','/women/clothes/trousers-and-leggings/cropped-trousers-and-chinos'), + (1071,'Wide-leg trousers','WIDE_LEG_PANTS',9,'/women/clothes/trousers-and-leggings/wide-leg-trousers','/women/clothes/trousers-and-leggings/wide-leg-trousers'), + (185,'Skinny trousers','SKINNY_TROUSERS',9,'/women/clothes/trousers-and-leggings/skinny-trousers','/women/clothes/trousers-and-leggings/skinny-trousers'), + (187,'Tailored trousers','TAILORED_TROUSERS',9,'/women/clothes/trousers-and-leggings/tailored-trousers','/women/clothes/trousers-and-leggings/tailored-trousers'), + (1846,'Straight-leg trousers','W_SLIM_STRAIGHT_PANTS',9,'/women/clothes/trousers-and-leggings/straight-leg-trousers','/women/clothes/trousers-and-leggings/straight-leg-trousers'), + (184,'Leather trousers','LEATHER_TROUSERS',9,'/women/clothes/trousers-and-leggings/leather-trousers','/women/clothes/trousers-and-leggings/leather-trousers'), + (525,'Leggings','LEGGINGS',9,'/women/clothes/trousers-and-leggings/leggings','/women/clothes/trousers-and-leggings/leggings'), + (526,'Harem pants','HAREMS',9,'/women/clothes/trousers-and-leggings/harem-pants','/women/clothes/trousers-and-leggings/harem-pants'), + (189,'Other trousers','WOM_TRO_OTHER',9,'/women/clothes/trousers-and-leggings/other-trousers','/women/clothes/trousers-and-leggings/other-trousers'), + (15,'Shorts & cropped trousers','SHORTS_CAPRIS',4,'/women/clothes/shorts-and-cropped-trousers','/women/clothes/shorts-and-cropped-trousers'), + (1838,'Low-waisted shorts','LOW_WAIST_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/low-waisted-shorts','/women/clothes/shorts-and-cropped-trousers/low-waisted-shorts'), + (1099,'High-waisted shorts','HIGH_WASTED_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/high-waisted-shorts','/women/clothes/shorts-and-cropped-trousers/high-waisted-shorts'), + (203,'Knee-length shorts','MEDIUM_LENGTH_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/knee-length-shorts','/women/clothes/shorts-and-cropped-trousers/knee-length-shorts'), + (538,'Denim shorts','JEANS_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/denim-shorts','/women/clothes/shorts-and-cropped-trousers/denim-shorts'), + (1101,'Lace shorts','LACE_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/lace-shorts','/women/clothes/shorts-and-cropped-trousers/lace-shorts'), + (1100,'Leather shorts','LEATHER_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/leather-shorts','/women/clothes/shorts-and-cropped-trousers/leather-shorts'), + (1103,'Cargo shorts','CARGO_SHORTS',15,'/women/clothes/shorts-and-cropped-trousers/cargo-shorts','/women/clothes/shorts-and-cropped-trousers/cargo-shorts'), + (204,'Cropped trousers','CAPRI_TROUSERS',15,'/women/clothes/shorts-and-cropped-trousers/cropped-trousers','/women/clothes/shorts-and-cropped-trousers/cropped-trousers'), + (205,'Other shorts & cropped trousers','WOM_SHO_OTHER',15,'/women/clothes/shorts-and-cropped-trousers/other-shorts-and-cropped-trousers','/women/clothes/shorts-and-cropped-trousers/other-shorts-and-cropped-trousers'), + (1035,'Jumpsuits & playsuits','JUMPSUITS_UK',4,'/women/clothes/jumpsuits-and-playsuits','/women/clothes/jumpsuits-and-playsuits'), + (1131,'Jumpsuits','W_JUMPSUITS',1035,'/women/clothes/jumpsuits-and-playsuits-1131','/women/clothes/jumpsuits-and-playsuits-1131'), + (1132,'Playsuits','W_ROMPERS',1035,'/women/clothes/jumpsuits-and-playsuits/playsuits','/women/clothes/jumpsuits-and-playsuits/playsuits'), + (1134,'Other jumpsuits & playsuits','W_OTHER_ROMPERS_JUMPSUITS',1035,'/women/clothes/jumpsuits-and-playsuits/other-jumpsuits-and-playsuits','/women/clothes/jumpsuits-and-playsuits/other-jumpsuits-and-playsuits'), + (28,'Swimwear','SWIMWEAR',4,'/women/clothes/swimwear','/women/clothes/swimwear'), + (218,'One-pieces','ONE_PIECES',28,'/women/clothes/swimwear/one-pieces','/women/clothes/swimwear/one-pieces'), + (219,'Bikinis & tankinis','TWO_PIECE_SWIMWEAR',28,'/women/clothes/swimwear/bikinis-and-tankinis','/women/clothes/swimwear/bikinis-and-tankinis'), + (1780,'Cover-ups & sarongs','COVERUP_SWIMWEAR',28,'/women/clothes/swimwear/cover-ups-and-sarongs','/women/clothes/swimwear/cover-ups-and-sarongs'), + (220,'Other swimwear & beachwear','WOM_SWI_OTHER',28,'/women/clothes/swimwear/other-swimwear-and-beachwear','/women/clothes/swimwear/other-swimwear-and-beachwear'), + (29,'Lingerie & nightwear','LINGERIE',4,'/women/clothes/lingerie-and-nightwear','/women/clothes/lingerie-and-nightwear'), + (119,'Bras','BRAS',29,'/women/clothes/lingerie-and-nightwear/bras','/women/clothes/lingerie-and-nightwear/bras'), + (120,'Panties','PANTIES_THONGS',29,'/women/clothes/lingerie-and-nightwear/panties','/women/clothes/lingerie-and-nightwear/panties'), + (229,'Sets','WOM_LIN_SETS',29,'/women/clothes/lingerie-and-nightwear/sets','/women/clothes/lingerie-and-nightwear/sets'), + (1781,'Shapewear','SHAPEWEAR',29,'/women/clothes/lingerie-and-nightwear/shapewear','/women/clothes/lingerie-and-nightwear/shapewear'), + (123,'Nightwear','NIGHTWEAR',29,'/women/clothes/lingerie-and-nightwear/nightwear','/women/clothes/lingerie-and-nightwear/nightwear'), + (1030,'Dressing gowns','DRESSING_GOWNS',29,'/women/clothes/lingerie-and-nightwear/dressing-gowns','/women/clothes/lingerie-and-nightwear/dressing-gowns'), + (1263,'Tights & stockings','INTIMATES_TIGHTS',29,'/women/clothes/lingerie-and-nightwear/tights-and-stockings','/women/clothes/lingerie-and-nightwear/tights-and-stockings'), + (1262,'Socks','INTIMATES_SOCKS',29,'/women/clothes/lingerie-and-nightwear/socks','/women/clothes/lingerie-and-nightwear/socks'), + (1847,'Lingerie accessories','LINGERIE_ACC',29,'/women/clothes/lingerie-and-nightwear/lingerie-accessories','/women/clothes/lingerie-and-nightwear/lingerie-accessories'), + (124,'Other','WOM_LIN_OTHER',29,'/women/clothes/lingerie-and-nightwear/other','/women/clothes/lingerie-and-nightwear/other'), + (1176,'Maternity clothes','MATERNITY_CLOTHES_MAIN',4,'/women/clothes/maternity-clothes','/women/clothes/maternity-clothes'), + (1179,'Maternity tops','MATERNITY_TOPS',1176,'/women/clothes/maternity-clothes/maternity-tops','/women/clothes/maternity-clothes/maternity-tops'), + (1182,'Maternity dresses','MATERNITY_DRESSES',1176,'/women/clothes/maternity-clothes/maternity-dresses','/women/clothes/maternity-clothes/maternity-dresses'), + (1178,'Maternity skirts','MATERNITY_SKIRTS',1176,'/women/clothes/maternity-clothes/maternity-skirts','/women/clothes/maternity-clothes/maternity-skirts'), + (1177,'Maternity trousers','MATERNITY_PANTS',1176,'/women/clothes/maternity-clothes/maternity-trousers','/women/clothes/maternity-clothes/maternity-trousers'), + (1185,'Maternity shorts','MATERNITY_SHORTS',1176,'/women/clothes/maternity-clothes/maternity-shorts','/women/clothes/maternity-clothes/maternity-shorts'), + (1181,'Maternity jumpsuits & playsuits','MATERNITY_ROMPERS_JUMPSUITS',1176,'/women/clothes/maternity-clothes/maternity-jumpsuits-and-playsuits','/women/clothes/maternity-clothes/maternity-jumpsuits-and-playsuits'), + (1184,'Maternity jumpers & sweaters','MATERNITY_HOODIES_SWEATERS',1176,'/women/clothes/maternity-clothes/maternity-jumpers-and-sweaters','/women/clothes/maternity-clothes/maternity-jumpers-and-sweaters'), + (1183,'Maternity coats & jackets','MATERNITY_COATS_JACKETS',1176,'/women/clothes/maternity-clothes/maternity-coats-and-jackets','/women/clothes/maternity-clothes/maternity-coats-and-jackets'), + (1186,'Maternity swimwear & beachwear','MATERNITY_SWIMWEAR_BEACHWEAR',1176,'/women/clothes/maternity-clothes/maternity-swimwear-and-beachwear','/women/clothes/maternity-clothes/maternity-swimwear-and-beachwear'), + (1614,'Maternity underwear','MATERNITY_UNDERWEAR',1176,'/women/clothes/maternity-clothes/maternity-underwear','/women/clothes/maternity-clothes/maternity-underwear'), + (1615,'Maternity panties','MATER_UNDERWEAR_NEW',1614,'/women/clothes/maternity-clothes/maternity-underwear/maternity-panties','/women/clothes/maternity-clothes/maternity-underwear/maternity-panties'), + (1616,'Maternity sleepwear','MATERNITY_SLEEPWEAR_NEW',1614,'/women/clothes/maternity-clothes/maternity-underwear/maternity-sleepwear','/women/clothes/maternity-clothes/maternity-underwear/maternity-sleepwear'), + (1617,'Pregnancy & postpartum belts','MATERNITY_BELTS_NEW',1614,'/women/clothes/maternity-clothes/maternity-underwear/pregnancy-and-postpartum-belts','/women/clothes/maternity-clothes/maternity-underwear/pregnancy-and-postpartum-belts'), + (1618,'Pregnancy & breastfeeding bras','MATERNITY_BRA',1614,'/women/clothes/maternity-clothes/maternity-underwear/pregnancy-and-breastfeeding-bras','/women/clothes/maternity-clothes/maternity-underwear/pregnancy-and-breastfeeding-bras'), + (2084,'Maternity activewear','MATERNITY_SPORT',1176,'/women/clothes/maternity-clothes/maternity-activewear','/women/clothes/maternity-clothes/maternity-activewear'), + (73,'Activewear','SPORTSWEAR_WOMEN',4,'/women/clothes/activewear','/women/clothes/activewear'), + (571,'Outerwear','WOM_SPO_OUTERWEAR',73,'/women/clothes/activewear/outerwear','/women/clothes/activewear/outerwear'), + (572,'Tracksuits','TRAINING_COSTUMES',73,'/women/clothes/activewear/tracksuits','/women/clothes/activewear/tracksuits'), + (573,'Trousers','WOM_SPO_TROUSERS',73,'/women/clothes/activewear/trousers','/women/clothes/activewear/trousers'), + (578,'Shorts','WOM_SPO_SHORTS',73,'/women/clothes/activewear/shorts','/women/clothes/activewear/shorts'), + (574,'Dresses','WOM_SPO_DRESSES',73,'/women/clothes/activewear/dresses','/women/clothes/activewear/dresses'), + (575,'Skirts','WOM_SPO_SKIRTS',73,'/women/clothes/activewear/skirts','/women/clothes/activewear/skirts'), + (576,'Tops & t-shirts','WOM_SPO_TOPS_T_SHIRTS',73,'/women/clothes/activewear/tops-and-t-shirts','/women/clothes/activewear/tops-and-t-shirts'), + (577,'Hoodies & sweatshirts','WOM_SPO_PULLOVERS_SWEATERS',73,'/women/clothes/activewear/hoodies-and-sweatshirts','/women/clothes/activewear/hoodies-and-sweatshirts'), + (579,'Sports accessories','WOM_SPO_ACCESSORIES',73,'/women/clothes/activewear/sports-accessories','/women/clothes/activewear/sports-accessories'), + (1440,'Scarves','SPORTS_SCARVES_WOMEN',579,'/women/clothes/activewear/sports-accessories/scarves','/women/clothes/activewear/sports-accessories/scarves'), + (1441,'Glasses','SPORTS_GLASSES_WOMEN',579,'/women/clothes/activewear/sports-accessories/glasses','/women/clothes/activewear/sports-accessories/glasses'), + (1442,'Watches & wristbands','SPORTS_WATCHES_WOMEN',579,'/women/clothes/activewear/sports-accessories/watches-and-wristbands','/women/clothes/activewear/sports-accessories/watches-and-wristbands'), + (1443,'Hats','SPORTS_HATS_WOMEN',579,'/women/clothes/activewear/sports-accessories/hats','/women/clothes/activewear/sports-accessories/hats'), + (1444,'Gloves','SPORTS_GLOVES_WOMEN',579,'/women/clothes/activewear/sports-accessories/gloves','/women/clothes/activewear/sports-accessories/gloves'), + (1445,'Protection / Padding','SPORT_PROTECTORS_WOMEN',579,'/women/clothes/activewear/sports-accessories/protection-slash-padding','/women/clothes/activewear/sports-accessories/protection-slash-padding'), + (1446,'Other accessories','SPORTS_OTHER_WOMEN',579,'/women/clothes/activewear/sports-accessories/other-accessories','/women/clothes/activewear/sports-accessories/other-accessories'), + (1439,'Sports bras','SPORTS_BRA',73,'/women/clothes/activewear/sports-bras','/women/clothes/activewear/sports-bras'), + (580,'Other activewear','WOM_SPO_OTHER',73,'/women/clothes/activewear/other-activewear','/women/clothes/activewear/other-activewear'), + (1782,'Costumes & special outfits','SPECIAL_OUTFITS_COSTUMES_W',4,'/women/clothes/costumes-and-special-outfits','/women/clothes/costumes-and-special-outfits'), + (18,'Other clothing','OTHER_CLOTHES',4,'/women/clothes/other-clothing','/women/clothes/other-clothing'), + (16,'Shoes','FOOTWEAR',1904,'/women/shoes','/women/shoes'), + (1049,'Boots','W_BOOTS',16,'/women/shoes/boots','/women/shoes/boots'), + (2618,'Ankle boots','WOMEN_ANKLE_BOOTS',1049,'/women/shoes/boots/ankle-boots','/women/shoes/boots/ankle-boots'), + (2619,'Mid-calf boots','WOMEN_MID_CALF_BOOTS',1049,'/women/shoes/boots/mid-calf-boots','/women/shoes/boots/mid-calf-boots'), + (211,'Knee-high boots','KNEE_LENGHT_BOOTS',1049,'/women/shoes/boots/knee-high-boots','/women/shoes/boots/knee-high-boots'), + (2620,'Over-the-knee boots','WOMEN_OVER_KNEE_BOOTS',1049,'/women/shoes/boots/over-the-knee-boots','/women/shoes/boots/over-the-knee-boots'), + (2621,'Snow boots','WOMEN_SNOW_BOOTS',1049,'/women/shoes/boots/snow-boots','/women/shoes/boots/snow-boots'), + (213,'Wellington boots','WELLINGTON_BOOTS',1049,'/women/shoes/boots/wellington-boots','/women/shoes/boots/wellington-boots'), + (2622,'Work boots','WOMEN_WORK_BOOTS',1049,'/women/shoes/boots/work-boots','/women/shoes/boots/work-boots'), + (2623,'Clogs & mules','WOMEN_CLOGS_MULES',16,'/women/shoes/clogs-and-mules','/women/shoes/clogs-and-mules'), + (1909,'Flat shoes','W_FLATS_MAIN',16,'/women/shoes/flat-shoes','/women/shoes/flat-shoes'), + (548,'Ballerinas','BALLERINAS',1909,'/women/shoes/flats/ballerinas','/women/shoes/flats/ballerinas'), + (2633,'Boat shoes, loafers & moccasins','WOMEN_BOAT_LOAFERS_MOCCASINS',1909,'/women/shoes/flat-shoes/boat-shoes-loafers-and-moccasins','/women/shoes/flat-shoes/boat-shoes-loafers-and-moccasins'), + (2634,'Espadrilles','WOMEN_ESPADRILLE_SHOES',1909,'/women/shoes/flat-shoes/espadrilles','/women/shoes/flat-shoes/espadrilles'), + (2635,'Lace-up shoes','WOMEN_FLAT_LACE_UP_SHOES',1909,'/women/shoes/flat-shoes/lace-up-shoes','/women/shoes/flat-shoes/lace-up-shoes'), + (2689,'Mary Janes','WOMEN_MARY_JANES',1909,'/women/shoes/flat-shoes/mary-janes','/women/shoes/flat-shoes/mary-janes'), + (2624,'Flip-flops, flat sandals & slides','WOMEN_FLIP_FLOPS_SANDALS_SLIDES',16,'/women/shoes/flip-flops-flat-sandals-and-slides','/women/shoes/flip-flops-flat-sandals-and-slides'), + (2637,'Flat sandals','WOMEN_FLAT_SANDALS',2624,'/women/shoes/flip-flops-flat-sandals-and-slides/flat-sandals','/women/shoes/flip-flops-flat-sandals-and-slides/flat-sandals'), + (2636,'Flip-flops','WOMEN_FLIP_FLOPS',2624,'/women/shoes/flip-flops-flat-sandals-and-slides/flip-flops','/women/shoes/flip-flops-flat-sandals-and-slides/flip-flops'), + (2638,'Slides','WOMEN_SLIDES',2624,'/women/shoes/flip-flops-flat-sandals-and-slides/slides','/women/shoes/flip-flops-flat-sandals-and-slides/slides'), + (543,'Heels','HIGH_HEELS',16,'/women/shoes/heels','/women/shoes/heels'), + (2687,'Court shoes','WOMEN_COURT_SHOES',543,'/women/shoes/heels/court-shoes','/women/shoes/heels/court-shoes'), + (2688,'High-heeled sandals','WOMEN_HEELED_SANDALS',543,'/women/shoes/heels/high-heeled-sandals','/women/shoes/heels/high-heeled-sandals'), + (215,'Slippers','SLIPPERS',16,'/women/shoes/slippers','/women/shoes/slippers'), + (2630,'Sports shoes','WOMEN_SPORT_SHOES',16,'/women/shoes/sports-shoes-2630','/women/shoes/sports-shoes-2630'), + (2639,'Basketball shoes','WOMEN_BASKETBALL_SHOES',2630,'/women/shoes/sports-shoes/basketball-shoes','/women/shoes/sports-shoes/basketball-shoes'), + (2640,'Climbing & bouldering shoes','WOMEN_CLIMBING_BOULDERING_SHOES',2630,'/women/shoes/sports-shoes/climbing-and-bouldering-shoes','/women/shoes/sports-shoes/climbing-and-bouldering-shoes'), + (2641,'Cycling shoes','WOMEN_CYCLING_SHOES',2630,'/women/shoes/sports-shoes/cycling-shoes','/women/shoes/sports-shoes/cycling-shoes'), + (2642,'Dance shoes','WOMEN_DANCE_SHOES',2630,'/women/shoes/sports-shoes/dance-shoes','/women/shoes/sports-shoes/dance-shoes'), + (2643,'Football boots','WOMEN_FOOTBALL_BOOTS',2630,'/women/shoes/sports-shoes/football-boots','/women/shoes/sports-shoes/football-boots'), + (2644,'Golf shoes','WOMEN_GOLF_SHOES',2630,'/women/shoes/sports-shoes/golf-shoes','/women/shoes/sports-shoes/golf-shoes'), + (2645,'Hiking boots & shoes','WOMEN_HIKING_BOOTS_SHOES',2630,'/women/shoes/sports-shoes/hiking-boots-and-shoes','/women/shoes/sports-shoes/hiking-boots-and-shoes'), + (2646,'Ice skates','WOMEN_ICE_SKATES',2630,'/women/shoes/sports-shoes/ice-skates','/women/shoes/sports-shoes/ice-skates'), + (2647,'Indoor football shoes','WOMEN_INDOOR_FOOTBALL_SHOES',2630,'/women/shoes/sports-shoes/indoor-football-shoes','/women/shoes/sports-shoes/indoor-football-shoes'), + (2648,'Indoor training shoes','WOMEN_INDOOR_TRAINING_SHOES',2630,'/women/shoes/sports-shoes/indoor-training-shoes-2648','/women/shoes/sports-shoes/indoor-training-shoes-2648'), + (2649,'Motorcycle boots','WOMEN_MOTORBIKE_BOOTS',2630,'/women/shoes/sports-shoes/motorcycle-boots','/women/shoes/sports-shoes/motorcycle-boots'), + (2650,'Roller skates & inline skates','WOMEN_ROLLER_SKATES_BLADES',2630,'/women/shoes/sports-shoes/roller-skates-and-inline-skates','/women/shoes/sports-shoes/roller-skates-and-inline-skates'), + (2651,'Running shoes','WOMEN_RUNNING_SHOES',2630,'/women/shoes/sports-shoes/running-shoes-2651','/women/shoes/sports-shoes/running-shoes-2651'), + (2652,'Ski boots','WOMEN_SKI_BOOTS',2630,'/women/shoes/sports-shoes/ski-boots','/women/shoes/sports-shoes/ski-boots'), + (2653,'Snowboard boots','WOMEN_SNOWBOARD_BOOTS',2630,'/women/shoes/sports-shoes/snowboard-boots','/women/shoes/sports-shoes/snowboard-boots'), + (2654,'Swimming & water shoes','WOMEN_SWIMMING_WATER_SHOES',2630,'/women/shoes/sports-shoes/swimming-and-water-shoes','/women/shoes/sports-shoes/swimming-and-water-shoes'), + (2655,'Tennis shoes','WOMEN_TENNIS_SHOES',2630,'/women/shoes/sports-shoes/tennis-shoes','/women/shoes/sports-shoes/tennis-shoes'), + (2632,'Trainers','WOMEN_TRAINERS',16,'/women/shoes/trainers','/women/shoes/trainers'), + (19,'Bags','BAGS_BACKPACKS',1904,'/women/bags','/women/bags'), + (156,'Handbags','HANDBAGS',19,'/women/bags/handbags','/women/bags/handbags'), + (158,'Shoulder Bags','SHOULDER_BAGS',19,'/women/bags/shoulder-bags-158','/women/bags/shoulder-bags-158'), + (157,'Backpacks','BACKPACKS',19,'/women/bags/backpacks','/women/bags/backpacks'), + (552,'Tote bags','TOTE_BAGS',19,'/women/bags/tote-bags','/women/bags/tote-bags'), + (159,'Clutches','CLUTCHES',19,'/women/bags/clutches','/women/bags/clutches'), + (160,'Purses & wallets','PURSES',19,'/women/bags/purses-and-wallets','/women/bags/purses-and-wallets'), + (161,'Make-up bags','MAKE_UP_BAGS',19,'/women/bags/make-up-bags','/women/bags/make-up-bags'), + (1784,'Satchels','SATCHELS_NEW',19,'/women/bags/satchels','/women/bags/satchels'), + (1848,'Bum bags','W_BUM_BAGS',19,'/women/bags/bum-bags','/women/bags/bum-bags'), + (1493,'Patterned & embroidered bags','TRADITIONAL_BAGS_DE',19,'/women/bags/patterned-and-embroidered-bags','/women/bags/patterned-and-embroidered-bags'), + (1849,'Holdalls','W_HOLDALLS',19,'/women/bags/holdalls','/women/bags/holdalls'), + (1850,'Luggage & suitcases','W_LUGGAGE',19,'/women/bags/luggage-and-suitcases','/women/bags/luggage-and-suitcases'), + (155,'Other bags','WOM_ACC_BAG_OTHER',19,'/women/bags/other-bags','/women/bags/other-bags'), + (1187,'Accessories','ACCESSORIES_JEWELLERY',1904,'/women/accessories','/women/accessories'), + (21,'Jewellery','JEWELRY',1187,'/women/accessories/jewellery','/women/accessories/jewellery'), + (553,'Rings','WOM_ACC_JEW_RINGS',21,'/women/accessories/jewellery/rings','/women/accessories/jewellery/rings'), + (163,'Earrings','EARRINGS',21,'/women/accessories/jewellery/earrings','/women/accessories/jewellery/earrings'), + (165,'Bracelets','BRACELETS',21,'/women/accessories/jewellery/bracelets','/women/accessories/jewellery/bracelets'), + (164,'Necklaces, beads & pendants','NECKLACES_BEADS_PENDANTS',21,'/women/accessories/jewellery/necklaces-beads-and-pendants','/women/accessories/jewellery/necklaces-beads-and-pendants'), + (166,'Jewellry sets','WOM_ACC_JEW_SETS',21,'/women/accessories/jewellery/jewellry-sets','/women/accessories/jewellery/jewellry-sets'), + (1785,'Anklets','ANKLETS_NEW',21,'/women/accessories/jewellery/anklets','/women/accessories/jewellery/anklets'), + (167,'Brooches','BROOCHES',21,'/women/accessories/jewellery/brooches','/women/accessories/jewellery/brooches'), + (162,'Other jewellery','WOM_ACC_JEW_OTHER',21,'/women/accessories/jewellery/other-jewellery','/women/accessories/jewellery/other-jewellery'), + (22,'Watches','WATCHES',1187,'/women/accessories/watches','/women/accessories/watches'), + (20,'Belts','BELTS',1187,'/women/accessories/belts','/women/accessories/belts'), + (26,'Sunglasses','SUNGLASSES',1187,'/women/accessories/sunglasses','/women/accessories/sunglasses'), + (89,'Scarves & shawls','WOM_ACC_SCARVES_SHAWLS',1187,'/women/accessories/scarves-and-shawls','/women/accessories/scarves-and-shawls'), + (236,'Knit scarves','KNIT_SCARFS',89,'/women/accessories/scarves-and-shawls/knit-scarves','/women/accessories/scarves-and-shawls/knit-scarves'), + (237,'Head scarfs','HEADSCARFS',89,'/women/accessories/scarves-and-shawls/head-scarfs','/women/accessories/scarves-and-shawls/head-scarfs'), + (238,'Oversized scarves & shawls','OVERSIZED_SCARVES_SHAWLS',89,'/women/accessories/scarves-and-shawls/oversized-scarves-and-shawls','/women/accessories/scarves-and-shawls/oversized-scarves-and-shawls'), + (239,'Shawls','SHAWLS',89,'/women/accessories/scarves-and-shawls/shawls','/women/accessories/scarves-and-shawls/shawls'), + (240,'Other','WOM_ACC_SCA_OTHER',89,'/women/accessories/scarves-and-shawls/other','/women/accessories/scarves-and-shawls/other'), + (90,'Gloves','GLOVES',1187,'/women/accessories/gloves','/women/accessories/gloves'), + (88,'Hats & caps','WOM_ACC_HATS_CAPS',1187,'/women/accessories/hats-and-caps','/women/accessories/hats-and-caps'), + (230,'Caps','CAPS',88,'/women/accessories/hats-and-caps/caps','/women/accessories/hats-and-caps/caps'), + (231,'Hats','HATS',88,'/women/accessories/hats-and-caps-231','/women/accessories/hats-and-caps-231'), + (232,'Warm hats','WARM_HATS',88,'/women/accessories/hats-and-caps/warm-hats','/women/accessories/hats-and-caps/warm-hats'), + (233,'Berets','BERETS',88,'/women/accessories/hats-and-caps/berets','/women/accessories/hats-and-caps/berets'), + (234,'Headbands','HEADBANDS',88,'/women/accessories/hats-and-caps/headbands','/women/accessories/hats-and-caps/headbands'), + (235,'Other','WOM_ACC_HAT_OTHER',88,'/women/accessories/hats-and-caps/other','/women/accessories/hats-and-caps/other'), + (1123,'Hair accessories','W_HAIR_ACCESSORIES',1187,'/women/accessories/hair-accessories','/women/accessories/hair-accessories'), + (1221,'Tech accessories','ACCESS_MOBILE',1187,'/women/accessories/tech-accessories','/women/accessories/tech-accessories'), + (1851,'Umbrellas','W_ACC_UMBRELLAS',1187,'/women/accessories/umbrellas','/women/accessories/umbrellas'), + (1852,'Keyrings','KEY_RINGS',1187,'/women/accessories/keyrings','/women/accessories/keyrings'), + (1140,'Other accessories','W_OTHER_ACCESSORIES',1187,'/women/accessories/other-accessories','/women/accessories/other-accessories'), + (146,'Beauty','COSMETICS_AND_BEAUTY_PRODUCTS',1904,'/women/beauty','/women/beauty'), + (964,'Make-up','WOM_COS_MAK_COSMETICS',146,'/women/beauty/make-up','/women/beauty/make-up'), + (152,'Perfume','WOM_COS_PERFUME',146,'/women/beauty/perfume','/women/beauty/perfume'), + (948,'Face care','COSMETICS',146,'/women/beauty/face-care','/women/beauty/face-care'), + (1906,'Beauty tools','W_BEAUTY_TOOLS',146,'/women/beauty/beauty-tools','/women/beauty/beauty-tools'), + (1903,'Hair-styling tools','W_HAIR_TOOLS',1906,'/women/beauty/beauty-tools/hair-styling-tools','/women/beauty/beauty-tools/hair-styling-tools'), + (950,'Face-care tools','BEAUTY_TOOLS',1906,'/women/beauty/beauty-tools/face-care-tools','/women/beauty/beauty-tools/face-care-tools'), + (958,'Body-care tools','WOM_COS_BOD_BEAUTY_TOOLS',1906,'/women/beauty/beauty-tools/body-care-tools','/women/beauty/beauty-tools/body-care-tools'), + (962,'Nail-care tools','WOM_COS_HAN_BEAUTY_TOOLS',1906,'/women/beauty/beauty-tools/nail-care-tools','/women/beauty/beauty-tools/nail-care-tools'), + (967,'Make-up tools','WOM_COS_MAK_BEAUTY_TOOLS',1906,'/women/beauty/beauty-tools/make-up-tools','/women/beauty/beauty-tools/make-up-tools'), + (1264,'Hand care','BEAUTY_HAND_ONLY',146,'/women/beauty/hand-care','/women/beauty/hand-care'), + (960,'Nail care','WOM_COS_HAN_COSMETICS',146,'/women/beauty/nail-care','/women/beauty/nail-care'), + (956,'Body care','WOM_COS_BOD_COSMETICS',146,'/women/beauty/body-care','/women/beauty/body-care'), + (1902,'Hair care','W_HAIR_COSMETICS',146,'/women/beauty/hair-care','/women/beauty/hair-care'), + (153,'Other beauty items','OTHER_COSMETICS_AND_TOOLS',146,'/women/beauty/other-beauty-items','/women/beauty/other-beauty-items'), + (5,'Men','MENS',0,'/men','/men'), + (2050,'Clothes','MEN_CLOTHING',5,'/men/clothes','/men/clothes'), + (257,'Jeans','MEN_TRO_JEANS',2050,'/men/clothes/jeans','/men/clothes/jeans'), + (1816,'Ripped jeans','MEN_RIPPED_JEANS',257,'/men/clothes/jeans/ripped-jeans','/men/clothes/jeans/ripped-jeans'), + (1817,'Skinny jeans','MEN_SKINNY_JEANS',257,'/men/clothes/jeans/skinny-jeans','/men/clothes/jeans/skinny-jeans'), + (1818,'Slim fit jeans','MEN_SLIMFIT_JEANS',257,'/men/clothes/jeans/slim-fit-jeans','/men/clothes/jeans/slim-fit-jeans'), + (1819,'Straight fit jeans','MEN_STRAIGHTFIT_JEANS',257,'/men/clothes/jeans/straight-fit-jeans','/men/clothes/jeans/straight-fit-jeans'), + (1206,'Outerwear','MEN_OUTERWEAR_NEW',2050,'/men/clothes/outerwear','/men/clothes/outerwear'), + (2051,'Coats','MEN_COATS',1206,'/men/clothes/coats-and-jackets-2051','/men/clothes/coats-and-jackets-2051'), + (1225,'Duffle coats','MEN_DUFFLE',2051,'/men/clothes/coats-and-jackets/duffle-coats','/men/clothes/coats-and-jackets/duffle-coats'), + (2533,'Overcoats & long coats','MEN_OVERCOATS_LONGCOATS',2051,'/men/clothes/outerwear/coats/overcoats-and-long-coats','/men/clothes/outerwear/coats/overcoats-and-long-coats'), + (1227,'Parkas','MEN_PARKAS',2051,'/men/clothes/coats-and-jackets/parkas','/men/clothes/coats-and-jackets/parkas'), + (1861,'Peacoats','MEN_PEA_COATS',2051,'/men/clothes/coats-and-jackets/peacoats','/men/clothes/coats-and-jackets/peacoats'), + (1859,'Raincoats','MEN_RAINCOAT',2051,'/men/clothes/coats-and-jackets/raincoats','/men/clothes/coats-and-jackets/raincoats'), + (1230,'Trench coats','MEN_TRENCH',2051,'/men/clothes/coats-and-jackets/trench-coats','/men/clothes/coats-and-jackets/trench-coats'), + (2553,'Gilets & body warmers','MEN_OUTERWEAR_VESTS',1206,'/men/clothes/outerwear/gilets-and-body-warmers','/men/clothes/outerwear/gilets-and-body-warmers'), + (2052,'Jackets','MEN_JACKETS',1206,'/men/clothes/coats-and-jackets/jackets','/men/clothes/coats-and-jackets/jackets'), + (2534,'Biker & racer jackets','MEN_BIKER_RACER_JACKETS',2052,'/men/clothes/outerwear/jackets/biker-and-racer-jackets','/men/clothes/outerwear/jackets/biker-and-racer-jackets'), + (1223,'Bomber jackets','MEN_BOMBER',2052,'/men/clothes/coats-and-jackets/jackets/bomber-jackets','/men/clothes/coats-and-jackets/jackets/bomber-jackets'), + (1224,'Denim jackets','MEN_DENIM',2052,'/men/clothes/coats-and-jackets/jackets/denim-jackets','/men/clothes/coats-and-jackets/jackets/denim-jackets'), + (2535,'Field & utility jackets','MEN_MILITARY_UTILITY_JACKETS',2052,'/men/clothes/outerwear/jackets/field-and-utility-jackets','/men/clothes/outerwear/jackets/field-and-utility-jackets'), + (1858,'Fleece jackets','MEN_FLEECE_JACKETS',2052,'/men/clothes/coats-and-jackets/jackets/fleece-jackets','/men/clothes/coats-and-jackets/jackets/fleece-jackets'), + (1226,'Harrington jackets','MEN_HARRINGT',2052,'/men/clothes/coats-and-jackets/jackets/harrington-jackets','/men/clothes/coats-and-jackets/jackets/harrington-jackets'), + (2536,'Puffer jackets','MEN_PUFFER_JACKETS',2052,'/men/clothes/outerwear/jackets/puffer-jackets','/men/clothes/outerwear/jackets/puffer-jackets'), + (2537,'Quilted jackets','MEN_QUILTED_JACKETS',2052,'/men/clothes/outerwear/jackets/quilted-jackets','/men/clothes/outerwear/jackets/quilted-jackets'), + (2538,'Shackets','MEN_SHACKETS',2052,'/men/clothes/outerwear/jackets/shackets','/men/clothes/outerwear/jackets/shackets'), + (2539,'Ski & snowboard jackets','MEN_SKI_SNOWBOARD_JACKETS',2052,'/men/clothes/outerwear/jackets/ski-and-snowboard-jackets','/men/clothes/outerwear/jackets/ski-and-snowboard-jackets'), + (2550,'Varsity jackets','MEN_VARSITY_JACKETS',2052,'/men/clothes/outerwear/jackets/varsity-jackets','/men/clothes/outerwear/jackets/varsity-jackets'), + (2551,'Windbreakers','MEN_WINDBREAKERS',2052,'/men/clothes/outerwear/jackets/windbreakers','/men/clothes/outerwear/jackets/windbreakers'), + (2552,'Ponchos','MEN_PONCHOS',1206,'/men/clothes/outerwear/ponchos','/men/clothes/outerwear/ponchos'), + (76,'Tops & t-shirts','MEN_TOPS_T_SHIRTS',2050,'/men/clothes/tops-and-t-shirts','/men/clothes/tops-and-t-shirts'), + (536,'Shirts','MEN_TOP_SHIRTS',76,'/men/clothes/tops-and-t-shirts/shirts','/men/clothes/tops-and-t-shirts/shirts'), + (1801,'Checked shirts','CHECKED_SHIRTS',536,'/men/clothes/tops-and-t-shirts/shirts/checked-shirts','/men/clothes/tops-and-t-shirts/shirts/checked-shirts'), + (1802,'Denim shirts','DENIM_SHIRTS',536,'/men/clothes/tops-and-t-shirts/shirts/denim-shirts','/men/clothes/tops-and-t-shirts/shirts/denim-shirts'), + (1803,'Plain shirts','PLAIN_SHIRTS',536,'/men/clothes/tops-and-t-shirts/shirts/plain-shirts','/men/clothes/tops-and-t-shirts/shirts/plain-shirts'), + (1804,'Print shirts','PRINTED_SHIRTS',536,'/men/clothes/tops-and-t-shirts/shirts/print-shirts','/men/clothes/tops-and-t-shirts/shirts/print-shirts'), + (1805,'Striped shirts','STRIPPED_SHIRTS',536,'/men/clothes/tops-and-t-shirts/shirts/striped-shirts','/men/clothes/tops-and-t-shirts/shirts/striped-shirts'), + (1865,'Other shirts','MEN_SHIRTS_OTHER',536,'/men/clothes/tops-and-t-shirts/shirts/other-shirts','/men/clothes/tops-and-t-shirts/shirts/other-shirts'), + (77,'T-shirts','MEN_TOP_T_SHIRTS',76,'/men/clothes/tops-and-t-shirts/t-shirts','/men/clothes/tops-and-t-shirts/t-shirts'), + (1806,'Plain t-shirts','PLAIN_TSHIRTS',77,'/men/clothes/tops-and-t-shirts/t-shirts/plain-t-shirts','/men/clothes/tops-and-t-shirts/t-shirts/plain-t-shirts'), + (1807,'Print t-shirts','PRINTED_TSHIRTS',77,'/men/clothes/tops-and-t-shirts/t-shirts/print-t-shirts','/men/clothes/tops-and-t-shirts/t-shirts/print-t-shirts'), + (1808,'Striped t-shirts','STRIPPED_TSHIRTS',77,'/men/clothes/tops-and-t-shirts/t-shirts/striped-t-shirts','/men/clothes/tops-and-t-shirts/t-shirts/striped-t-shirts'), + (1809,'Polo shirts','POLO_SHIRTS',77,'/men/clothes/tops-and-t-shirts/t-shirts/polo-shirts','/men/clothes/tops-and-t-shirts/t-shirts/polo-shirts'), + (1810,'Long-sleeved t-shirts','LONG_SL_TSHIRTS',77,'/men/clothes/tops-and-t-shirts/t-shirts/long-sleeved-t-shirts','/men/clothes/tops-and-t-shirts/t-shirts/long-sleeved-t-shirts'), + (1868,'Other t-shirts','OTHER_MEN_TSHIRTS',77,'/men/clothes/tops-and-t-shirts/t-shirts/other-t-shirts','/men/clothes/tops-and-t-shirts/t-shirts/other-t-shirts'), + (560,'Vests & sleeveless t-shirts','MEN_TOP_VESTS',76,'/men/clothes/tops-and-t-shirts/vests-and-sleeveless-t-shirts','/men/clothes/tops-and-t-shirts/vests-and-sleeveless-t-shirts'), + (32,'Suits & blazers','SUITS_BLAZERS',2050,'/men/clothes/suits-and-blazers','/men/clothes/suits-and-blazers'), + (1786,'Suit jackets & blazers','BLAZERS_MEN',32,'/men/clothes/suits-and-blazers/suit-jackets-and-blazers','/men/clothes/suits-and-blazers/suit-jackets-and-blazers'), + (1787,'Suit trousers','SUIT_PANTS',32,'/men/clothes/suits-and-blazers/suit-trousers','/men/clothes/suits-and-blazers/suit-trousers'), + (1788,'Waistcoats','SUIT_WAISTCOAT',32,'/men/clothes/suits-and-blazers/waistcoats','/men/clothes/suits-and-blazers/waistcoats'), + (1789,'Suit sets','SUIT_SET_MEN',32,'/men/clothes/suits-and-blazers/suit-sets','/men/clothes/suits-and-blazers/suit-sets'), + (1790,'Wedding suits','WEDDING_SUIT',32,'/men/clothes/suits-and-blazers/wedding-suits','/men/clothes/suits-and-blazers/wedding-suits'), + (1866,'Other suits & blazers','SUITS_BLAZERS_OTHER',32,'/men/clothes/suits-and-blazers/other-suits-and-blazers','/men/clothes/suits-and-blazers/other-suits-and-blazers'), + (79,'Jumpers & sweaters','MEN_PULLOVERS_SWEATERS',2050,'/men/clothes/jumpers-and-sweaters','/men/clothes/jumpers-and-sweaters'), + (1811,'Jumpers','MEN_SWEATERS',79,'/men/clothes/jumpers-and-sweaters-1811','/men/clothes/jumpers-and-sweaters-1811'), + (267,'Hoodies & sweatshirts','MEN_PUL_HOODIES_PULLOVERS',79,'/men/clothes/jumpers-and-sweaters/hoodies-and-sweatshirts','/men/clothes/jumpers-and-sweaters/hoodies-and-sweatshirts'), + (1812,'Zip-through hoodies','MEN_ZIPHOODIES',79,'/men/clothes/jumpers-and-sweaters/zip-through-hoodies','/men/clothes/jumpers-and-sweaters/zip-through-hoodies'), + (266,'Cardigans','MEN_PUL_CARDIGANS',79,'/men/clothes/jumpers-and-sweaters/cardigans','/men/clothes/jumpers-and-sweaters/cardigans'), + (1813,'Crew-neck jumpers','MEN_CREWNECK_JUMPER',79,'/men/clothes/jumpers-and-sweaters/crew-neck-jumpers','/men/clothes/jumpers-and-sweaters/crew-neck-jumpers'), + (264,'V-neck jumpers','MEN_PUL_V_NECK_SWEATERS',79,'/men/clothes/jumpers-and-sweaters/v-neck-jumpers','/men/clothes/jumpers-and-sweaters/v-neck-jumpers'), + (265,'Turtle-neck jumpers','MEN_PUL_TURTLENECK_SWEATERS',79,'/men/clothes/jumpers-and-sweaters/turtle-neck-jumpers','/men/clothes/jumpers-and-sweaters/turtle-neck-jumpers'), + (1814,'Long jumpers','MEN_LONG_SWEATER',79,'/men/clothes/jumpers-and-sweaters/long-jumpers','/men/clothes/jumpers-and-sweaters/long-jumpers'), + (1815,'Chunky-knit jumpers','MEN_KNITTED_SWEATER',79,'/men/clothes/jumpers-and-sweaters/chunky-knit-jumpers','/men/clothes/jumpers-and-sweaters/chunky-knit-jumpers'), + (1825,'Sleeveless jumpers','OUTDOOR_VEST',79,'/men/clothes/jumpers-and-sweaters/sleeveless-jumpers','/men/clothes/jumpers-and-sweaters/sleeveless-jumpers'), + (268,'Other','MEN_PUL_OTHER',79,'/men/clothes/jumpers-and-sweaters/other','/men/clothes/jumpers-and-sweaters/other'), + (34,'Trousers','MEN_TROUSERS',2050,'/men/clothes/trousers','/men/clothes/trousers'), + (1820,'Chinos','MEN_CHINOS',34,'/men/clothes/trousers/chinos','/men/clothes/trousers/chinos'), + (1821,'Joggers','MEN_JOGGERS',34,'/men/clothes/trousers/joggers','/men/clothes/trousers/joggers'), + (259,'Skinny trousers','MEN_TRO_SKINNY_TROUSERS',34,'/men/clothes/trousers/skinny-trousers','/men/clothes/trousers/skinny-trousers'), + (271,'Cropped trousers','MEN_SHO_CAPRI_TROUSERS',34,'/men/clothes/trousers/cropped-trousers','/men/clothes/trousers/cropped-trousers'), + (261,'Tailored trousers','MEN_TRO_TAILORED_TROUSERS',34,'/men/clothes/trousers/tailored-trousers','/men/clothes/trousers/tailored-trousers'), + (260,'Wide-legged trousers','MEN_TRO_WIDE_LEGGED_TROUSERS',34,'/men/clothes/trousers/wide-legged-trousers','/men/clothes/trousers/wide-legged-trousers'), + (263,'Other','MEN_TRO_OTHER',34,'/men/clothes/trousers/other','/men/clothes/trousers/other'), + (80,'Shorts','SHORTS_CAPRI_PANTS',2050,'/men/clothes/shorts','/men/clothes/shorts'), + (1822,'Cargo shorts','MEN_CARGO_SHORTS',80,'/men/clothes/shorts/cargo-shorts','/men/clothes/shorts/cargo-shorts'), + (1823,'Chino shorts','MEN_CHINO_SHORTS',80,'/men/clothes/shorts/chino-shorts','/men/clothes/shorts/chino-shorts'), + (1824,'Denim shorts','MEN_DENIM_SHORTS',80,'/men/clothes/shorts/denim-shorts','/men/clothes/shorts/denim-shorts'), + (272,'Other shorts','MEN_SHO_OTHER',80,'/men/clothes/shorts/other-shorts','/men/clothes/shorts/other-shorts'), + (85,'Socks & underwear','UNDERWEAR',2050,'/men/clothes/socks-and-underwear','/men/clothes/socks-and-underwear'), + (1829,'Pants & boxers','MEN_UNDERWEAR',85,'/men/clothes/socks-and-underwear/pants-and-boxers','/men/clothes/socks-and-underwear/pants-and-boxers'), + (1828,'Socks','MEN_SOCKS',85,'/men/clothes/socks-and-underwear-1828','/men/clothes/socks-and-underwear-1828'), + (1830,'Dressing gowns','MEN_ROBES',85,'/men/clothes/socks-and-underwear/dressing-gowns','/men/clothes/socks-and-underwear/dressing-gowns'), + (1867,'Other socks & underwear','OTHER_MEN_UNDERWEAR',85,'/men/clothes/socks-and-underwear/other-socks-and-underwear','/men/clothes/socks-and-underwear/other-socks-and-underwear'), + (84,'Swimwear','MEN_SWIMWEAR',2050,'/men/clothes/swimwear','/men/clothes/swimwear'), + (30,'Activewear','SPORTSWEAR',2050,'/men/clothes/activewear','/men/clothes/activewear'), + (581,'Outerwear','MEN_SPO_OUTERWEAR',30,'/men/clothes/activewear/outerwear','/men/clothes/activewear/outerwear'), + (582,'Tracksuits','MEN_SPO_TRAINING_COSTUMES',30,'/men/clothes/activewear/tracksuits','/men/clothes/activewear/tracksuits'), + (583,'Trousers','MEN_SPO_TROUSERS',30,'/men/clothes/activewear/trousers','/men/clothes/activewear/trousers'), + (586,'Shorts','MEN_SPO_SHORTS',30,'/men/clothes/activewear/shorts','/men/clothes/activewear/shorts'), + (584,'Tops & t-shirts','MEN_SPO_TOPS_T_SHIRTS',30,'/men/clothes/activewear/tops-and-t-shirts','/men/clothes/activewear/tops-and-t-shirts'), + (585,'Hoodies & sweatshirts','MEN_SPO_PULLOVERS_SWEATERS',30,'/men/clothes/activewear/hoodies-and-sweatshirts','/men/clothes/activewear/hoodies-and-sweatshirts'), + (587,'Sports accessories','MEN_SPO_ACCESSORIES',30,'/men/clothes/activewear/sports-accessories','/men/clothes/activewear/sports-accessories'), + (1470,'Scarves','SPORT_ACCESS_SCARVES_MEN',587,'/men/clothes/activewear/sports-accessories/scarves','/men/clothes/activewear/sports-accessories/scarves'), + (1471,'Glasses','SPORT_ACCESS_GLASSES_MEN',587,'/men/clothes/activewear/sports-accessories/glasses','/men/clothes/activewear/sports-accessories/glasses'), + (1472,'Watches & wristbands','SPORT_ACCESS_WATCHES_MEN',587,'/men/clothes/activewear/sports-accessories/watches-and-wristbands','/men/clothes/activewear/sports-accessories/watches-and-wristbands'), + (1473,'Hats','SPORT_ACCESS_HATS_MEN',587,'/men/clothes/activewear/sports-accessories/hats','/men/clothes/activewear/sports-accessories/hats'), + (1474,'Gloves','SPORT_ACCESS_GLOVES_MEN',587,'/men/clothes/activewear/sports-accessories/gloves','/men/clothes/activewear/sports-accessories/gloves'), + (1475,'Protective items','SPORT_ACCESS_PROTECT_MEN',587,'/men/clothes/activewear/sports-accessories/protective-items','/men/clothes/activewear/sports-accessories/protective-items'), + (1476,'Other accessories','SPORT_ACCESS_OTHER_MEN',587,'/men/clothes/activewear/sports-accessories/other-accessories','/men/clothes/activewear/sports-accessories/other-accessories'), + (588,'Other activewear','MEN_SPO_OTHER',30,'/men/clothes/activewear/other-activewear','/men/clothes/activewear/other-activewear'), + (92,'Costumes & special outfits','SPECIALISED_CLOTHING_COSTUMES',2050,'/men/clothes/costumes-and-special-outfits','/men/clothes/costumes-and-special-outfits'), + (83,'Other mens clothing','MEN_OTHER',2050,'/men/clothes/other-mens-clothing','/men/clothes/other-mens-clothing'), + (1231,'Shoes','MEN_SHOES_NEW',5,'/men/shoes','/men/shoes'), + (2656,'Boat shoes, loafers & moccasins','MEN_BOAT_LOAFERS_MOCCASINS',1231,'/men/shoes/boat-shoes-loafers-and-moccasins','/men/shoes/boat-shoes-loafers-and-moccasins'), + (1233,'Boots','MEN_BOOTS',1231,'/men/shoes/boots','/men/shoes/boots'), + (2661,'Chelsea & slip-on boots','MEN_CHELSEA_SLIP_ON_BOOTS',1233,'/men/shoes/boots/chelsea-and-slip-on-boots','/men/shoes/boots/chelsea-and-slip-on-boots'), + (2662,'Desert & lace-up boots','MEN_DESERT_LACE_UP_BOOTS',1233,'/men/shoes/boots/desert-and-lace-up-boots','/men/shoes/boots/desert-and-lace-up-boots'), + (2663,'Snow boots','MEN_SNOW_BOOTS',1233,'/men/shoes/boots/snow-boots','/men/shoes/boots/snow-boots'), + (1795,'Wellington boots','MEN_WELLINGTON',1233,'/men/shoes/boots/wellington-boots','/men/shoes/boots/wellington-boots'), + (2664,'Work boots','MEN_WORK_BOOTS',1233,'/men/shoes/boots/work-boots','/men/shoes/boots/work-boots'), + (2657,'Espadrilles','MEN_ESPADRILLES',1231,'/men/shoes/espadrilles','/men/shoes/espadrilles'), + (2658,'Flip-flops, sandals & slides','MEN_FLIP_FLOPS_SANDALS_SLIDES',1231,'/men/shoes/flip-flops-sandals-and-slides','/men/shoes/flip-flops-sandals-and-slides'), + (2665,'Clogs & mules','MEN_CLOGS_MULES',2658,'/men/shoes/flip-flops-sandals-and-slides/clogs-and-mules','/men/shoes/flip-flops-sandals-and-slides/clogs-and-mules'), + (2666,'Flip-flops','MEN_FLIP_FLOPS',2658,'/men/shoes/flip-flops-sandals-and-slides/flip-flops','/men/shoes/flip-flops-sandals-and-slides/flip-flops'), + (2667,'Sandals','MEN_SANDALS_2',2658,'/men/shoes/flip-flops-sandals-and-slides/sandals','/men/shoes/flip-flops-sandals-and-slides/sandals'), + (2668,'Slides','MEN_SLIDES',2658,'/men/shoes/flip-flops-sandals-and-slides/slides','/men/shoes/flip-flops-sandals-and-slides/slides'), + (1238,'Formal shoes','MEN_FORMAL',1231,'/men/shoes/formal-shoes','/men/shoes/formal-shoes'), + (2669,'Lace-up shoes','MEN_FORMAL_LACE_UP_SHOES',1238,'/men/shoes/formal-shoes/lace-up-shoes','/men/shoes/formal-shoes/lace-up-shoes'), + (2671,'Monk strap shoes','MEN_FORMAL_STRAPPED_SHOES',1238,'/men/shoes/formal-shoes/monk-strap-shoes','/men/shoes/formal-shoes/monk-strap-shoes'), + (2670,'Slip-on shoes','MEN_FORMAL_SLIP_ON_SHOES',1238,'/men/shoes/formal-shoes/slip-on-shoes','/men/shoes/formal-shoes/slip-on-shoes'), + (2659,'Slippers','MEN_SLIPPERS_2',1231,'/men/shoes/slippers','/men/shoes/slippers'), + (1452,'Sports shoes','SPORT_SHOES_MEN',1231,'/men/shoes/sports-shoes','/men/shoes/sports-shoes'), + (2672,'Basketball shoes','MEN_BASKETBALL_SHOES',1452,'/men/shoes/sports-shoes/basketball-shoes','/men/shoes/sports-shoes/basketball-shoes'), + (2673,'Climbing & bouldering shoes','MEN_CLIMBING_BOULDERING_SHOES',1452,'/men/shoes/sports-shoes/climbing-and-bouldering-shoes','/men/shoes/sports-shoes/climbing-and-bouldering-shoes'), + (2674,'Cycling shoes','MEN_CYCLING_SHOES',1452,'/men/shoes/sports-shoes/cycling-shoes','/men/shoes/sports-shoes/cycling-shoes'), + (2675,'Dance shoes','MEN_DANCE_SHOES',1452,'/men/shoes/sports-shoes/dance-shoes','/men/shoes/sports-shoes/dance-shoes'), + (2676,'Football boots','MEN_FOOTBALL_BOOTS',1452,'/men/shoes/sports-shoes/football-boots','/men/shoes/sports-shoes/football-boots'), + (2677,'Golf shoes','MEN_GOLF_SHOES',1452,'/men/shoes/sports-shoes/golf-shoes','/men/shoes/sports-shoes/golf-shoes'), + (2678,'Hiking boots & shoes','MEN_HIKING_BOOTS_SHOES',1452,'/men/shoes/sports-shoes/hiking-boots-and-shoes','/men/shoes/sports-shoes/hiking-boots-and-shoes'), + (2679,'Ice skates','MEN_ICE_SKATES',1452,'/men/shoes/sports-shoes/ice-skates','/men/shoes/sports-shoes/ice-skates'), + (2680,'Indoor football shoes','MEN_INDOOR_FOOTBALL_SHOES',1452,'/men/shoes/sports-shoes/indoor-football-shoes','/men/shoes/sports-shoes/indoor-football-shoes'), + (1467,'Indoor training shoes','SPORT_SHOES_INDOOR_MEN',1452,'/men/shoes/sport-shoes/indoor-training-shoes','/men/shoes/sport-shoes/indoor-training-shoes'), + (2681,'Motorcycle boots','MEN_MOTORBIKE_BOOTS',1452,'/men/shoes/sports-shoes/motorcycle-boots','/men/shoes/sports-shoes/motorcycle-boots'), + (2682,'Roller skates & inline skates','MEN_ROLLER_SKATES_BLADES',1452,'/men/shoes/sports-shoes/roller-skates-and-inline-skates','/men/shoes/sports-shoes/roller-skates-and-inline-skates'), + (1453,'Running shoes','SPORT_SHOES_RUNNING_MEN',1452,'/men/shoes/sport-shoes/running-shoes','/men/shoes/sport-shoes/running-shoes'), + (2683,'Ski boots','MEN_SKI_BOOTS',1452,'/men/shoes/sports-shoes/ski-boots','/men/shoes/sports-shoes/ski-boots'), + (2684,'Snowboard boots','MEN_SNOWBOARD_BOOTS',1452,'/men/shoes/sports-shoes/snowboard-boots','/men/shoes/sports-shoes/snowboard-boots'), + (2685,'Swimming & water shoes','MEN_SWIMMING_WATER_SHOES',1452,'/men/shoes/sports-shoes/swimming-and-water-shoes','/men/shoes/sports-shoes/swimming-and-water-shoes'), + (2686,'Tennis shoes','MEN_TENNIS_SHOES',1452,'/men/shoes/sports-shoes/tennis-shoes','/men/shoes/sports-shoes/tennis-shoes'), + (1242,'Trainers','MEN_SNEAKERS',1231,'/men/shoes/trainers','/men/shoes/trainers'), + (82,'Accessories','MEN_ACCESSORIES',5,'/men/accessories','/men/accessories'), + (93,'Ties & pocket squares','TIES',82,'/men/accessories/ties-and-pocket-squares','/men/accessories/ties-and-pocket-squares'), + (94,'Bags & backpacks','BAGS',82,'/men/accessories/bags-and-backpacks','/men/accessories/bags-and-backpacks'), + (245,'Handbags','MEN_ACC_BAG_HANDBAGS',94,'/men/accessories/bags-and-backpacks/handbags-245','/men/accessories/bags-and-backpacks/handbags-245'), + (247,'Shoulder Bags','MEN_ACC_BAG_SHOULDER_BAGS',94,'/men/accessories/bags-and-backpacks/shoulder-bags','/men/accessories/bags-and-backpacks/shoulder-bags'), + (246,'Backpacks','MEN_ACC_BAG_BACKPACKS',94,'/men/accessories/bags-and-backpacks/backpacks','/men/accessories/bags-and-backpacks/backpacks'), + (1797,'Satchels','MEN_ACC_SATCHELS',94,'/men/accessories/bags-and-backpacks/satchels','/men/accessories/bags-and-backpacks/satchels'), + (1798,'Holdalls','MEN_HOLDALLS',94,'/men/accessories/bags-and-backpacks/holdalls','/men/accessories/bags-and-backpacks/holdalls'), + (1799,'Bum bags','MEN_ACC_BUMBAGS',94,'/men/accessories/bags-and-backpacks/bum-bags','/men/accessories/bags-and-backpacks/bum-bags'), + (248,'Wallets','WALLETS',94,'/men/accessories/bags-and-backpacks/wallets','/men/accessories/bags-and-backpacks/wallets'), + (1862,'Luggage','MEN_LUGGAGE',94,'/men/accessories/bags-and-backpacks/luggage','/men/accessories/bags-and-backpacks/luggage'), + (249,'Other','MEN_ACC_BAG_OTHER',94,'/men/accessories/bags-and-backpacks/other','/men/accessories/bags-and-backpacks/other'), + (95,'Jewellery','APPAREL',82,'/men/accessories/jewellery','/men/accessories/jewellery'), + (241,'Necklaces & Pendants','NECKLACES_PENDANTS',95,'/men/accessories/jewellery/necklaces-and-pendants','/men/accessories/jewellery/necklaces-and-pendants'), + (242,'Rings','RINGS',95,'/men/accessories/jewellery/rings','/men/accessories/jewellery/rings'), + (243,'Bracelets','MEN_ACC_APP_BRACELETS',95,'/men/accessories/jewellery/bracelets','/men/accessories/jewellery/bracelets'), + (244,'Other','MEN_ACC_APP_OTHER',95,'/men/accessories/jewellery/other','/men/accessories/jewellery/other'), + (1800,'Cufflinks','MEN_ACC_CUFFLINKS',95,'/men/accessories/jewellery/cufflinks','/men/accessories/jewellery/cufflinks'), + (96,'Belts','MEN_ACC_BELTS',82,'/men/accessories/belts','/men/accessories/belts'), + (97,'Watches','MEN_ACC_WATCHES',82,'/men/accessories/watches','/men/accessories/watches'), + (98,'Sunglasses','MEN_ACC_SUNGLASSES',82,'/men/accessories/sunglasses','/men/accessories/sunglasses'), + (86,'Hats & caps','HATS_CAPS',82,'/men/accessories/hats-and-caps','/men/accessories/hats-and-caps'), + (287,'Caps','MEN_ACC_HAT_CAPS',86,'/men/accessories/hats-and-caps/caps','/men/accessories/hats-and-caps/caps'), + (288,'Hats','MEN_ACC_HAT_HATS',86,'/men/accessories/hats-and-caps-288','/men/accessories/hats-and-caps-288'), + (289,'Winter Hats','WINTER_HATS',86,'/men/accessories/hats-and-caps/winter-hats','/men/accessories/hats-and-caps/winter-hats'), + (290,'Berets','MEN_ACC_HAT_BERETS',86,'/men/accessories/hats-and-caps/berets','/men/accessories/hats-and-caps/berets'), + (291,'Other','MEN_ACC_HAT_OTHER',86,'/men/accessories/hats-and-caps/other','/men/accessories/hats-and-caps/other'), + (87,'Scarves & shawls','SCARVES_SHAWLS',82,'/men/accessories/scarves-and-shawls','/men/accessories/scarves-and-shawls'), + (283,'Knitted Scarves','KNITTED_SCARVES',87,'/men/accessories/scarves-and-shawls/knitted-scarves','/men/accessories/scarves-and-shawls/knitted-scarves'), + (284,'Head scarves','MEN_ACC_SCA_HEADSCARFS',87,'/men/accessories/scarves-and-shawls/head-scarves','/men/accessories/scarves-and-shawls/head-scarves'), + (285,'Large Scarves & Shawls','LARGE_SCARVES_SHAWLS',87,'/men/accessories/scarves-and-shawls/large-scarves-and-shawls','/men/accessories/scarves-and-shawls/large-scarves-and-shawls'), + (286,'Other','MEN_ACC_SCA_OTHER',87,'/men/accessories/scarves-and-shawls/other','/men/accessories/scarves-and-shawls/other'), + (91,'Gloves','MEN_ACC_GLOVES',82,'/men/accessories/gloves','/men/accessories/gloves'), + (99,'Other','MEN_ACC_OTHER',82,'/men/accessories/other','/men/accessories/other'), + (139,'Grooming','COSMETICS_AND_BEAUTY_ITEMS',5,'/men/grooming','/men/grooming'), + (143,'Face care','FACE_CARE',139,'/men/grooming/face-care','/men/grooming/face-care'), + (2055,'Tools & accessories','MEN_BEAUTY_TOOLS',139,'/men/grooming/tools-and-accessories','/men/grooming/tools-and-accessories'), + (1826,'Shaving tools','MEN_SHAVING_TOOLS',2055,'/men/grooming/tools-and-accessories/shaving-tools','/men/grooming/tools-and-accessories/shaving-tools'), + (1827,'Grooming tools','GROOMING_TOOLS',2055,'/men/grooming/tools-and-accessories/grooming-tools','/men/grooming/tools-and-accessories/grooming-tools'), + (971,'Other tools','MEN_COS_OTH_BEAUTY_TOOLS',2055,'/men/grooming/tools-and-accessories/other-tools','/men/grooming/tools-and-accessories/other-tools'), + (140,'Hair care','HAIR_CARE',139,'/men/grooming/hair-care','/men/grooming/hair-care'), + (141,'Body care','BODY_CARE',139,'/men/grooming/body-care','/men/grooming/body-care'), + (142,'Hand & nail care','HAND_NAIL_CARE',139,'/men/grooming/hand-and-nail-care','/men/grooming/hand-and-nail-care'), + (145,'Aftershave & cologne','PERFUME',139,'/men/grooming/aftershave-and-cologne','/men/grooming/aftershave-and-cologne'), + (144,'Make-up','MAKE_UP',139,'/men/grooming/make-up','/men/grooming/make-up'), + (1863,'Grooming kits','MEN_SETS',139,'/men/grooming/grooming-kits','/men/grooming/grooming-kits'), + (968,'Other grooming items','MEN_COS_OTH_COSMETICS',139,'/men/grooming/other-grooming-items','/men/grooming/other-grooming-items'), + (1193,'Kids','CHILDREN_NEW',0,'/kids','/kids'), + (1195,'Girls clothing','GIRLS_NEW',1193,'/kids/girls-clothing-1195','/kids/girls-clothing-1195'), + (1243,'Baby girls clothing','GIRLS_BABIES',1195,'/kids/girls-clothing/baby-girls-clothing','/kids/girls-clothing/baby-girls-clothing'), + (1514,'Rompers','FULL_ROMPERS_GIRLS_NEW',1243,'/kids/girls-clothing/baby-clothing/rompers','/kids/girls-clothing/baby-clothing/rompers'), + (1515,'Bodysuits','GIRLS_BODIES_NEW',1243,'/kids/girls-clothing/baby-clothing/bodysuits','/kids/girls-clothing/baby-clothing/bodysuits'), + (1516,'Dungarees','ROMPERS_GIRLS_NEW',1243,'/kids/girls-clothing/baby-clothing/dungarees','/kids/girls-clothing/baby-clothing/dungarees'), + (1517,'Sets','SETS_GIRLS_NEW',1243,'/kids/girls-clothing/baby-clothing/sets','/kids/girls-clothing/baby-clothing/sets'), + (1875,'Other baby girls clothing','GIRLS_BABIES_OTHERS',1243,'/kids/girls-clothing/baby-girls-clothing/other-baby-girls-clothing','/kids/girls-clothing/baby-girls-clothing/other-baby-girls-clothing'), + (1255,'Shoes','GIRLS_SHOES',1195,'/kids/girls-clothing/shoes','/kids/girls-clothing/shoes'), + (1525,'Baby shoes','BABY_GIRLS_SHOES_NEW',1255,'/kids/girls-clothing/shoes/baby-shoes','/kids/girls-clothing/shoes/baby-shoes'), + (1530,'Boots','BOOTS_GIRLS_NEW',1255,'/kids/girls-clothing/shoes/boots','/kids/girls-clothing/shoes/boots'), + (2695,'Ankle boots','GIRLS_ANKLE_BOOTS',1530,'/kids/girls-clothing/shoes/boots/ankle-boots','/kids/girls-clothing/shoes/boots/ankle-boots'), + (2696,'Mid-calf boots','GIRLS_MID_CALF_BOOTS',1530,'/kids/girls-clothing/shoes/boots/mid-calf-boots','/kids/girls-clothing/shoes/boots/mid-calf-boots'), + (2697,'Snow boots','GIRLS_SNOW_BOOTS',1530,'/kids/girls-clothing/shoes/boots/snow-boots','/kids/girls-clothing/shoes/boots/snow-boots'), + (2698,'Wellington boots','GIRLS_WELLINGTON_BOOTS',1530,'/kids/girls-clothing/shoes/boots/wellington-boots','/kids/girls-clothing/shoes/boots/wellington-boots'), + (2690,'Clogs & mules','GIRLS_CLOGS_MULES',1255,'/kids/girls-clothing/shoes/clogs-and-mules','/kids/girls-clothing/shoes/clogs-and-mules'), + (1526,'Flat shoes','FLAT_GIRLS_NEW',1255,'/kids/girls-clothing/shoes/flat-shoes','/kids/girls-clothing/shoes/flat-shoes'), + (2753,'Ballerinas, Mary Janes & T-bar shoes','GIRLS_BALLERINAS_MARY_JANES',1526,'/kids/girls-clothing/shoes/flat-shoes/ballerinas-mary-janes-and-t-bar-shoes','/kids/girls-clothing/shoes/flat-shoes/ballerinas-mary-janes-and-t-bar-shoes'), + (2701,'Espadrilles','GIRLS_ESPADRILLE_SHOES',1526,'/kids/girls-clothing/shoes/flat-shoes/espadrilles','/kids/girls-clothing/shoes/flat-shoes/espadrilles'), + (2702,'Lace-up shoes','GIRLS_FLAT_LACE_UP_SHOES',1526,'/kids/girls-clothing/shoes/flat-shoes/lace-up-shoes','/kids/girls-clothing/shoes/flat-shoes/lace-up-shoes'), + (2691,'Flip-flops, sandals & slides','GIRLS_FLIP_FLOPS_SANDALS_SLIDES',1255,'/kids/girls-clothing/shoes/flip-flops-sandals-and-slides','/kids/girls-clothing/shoes/flip-flops-sandals-and-slides'), + (2704,'Flip-flops','GIRLS_FLIP_FLOPS',2691,'/kids/girls-clothing/shoes/flip-flops-sandals-and-slides/flip-flops','/kids/girls-clothing/shoes/flip-flops-sandals-and-slides/flip-flops'), + (2705,'Sandals','GIRLS_SANDALS',2691,'/kids/girls-clothing/shoes/flip-flops-sandals-and-slides/sandals','/kids/girls-clothing/shoes/flip-flops-sandals-and-slides/sandals'), + (2707,'Slides','GIRLS_SLIDES_2',2691,'/kids/girls-clothing/shoes/flip-flops-sandals-and-slides/slides','/kids/girls-clothing/shoes/flip-flops-sandals-and-slides/slides'), + (1528,'Formal & special occasion shoes','SHOES_OCC_GIRLS_NEW',1255,'/kids/girls-clothing/shoes/formal-and-special-occasion-shoes','/kids/girls-clothing/shoes/formal-and-special-occasion-shoes'), + (2692,'Heels','GIRLS_HEELS',1255,'/kids/girls-clothing/shoes/heels','/kids/girls-clothing/shoes/heels'), + (1534,'Slippers','SLIPPERS_GIRLS_NEW',1255,'/kids/girls-clothing/shoes/slippers','/kids/girls-clothing/shoes/slippers'), + (2693,'Sports shoes','GIRLS_SPORT_SHOES',1255,'/kids/girls-clothing/shoes/sports-shoes','/kids/girls-clothing/shoes/sports-shoes'), + (2708,'Basketball shoes','GIRLS_BASKETBALL_SHOES',2693,'/kids/girls-clothing/shoes/sports-shoes/basketball-shoes','/kids/girls-clothing/shoes/sports-shoes/basketball-shoes'), + (2709,'Dance shoes','GIRLS_DANCE_SHOES',2693,'/kids/girls-clothing/shoes/sports-shoes/dance-shoes','/kids/girls-clothing/shoes/sports-shoes/dance-shoes'), + (2710,'Football boots','GIRLS_FOOTBALL_BOOTS',2693,'/kids/girls-clothing/shoes/sports-shoes/football-boots','/kids/girls-clothing/shoes/sports-shoes/football-boots'), + (2711,'Hiking boots & shoes','GIRLS_HIKING_BOOTS_SHOES',2693,'/kids/girls-clothing/shoes/sports-shoes/hiking-boots-and-shoes','/kids/girls-clothing/shoes/sports-shoes/hiking-boots-and-shoes'), + (2712,'Ice skates','GIRLS_ICE_SKATES',2693,'/kids/girls-clothing/shoes/sports-shoes/ice-skates','/kids/girls-clothing/shoes/sports-shoes/ice-skates'), + (2713,'Roller skates & inline skates','GIRLS_ROLLER_SKATES_BLADES',2693,'/kids/girls-clothing/shoes/sports-shoes/roller-skates-and-inline-skates','/kids/girls-clothing/shoes/sports-shoes/roller-skates-and-inline-skates'), + (2714,'Running shoes','GIRLS_RUNNING_SHOES',2693,'/kids/girls-clothing/shoes/sports-shoes/running-shoes','/kids/girls-clothing/shoes/sports-shoes/running-shoes'), + (2715,'Ski boots','GIRLS_SKI_BOOTS',2693,'/kids/girls-clothing/shoes/sports-shoes/ski-boots','/kids/girls-clothing/shoes/sports-shoes/ski-boots'), + (2716,'Snowboard boots','GIRLS_SNOWBOARD_BOOTS',2693,'/kids/girls-clothing/shoes/sports-shoes/snowboard-boots','/kids/girls-clothing/shoes/sports-shoes/snowboard-boots'), + (2717,'Swimming & water shoes','GIRLS_SWIMMING_WATER_SHOES',2693,'/kids/girls-clothing/shoes/sports-shoes/swimming-and-water-shoes','/kids/girls-clothing/shoes/sports-shoes/swimming-and-water-shoes'), + (1533,'Trainers','SNEAKERS_GIRLS_NEW',1255,'/kids/girls-clothing/shoes/trainers','/kids/girls-clothing/shoes/trainers'), + (2718,'Hook-and-loop trainers','GIRLS_HOOK_LOOP_TRAINERS',1533,'/kids/girls-clothing/shoes/trainers/hook-and-loop-trainers','/kids/girls-clothing/shoes/trainers/hook-and-loop-trainers'), + (2719,'Lace-up trainers','GIRLS_LACE_UP_TRAINERS',1533,'/kids/girls-clothing/shoes/trainers/lace-up-trainers','/kids/girls-clothing/shoes/trainers/lace-up-trainers'), + (2720,'Slip-on trainers','GIRLS_SLIP_ON_TRAINERS',1533,'/kids/girls-clothing/shoes/trainers/slip-on-trainers','/kids/girls-clothing/shoes/trainers/slip-on-trainers'), + (1244,'Outerwear','GIRLS_COATS',1195,'/kids/girls-clothing/outerwear','/kids/girls-clothing/outerwear'), + (1519,'Coats','COATS_GIRLS_NEW',1244,'/kids/girls-clothing/coats-and-jackets-1519','/kids/girls-clothing/coats-and-jackets-1519'), + (2540,'Duffle coats','GIRLS_DUFFLE_COATS',1519,'/kids/girls-clothing/outerwear/coats/duffle-coats','/kids/girls-clothing/outerwear/coats/duffle-coats'), + (2541,'Parkas','GIRLS_PARKAS',1519,'/kids/girls-clothing/outerwear/coats/parkas','/kids/girls-clothing/outerwear/coats/parkas'), + (2542,'Peacoats','GIRLS_PEACOATS',1519,'/kids/girls-clothing/outerwear/coats/peacoats','/kids/girls-clothing/outerwear/coats/peacoats'), + (2543,'Trench coats','GIRLS_TRENCH_COATS',1519,'/kids/girls-clothing/outerwear/coats/trench-coats','/kids/girls-clothing/outerwear/coats/trench-coats'), + (1518,'Gilets & body warmers','OUT_VESTS_GIRLS_NEW',1244,'/kids/girls-clothing/outerwear/gilets-and-body-warmers','/kids/girls-clothing/outerwear/gilets-and-body-warmers'), + (1521,'Jackets','JACKETS_GIRLS_NEW',1244,'/kids/girls-clothing/coats-and-jackets/jackets','/kids/girls-clothing/coats-and-jackets/jackets'), + (2544,'Blazers','GIRLS_BLAZERS_3',1521,'/kids/girls-clothing/outerwear/jackets/blazers','/kids/girls-clothing/outerwear/jackets/blazers'), + (2545,'Bomber jackets','GIRLS_BOMBER_JACKETS',1521,'/kids/girls-clothing/outerwear/jackets/bomber-jackets','/kids/girls-clothing/outerwear/jackets/bomber-jackets'), + (2546,'Denim jackets','GIRLS_DENIM_JACKETS',1521,'/kids/girls-clothing/outerwear/jackets/denim-jackets','/kids/girls-clothing/outerwear/jackets/denim-jackets'), + (2547,'Fleece jackets','GIRLS_FLEECE_JACKETS',1521,'/kids/girls-clothing/outerwear/jackets/fleece-jackets','/kids/girls-clothing/outerwear/jackets/fleece-jackets'), + (2548,'Puffer jackets','GIRLS_PUFFER_JACKETS',1521,'/kids/girls-clothing/outerwear/jackets/puffer-jackets','/kids/girls-clothing/outerwear/jackets/puffer-jackets'), + (2549,'Windbreakers','GIRLS_WINDBREAKERS',1521,'/kids/girls-clothing/outerwear/jackets/windbreakers','/kids/girls-clothing/outerwear/jackets/windbreakers'), + (2554,'Rain gear','GIRLS_RAIN_GEAR',1244,'/kids/girls-clothing/outerwear/rain-gear','/kids/girls-clothing/outerwear/rain-gear'), + (2556,'Ponchos','GIRLS_PONCHOS_3',2554,'/kids/girls-clothing/outerwear/rain-gear/ponchos','/kids/girls-clothing/outerwear/rain-gear/ponchos'), + (2557,'Rain suits & sets','GIRLS_RAIN_SUITS',2554,'/kids/girls-clothing/outerwear/rain-gear/rain-suits-and-sets','/kids/girls-clothing/outerwear/rain-gear/rain-suits-and-sets'), + (2555,'Rain trousers','GIRLS_RAIN_PANTS',2554,'/kids/girls-clothing/outerwear/rain-gear/rain-trousers','/kids/girls-clothing/outerwear/rain-gear/rain-trousers'), + (2558,'Raincoats','GIRLS_RAINCOATS_3',2554,'/kids/girls-clothing/outerwear/rain-gear/raincoats','/kids/girls-clothing/outerwear/rain-gear/raincoats'), + (2559,'Snow gear','GIRLS_SNOW_GEAR',1244,'/kids/girls-clothing/outerwear/snow-gear','/kids/girls-clothing/outerwear/snow-gear'), + (2560,'Snow jackets & coats','GIRLS_JACKETS_COATS',2559,'/kids/girls-clothing/outerwear/snow-gear/snow-jackets-and-coats','/kids/girls-clothing/outerwear/snow-gear/snow-jackets-and-coats'), + (2565,'Snow suits & sets','GIRLS_SNOW_SUITS',2559,'/kids/girls-clothing/outerwear/snow-gear/snow-suits-and-sets','/kids/girls-clothing/outerwear/snow-gear/snow-suits-and-sets'), + (2582,'Snow trousers','GIRLS_SNOW_PANTS',2559,'/kids/girls-clothing/outerwear/snow-gear/snow-trousers','/kids/girls-clothing/outerwear/snow-gear/snow-trousers'), + (1246,'Jumpers & hoodies','GIRLS_SWEATERS',1195,'/kids/girls-clothing/jumpers-and-hoodies','/kids/girls-clothing/jumpers-and-hoodies'), + (1542,'Jumpers','SWEATERS_GIRLS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies-1542','/kids/girls-clothing/jumpers-and-hoodies-1542'), + (1543,'V-neck jumpers','VNECK_SWEATERS_GIRLS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies/v-neck-jumpers','/kids/girls-clothing/jumpers-and-hoodies/v-neck-jumpers'), + (1544,'Turtleneck jumpers','TURLENECK_GRILS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies/turtleneck-jumpers','/kids/girls-clothing/jumpers-and-hoodies/turtleneck-jumpers'), + (1548,'Zip-up jumpers','ZIPP_SWEATERS_GIRLS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies/zip-up-jumpers','/kids/girls-clothing/jumpers-and-hoodies/zip-up-jumpers'), + (1549,'Boleros','BOLEROS_GIRLS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies/boleros','/kids/girls-clothing/jumpers-and-hoodies/boleros'), + (1550,'Hoodies & sweatshirts','HOODIES_GIRLS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies/hoodies-and-sweatshirts','/kids/girls-clothing/jumpers-and-hoodies/hoodies-and-sweatshirts'), + (1551,'Sleeveless jumpers','VESTS_GIRLS_NEW',1246,'/kids/girls-clothing/jumpers-and-hoodies/sleeveless-jumpers','/kids/girls-clothing/jumpers-and-hoodies/sleeveless-jumpers'), + (1877,'Other jumpers & hoodies','OTHER_SWEATERS_GIRLS',1246,'/kids/girls-clothing/jumpers-and-hoodies/other-jumpers-and-hoodies','/kids/girls-clothing/jumpers-and-hoodies/other-jumpers-and-hoodies'), + (1245,'Tops & T-shirts','GIRLS_SHIRTS',1195,'/kids/girls-clothing/tops-and-t-shirts-1245','/kids/girls-clothing/tops-and-t-shirts-1245'), + (1535,'T-shirts','TOPS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/t-shirts','/kids/girls-clothing/tops-and-t-shirts/t-shirts'), + (1536,'Polo shirts','POLOSHIRTS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/polo-shirts','/kids/girls-clothing/tops-and-t-shirts/polo-shirts'), + (1537,'Shirts','SHIRTS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/shirts','/kids/girls-clothing/tops-and-t-shirts/shirts'), + (1538,'Short-sleeved tops','SHORTSLEEVE_SHIRTS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/short-sleeved-tops','/kids/girls-clothing/tops-and-t-shirts/short-sleeved-tops'), + (1539,'Long-sleeved tops','LOGSLEEVE_SHIRTS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/long-sleeved-tops','/kids/girls-clothing/tops-and-t-shirts/long-sleeved-tops'), + (1540,'Sleeveless tops','SLEEVELESS_SHIRTS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/sleeveless-tops','/kids/girls-clothing/tops-and-t-shirts/sleeveless-tops'), + (1541,'Tunics','TUNICS_GIRLS_NEW',1245,'/kids/girls-clothing/tops-and-t-shirts/tunics','/kids/girls-clothing/tops-and-t-shirts/tunics'), + (1878,'Other tops & T-shirts','OTHER_TOPS_GIRLS',1245,'/kids/girls-clothing/tops-and-t-shirts/other-tops-and-t-shirts-1878','/kids/girls-clothing/tops-and-t-shirts/other-tops-and-t-shirts-1878'), + (1247,'Dresses','GIRLS_DRESSES',1195,'/kids/girls-clothing/dresses','/kids/girls-clothing/dresses'), + (1554,'Short dresses','SHORTDRESSES_GIRLS_NEW',1247,'/kids/girls-clothing/dresses/short-dresses','/kids/girls-clothing/dresses/short-dresses'), + (1553,'Long dresses','LONGDRESSES_GIRLS_NEW',1247,'/kids/girls-clothing/dresses/long-dresses','/kids/girls-clothing/dresses/long-dresses'), + (1248,'Skirts','GIRLS_SKIRTS',1195,'/kids/girls-clothing/skirts','/kids/girls-clothing/skirts'), + (1249,'Trousers, shorts & dungarees','GIRLS_PANTS',1195,'/kids/girls-clothing/trousers-shorts-and-dungarees','/kids/girls-clothing/trousers-shorts-and-dungarees'), + (1559,'Jeans','JEANS_GIRLS_NEW',1249,'/kids/girls-clothing/trousers-and-shorts/jeans','/kids/girls-clothing/trousers-and-shorts/jeans'), + (1560,'Skinny trousers','SKINNYPANTS_GIRLS_NEW',1249,'/kids/girls-clothing/trousers-and-shorts/skinny-trousers','/kids/girls-clothing/trousers-and-shorts/skinny-trousers'), + (1562,'Wide-leg trousers','BELLBOTTOMPANTS_GIRLS_NEW',1249,'/kids/girls-clothing/trousers-and-shorts/wide-leg-trousers','/kids/girls-clothing/trousers-and-shorts/wide-leg-trousers'), + (1565,'Leggings','LEGGINGS_GIRLS_NEW',1249,'/kids/girls-clothing/trousers-and-shorts/leggings','/kids/girls-clothing/trousers-and-shorts/leggings'), + (1568,'Jumpsuits & dungarees','OVERALLS_ROMPERS_GIRLS_NEW',1249,'/kids/girls-clothing/trousers-and-shorts/jumpsuits-and-dungarees','/kids/girls-clothing/trousers-and-shorts/jumpsuits-and-dungarees'), + (1250,'Shorts & cropped trousers','GIRLS_SHORTS',1249,'/kids/girls-clothing/trousers-and-shorts/shorts-and-cropped-trousers','/kids/girls-clothing/trousers-and-shorts/shorts-and-cropped-trousers'), + (2079,'Harem pants','HAREM_GIRLS_NEW',1249,'/kids/girls-clothing/trousers-and-shorts/harem-pants','/kids/girls-clothing/trousers-and-shorts/harem-pants'), + (1880,'Other trousers, shorts & dungarees','OTHER_PANTS_GIRLS',1249,'/kids/girls-clothing/trousers-shorts-and-dungarees/other-trousers-shorts-and-dungarees','/kids/girls-clothing/trousers-shorts-and-dungarees/other-trousers-shorts-and-dungarees'), + (1258,'Bags & backpacks','GIRLS_BAGS',1195,'/kids/girls-clothing/bags-and-backpacks','/kids/girls-clothing/bags-and-backpacks'), + (1574,'Accessories','ACCESSORIES_GIRLS_NEW',1195,'/kids/girls-clothing/accessories','/kids/girls-clothing/accessories'), + (1577,'Caps & hats','HATS_GIRLS_NEW',1574,'/kids/girls-clothing/accessories/caps-and-hats','/kids/girls-clothing/accessories/caps-and-hats'), + (1578,'Gloves','GLOVES_GIRLS_NEW',1574,'/kids/girls-clothing/accessories/gloves','/kids/girls-clothing/accessories/gloves'), + (1580,'Scarves & shawls','SCARVES_GIRLS_NEW',1574,'/kids/girls-clothing/accessories/scarves-and-shawls','/kids/girls-clothing/accessories/scarves-and-shawls'), + (1581,'Belts','BELTS_GIRLS_NEW',1574,'/kids/girls-clothing/accessories/belts','/kids/girls-clothing/accessories/belts'), + (1582,'Hairbands & hairclips','HAIR_ACC_GIRLS_NEW',1574,'/kids/girls-clothing/accessories/hairbands-and-hairclips','/kids/girls-clothing/accessories/hairbands-and-hairclips'), + (1584,'Wallets & purses','KIDS_WALLETS_NEW',1574,'/kids/girls-clothing/accessories/wallets-and-purses','/kids/girls-clothing/accessories/wallets-and-purses'), + (1586,'Jewellery','KIDS_JEWELERY',1574,'/kids/girls-clothing/accessories/jewellery','/kids/girls-clothing/accessories/jewellery'), + (1881,'Other accessories','OTHERS_ACC_GIRLS',1574,'/kids/girls-clothing/accessories/other-accessories','/kids/girls-clothing/accessories/other-accessories'), + (1251,'Swimwear','GIRLS_SWIM',1195,'/kids/girls-clothing/swimwear','/kids/girls-clothing/swimwear'), + (1590,'One-piece swimsuits','SWIMSUITS_GIRLS_NEW',1251,'/kids/girls-clothing/swimwear/one-piece-swimsuits','/kids/girls-clothing/swimwear/one-piece-swimsuits'), + (1592,'Bikinis & tankinis','BIKINIS_GIRLS_NEW',1251,'/kids/girls-clothing/swimwear/bikinis-and-tankinis','/kids/girls-clothing/swimwear/bikinis-and-tankinis'), + (1593,'Bathrobes','BATHROBES_GIRLS_NEW',1251,'/kids/girls-clothing/swimwear/bathrobes','/kids/girls-clothing/swimwear/bathrobes'), + (1252,'Underwear & socks','GIRLS_UNDERW',1195,'/kids/girls-clothing/underwear-and-socks','/kids/girls-clothing/underwear-and-socks'), + (1600,'Socks','SOCKS_GIRLS_NEW',1252,'/kids/girls-clothing/underwear-and-socks/socks','/kids/girls-clothing/underwear-and-socks/socks'), + (1601,'Tights & leggings','TIGHTS_GIRLS_NEW',1252,'/kids/girls-clothing/underwear-and-socks/tights-and-leggings','/kids/girls-clothing/underwear-and-socks/tights-and-leggings'), + (1602,'Underwear','PANTIES_GIRLS_NEW',1252,'/kids/girls-clothing/underwear-and-socks/underwear','/kids/girls-clothing/underwear-and-socks/underwear'), + (1872,'Other underwear & socks','OTHER_UNDERWEAR_GIRLS',1252,'/kids/girls-clothing/underwear-and-socks/other-underwear-and-socks','/kids/girls-clothing/underwear-and-socks/other-underwear-and-socks'), + (1594,'Sleepwear & nightwear','SLEEPWEAR_GIRLS_NEW',1195,'/kids/girls-clothing/sleepwear-and-nightwear','/kids/girls-clothing/sleepwear-and-nightwear'), + (1596,'One-piece pyjamas','ONEPIECE_PAJAMAS_GIRLS',1594,'/kids/girls-clothing/nightwear/one-piece-pyjamas','/kids/girls-clothing/nightwear/one-piece-pyjamas'), + (1597,'Two-piece pyjamas','TWOPIECE_PAJAMAS_GIRLS_NEW',1594,'/kids/girls-clothing/nightwear/two-piece-pyjamas','/kids/girls-clothing/nightwear/two-piece-pyjamas'), + (1598,'Nighties','NIGHTGOWNS_GIRLS_NEW',1594,'/kids/girls-clothing/sleepwear-and-nightwear/nighties','/kids/girls-clothing/sleepwear-and-nightwear/nighties'), + (1253,'Activewear','GIRLS_SPORTS',1195,'/kids/girls-clothing/activewear','/kids/girls-clothing/activewear'), + (1510,'Clothing bundles','CLOTHING_PACKAGES_NEW',1195,'/kids/girls-clothing/clothing-bundles','/kids/girls-clothing/clothing-bundles'), + (1604,'Clothing for twins','TWINS_GIRLS_NEW',1195,'/kids/girls-clothing/clothing-for-twins','/kids/girls-clothing/clothing-for-twins'), + (1606,'Fancy dress & costumes','COSTUMES_GIRLS_NEW',1195,'/kids/girls-clothing/fancy-dress-and-costumes','/kids/girls-clothing/fancy-dress-and-costumes'), + (2080,'Formal wear & special occasion clothing','THEMED_COSTUMES_NEW',1195,'/kids/girls-clothing/formal-wear-and-special-occasion-clothing','/kids/girls-clothing/formal-wear-and-special-occasion-clothing'), + (1254,'Other girls clothing','GIRLS_OTHER',1195,'/kids/girls-clothing/other-girls-clothing','/kids/girls-clothing/other-girls-clothing'), + (1194,'Boys clothing','BOYS_NEW',1193,'/kids/boys-clothing-1194','/kids/boys-clothing-1194'), + (1196,'Baby boys clothing','BOYS_BABIES',1194,'/kids/boys-clothing/baby-boys-clothing','/kids/boys-clothing/baby-boys-clothing'), + (1642,'Rompers','FULL_ROMPERS_BOYS_NEW',1196,'/kids/boys-clothing/baby-clothing/rompers','/kids/boys-clothing/baby-clothing/rompers'), + (1643,'Bodysuits','BOYS_BODIES_NEW',1196,'/kids/boys-clothing/baby-clothing/bodysuits','/kids/boys-clothing/baby-clothing/bodysuits'), + (1644,'Dungarees','ROMPERS_BOYS_NEW',1196,'/kids/boys-clothing/baby-clothing/dungarees','/kids/boys-clothing/baby-clothing/dungarees'), + (1645,'Sets','BOYS_SETS_NEW',1196,'/kids/boys-clothing/baby-clothing/sets','/kids/boys-clothing/baby-clothing/sets'), + (1883,'Other baby boys clothing','OTHER_BABY_BOYS',1196,'/kids/boys-clothing/baby-boys-clothing/other-baby-boys-clothing','/kids/boys-clothing/baby-boys-clothing/other-baby-boys-clothing'), + (1256,'Shoes','BOYS_SHOES',1194,'/kids/boys-clothing/shoes','/kids/boys-clothing/shoes'), + (1653,'Baby shoes','BOY_BABYSHOES_NEW',1256,'/kids/boys-clothing/shoes/baby-shoes','/kids/boys-clothing/shoes/baby-shoes'), + (2721,'Boat shoes, loafers & moccasins','BOYS_BOAT_LOAFERS_MOCCASINS',1256,'/kids/boys-clothing/shoes/boat-shoes-loafers-and-moccasins','/kids/boys-clothing/shoes/boat-shoes-loafers-and-moccasins'), + (1657,'Boots','BOOTS_BOYS_NEW',1256,'/kids/boys-clothing/shoes/boots','/kids/boys-clothing/shoes/boots'), + (2726,'Ankle boots','BOYS_ANKLE_BOOTS',1657,'/kids/boys-clothing/shoes/boots/ankle-boots','/kids/boys-clothing/shoes/boots/ankle-boots'), + (2727,'Mid-calf boots','BOYS_MID_CALF_BOOTS',1657,'/kids/boys-clothing/shoes/boots/mid-calf-boots','/kids/boys-clothing/shoes/boots/mid-calf-boots'), + (2728,'Snow boots','BOYS_SNOW_BOOTS',1657,'/kids/boys-clothing/shoes/boots/snow-boots','/kids/boys-clothing/shoes/boots/snow-boots'), + (2729,'Wellington boots','BOYS_WELLINGTONS',1657,'/kids/boys-clothing/shoes/boots/wellington-boots','/kids/boys-clothing/shoes/boots/wellington-boots'), + (2722,'Espadrilles','BOYS_ESPADRILLES',1256,'/kids/boys-clothing/shoes/espadrilles','/kids/boys-clothing/shoes/espadrilles'), + (2723,'Flip-flops, sandals & slides','BOYS_FLIP_FLOPS_SANDALS_SLIDES',1256,'/kids/boys-clothing/shoes/flip-flops-sandals-and-slides','/kids/boys-clothing/shoes/flip-flops-sandals-and-slides'), + (2730,'Clogs & mules','BOYS_CLOGS_MULES',2723,'/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/clogs-and-mules','/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/clogs-and-mules'), + (2732,'Flip-flops','BOYS_FLIP_FLOPS_2',2723,'/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/flip-flops','/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/flip-flops'), + (2733,'Sandals','BOYS_SANDALS',2723,'/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/sandals','/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/sandals'), + (2734,'Slides','BOYS_SLIDES',2723,'/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/slides','/kids/boys-clothing/shoes/flip-flops-sandals-and-slides/slides'), + (1655,'Formal & special occasion shoes','SHOES_OCC_BOYS_NEW',1256,'/kids/boys-clothing/shoes/formal-and-special-occasion-shoes','/kids/boys-clothing/shoes/formal-and-special-occasion-shoes'), + (1661,'Slippers','SLIPPERS_BOYS_NEW',1256,'/kids/boys-clothing/shoes/slippers','/kids/boys-clothing/shoes/slippers'), + (2724,'Sports shoes','BOYS_SPORT_SHOES',1256,'/kids/boys-clothing/shoes/sports-shoes','/kids/boys-clothing/shoes/sports-shoes'), + (2735,'Basketball shoes','BOYS_BASKETBALL_SHOES',2724,'/kids/boys-clothing/shoes/sports-shoes/basketball-shoes','/kids/boys-clothing/shoes/sports-shoes/basketball-shoes'), + (2737,'Dance shoes','BOYS_DANCE_SHOES_2',2724,'/kids/boys-clothing/shoes/sports-shoes/dance-shoes','/kids/boys-clothing/shoes/sports-shoes/dance-shoes'), + (2738,'Football boots','BOYS_FOOTBALL_BOOTS',2724,'/kids/boys-clothing/shoes/sports-shoes/football-boots','/kids/boys-clothing/shoes/sports-shoes/football-boots'), + (2742,'Hiking boots & shoes','BOYS_HIKING_BOOTS_SHOES_3',2724,'/kids/boys-clothing/shoes/sports-shoes/hiking-boots-and-shoes','/kids/boys-clothing/shoes/sports-shoes/hiking-boots-and-shoes'), + (2743,'Ice skates','BOYS_ICE_SKATES',2724,'/kids/boys-clothing/shoes/sports-shoes/ice-skates','/kids/boys-clothing/shoes/sports-shoes/ice-skates'), + (2744,'Roller skates & inline skates','BOYS_ROLLER_SKATES_BLADES',2724,'/kids/boys-clothing/shoes/sports-shoes/roller-skates-and-inline-skates','/kids/boys-clothing/shoes/sports-shoes/roller-skates-and-inline-skates'), + (2745,'Running shoes','BOYS_RUNNING_SHOES',2724,'/kids/boys-clothing/shoes/sports-shoes/running-shoes','/kids/boys-clothing/shoes/sports-shoes/running-shoes'), + (2746,'Ski boots','BOYS_SKI_BOOTS',2724,'/kids/boys-clothing/shoes/sports-shoes/ski-boots','/kids/boys-clothing/shoes/sports-shoes/ski-boots'), + (2748,'Snowboard boots','BOYS_SNOWBOARD_BOOTS_2',2724,'/kids/boys-clothing/shoes/sports-shoes/snowboard-boots','/kids/boys-clothing/shoes/sports-shoes/snowboard-boots'), + (2749,'Swimming & water shoes','BOYS_SWIMMING_WATER_SHOES',2724,'/kids/boys-clothing/shoes/sports-shoes/swimming-and-water-shoes','/kids/boys-clothing/shoes/sports-shoes/swimming-and-water-shoes'), + (1660,'Trainers','SNEAKERS_BOYS_NEW',1256,'/kids/boys-clothing/shoes/trainers','/kids/boys-clothing/shoes/trainers'), + (2750,'Hook-and-loop trainers','BOYS_HOOK_LOOP_TRAINERS',1660,'/kids/boys-clothing/shoes/trainers/hook-and-loop-trainers','/kids/boys-clothing/shoes/trainers/hook-and-loop-trainers'), + (2751,'Lace-up trainers','BOYS_LACE_UP_TRAINERS',1660,'/kids/boys-clothing/shoes/trainers/lace-up-trainers','/kids/boys-clothing/shoes/trainers/lace-up-trainers'), + (2752,'Slip-on trainers','BOYS_SLIP_ON_TRAINERS',1660,'/kids/boys-clothing/shoes/trainers/slip-on-trainers','/kids/boys-clothing/shoes/trainers/slip-on-trainers'), + (1197,'Outerwear','BOYS_COATS',1194,'/kids/boys-clothing/outerwear','/kids/boys-clothing/outerwear'), + (1647,'Coats','BOYS_COATS_NEW',1197,'/kids/boys-clothing/coats-and-jackets-1647','/kids/boys-clothing/coats-and-jackets-1647'), + (2561,'Duffle coats','BOYS_DUFFLE_COATS',1647,'/kids/boys-clothing/outerwear/coats/duffle-coats','/kids/boys-clothing/outerwear/coats/duffle-coats'), + (2562,'Parkas','BOYS_PARKAS',1647,'/kids/boys-clothing/outerwear/coats/parkas','/kids/boys-clothing/outerwear/coats/parkas'), + (2563,'Peacoats','BOYS_PEACOATS',1647,'/kids/boys-clothing/outerwear/coats/peacoats','/kids/boys-clothing/outerwear/coats/peacoats'), + (2564,'Trench coats','BOYS_TRENCH_COATS',1647,'/kids/boys-clothing/outerwear/coats/trench-coats','/kids/boys-clothing/outerwear/coats/trench-coats'), + (1646,'Gilets & body warmers','BOYS_OUTVESTS_NEW',1197,'/kids/boys-clothing/outerwear/gilets-and-body-warmers','/kids/boys-clothing/outerwear/gilets-and-body-warmers'), + (1649,'Jackets','BOYS_JACKETS_NEW',1197,'/kids/boys-clothing/coats-and-jackets/jackets','/kids/boys-clothing/coats-and-jackets/jackets'), + (2571,'Blazers','BOYS_BLAZERS',1649,'/kids/boys-clothing/outerwear/jackets/blazers','/kids/boys-clothing/outerwear/jackets/blazers'), + (2573,'Bomber jackets','BOYS_BOMBER_JACKETS',1649,'/kids/boys-clothing/outerwear/jackets/bomber-jackets','/kids/boys-clothing/outerwear/jackets/bomber-jackets'), + (2574,'Denim jackets','BOYS_DENIM_JACKETS',1649,'/kids/boys-clothing/outerwear/jackets/denim-jackets','/kids/boys-clothing/outerwear/jackets/denim-jackets'), + (2575,'Fleece jackets','BOYS_FLEECE_JACKETS',1649,'/kids/boys-clothing/outerwear/jackets/fleece-jackets','/kids/boys-clothing/outerwear/jackets/fleece-jackets'), + (2576,'Puffer jackets','BOYS_PUFFER_JACKETS',1649,'/kids/boys-clothing/outerwear/jackets/puffer-jackets','/kids/boys-clothing/outerwear/jackets/puffer-jackets'), + (2577,'Windbreakers','BOYS_WINDBREAKERS',1649,'/kids/boys-clothing/outerwear/jackets/windbreakers','/kids/boys-clothing/outerwear/jackets/windbreakers'), + (2583,'Rain gear','BOYS_RAIN_GEAR',1197,'/kids/boys-clothing/outerwear/rain-gear','/kids/boys-clothing/outerwear/rain-gear'), + (2604,'Ponchos','BOYS_PONCHOS',2583,'/kids/boys-clothing/outerwear/rain-gear/ponchos','/kids/boys-clothing/outerwear/rain-gear/ponchos'), + (2609,'Rain suits & sets','BOYS_RAIN_SUITS_SETS',2583,'/kids/boys-clothing/outerwear/rain-gear/rain-suits-and-sets','/kids/boys-clothing/outerwear/rain-gear/rain-suits-and-sets'), + (2602,'Rain trousers','BOYS_RAIN_PANTS',2583,'/kids/boys-clothing/outerwear/rain-gear/rain-trousers','/kids/boys-clothing/outerwear/rain-gear/rain-trousers'), + (2606,'Raincoats','BOYS_RAINCOATS',2583,'/kids/boys-clothing/outerwear/rain-gear/raincoats','/kids/boys-clothing/outerwear/rain-gear/raincoats'), + (2590,'Snow gear','BOYS_SNOW_GEAR',1197,'/kids/boys-clothing/outerwear/snow-gear','/kids/boys-clothing/outerwear/snow-gear'), + (2610,'Snow jackets & coats','BOYS_SNOW_COATS_JACKETS',2590,'/kids/boys-clothing/outerwear/snow-gear/snow-jackets-and-coats','/kids/boys-clothing/outerwear/snow-gear/snow-jackets-and-coats'), + (2613,'Snow suits & sets','BOYS_SNOW_SUITS_SETS',2590,'/kids/boys-clothing/outerwear/snow-gear/snow-suits-and-sets','/kids/boys-clothing/outerwear/snow-gear/snow-suits-and-sets'), + (2612,'Snow trousers','BOYS_SNOW_PANTS',2590,'/kids/boys-clothing/outerwear/snow-gear/snow-trousers','/kids/boys-clothing/outerwear/snow-gear/snow-trousers'), + (1199,'Jumpers & hoodies','BOYS_SWEATERS',1194,'/kids/boys-clothing/jumpers-and-hoodies','/kids/boys-clothing/jumpers-and-hoodies'), + (1668,'Jumpers','SWEATERS_BOYS_NEW',1199,'/kids/boys-clothing/jumpers-and-hoodies-1668','/kids/boys-clothing/jumpers-and-hoodies-1668'), + (1669,'V-neck jumpers','VNECK_SWEATERS_BOYS_NEW',1199,'/kids/boys-clothing/jumpers-and-hoodies/v-neck-jumpers','/kids/boys-clothing/jumpers-and-hoodies/v-neck-jumpers'), + (1670,'Turtleneck jumpers','TURLENECK_BOYS_NEW',1199,'/kids/boys-clothing/jumpers-and-hoodies/turtleneck-jumpers','/kids/boys-clothing/jumpers-and-hoodies/turtleneck-jumpers'), + (1671,'Zip-up jumpers','ZIPP_SWEATERS_BOYS_NEW',1199,'/kids/boys-clothing/jumpers-and-hoodies/zip-up-jumpers','/kids/boys-clothing/jumpers-and-hoodies/zip-up-jumpers'), + (1672,'Hoodies & sweatshirts','HOODIES_BOYS_NEW',1199,'/kids/boys-clothing/jumpers-and-hoodies/hoodies-and-sweatshirts','/kids/boys-clothing/jumpers-and-hoodies/hoodies-and-sweatshirts'), + (1673,'Sleeveless jumpers','VESTS_BOYS_NEW',1199,'/kids/boys-clothing/jumpers-and-hoodies/sleeveless-jumpers','/kids/boys-clothing/jumpers-and-hoodies/sleeveless-jumpers'), + (1887,'Other jumpers & hoodies','OTHER_SWEATERS_BOYS',1199,'/kids/boys-clothing/jumpers-and-hoodies/other-jumpers-and-hoodies','/kids/boys-clothing/jumpers-and-hoodies/other-jumpers-and-hoodies'), + (1198,'Tops & T-shirts','BOYS_SHIRTS',1194,'/kids/boys-clothing/tops-and-t-shirts-1198','/kids/boys-clothing/tops-and-t-shirts-1198'), + (1662,'T-shirts','TSHIRTS_BOYS_NEW',1198,'/kids/boys-clothing/tops-and-t-shirts/t-shirts','/kids/boys-clothing/tops-and-t-shirts/t-shirts'), + (1663,'Polo shirts','POLOSHIRTS_BOYS_NEW',1198,'/kids/boys-clothing/tops-and-t-shirts/polo-shirts','/kids/boys-clothing/tops-and-t-shirts/polo-shirts'), + (1664,'Shirts','SHIRTS_BOYS_NEW',1198,'/kids/boys-clothing/tops-and-t-shirts/shirts','/kids/boys-clothing/tops-and-t-shirts/shirts'), + (1665,'Short-sleeved tops','SHORTSLEEVE_SHIRTS_BOYS_NEW',1198,'/kids/boys-clothing/tops-and-t-shirts/short-sleeved-tops','/kids/boys-clothing/tops-and-t-shirts/short-sleeved-tops'), + (1666,'Long-sleeved tops','LONGSLEEVE_BOYS_NEW',1198,'/kids/boys-clothing/tops-and-t-shirts/long-sleeved-tops','/kids/boys-clothing/tops-and-t-shirts/long-sleeved-tops'), + (1667,'Sleeveless tops','SLEEVELESS_SHIRTS_BOYS_NEW',1198,'/kids/boys-clothing/tops-and-t-shirts/sleeveless-tops','/kids/boys-clothing/tops-and-t-shirts/sleeveless-tops'), + (1886,'Other tops & T-shirts','OTHER_TOPS_BOYS',1198,'/kids/boys-clothing/tops-and-t-shirts/other-tops-and-t-shirts-1886','/kids/boys-clothing/tops-and-t-shirts/other-tops-and-t-shirts-1886'), + (1200,'Trousers, shorts & dungarees','BOYS_PANTS',1194,'/kids/boys-clothing/trousers-shorts-and-dungarees','/kids/boys-clothing/trousers-shorts-and-dungarees'), + (1696,'Jeans','JEANS_BOYS_NEW',1200,'/kids/boys-clothing/trousers-and-dungarees/jeans','/kids/boys-clothing/trousers-and-dungarees/jeans'), + (1697,'Skinny trousers','SKINNYPANTS_BOYS_NEW',1200,'/kids/boys-clothing/trousers-and-dungarees/skinny-trousers','/kids/boys-clothing/trousers-and-dungarees/skinny-trousers'), + (1698,'Wide-leg trousers','BELLBOTTOMPANTS_BOYS_NEW',1200,'/kids/boys-clothing/trousers-and-dungarees/wide-leg-trousers','/kids/boys-clothing/trousers-and-dungarees/wide-leg-trousers'), + (1701,'Leggings','BOYS_LEGGINGS_NEW',1200,'/kids/boys-clothing/trousers-and-dungarees/leggings','/kids/boys-clothing/trousers-and-dungarees/leggings'), + (1702,'Jumpsuits & dungarees','OVERALLS_ROMPERS_BOYS_NEW',1200,'/kids/boys-clothing/trousers-and-dungarees/jumpsuits-and-dungarees','/kids/boys-clothing/trousers-and-dungarees/jumpsuits-and-dungarees'), + (1201,'Shorts & cropped trousers','BOYS_SHORTS',1200,'/kids/boys-clothing/trousers-and-dungarees/shorts-and-cropped-trousers','/kids/boys-clothing/trousers-and-dungarees/shorts-and-cropped-trousers'), + (2082,'Harem pants','BOYS_PANTS_HAREM',1200,'/kids/boys-clothing/trousers-and-dungarees/harem-pants','/kids/boys-clothing/trousers-and-dungarees/harem-pants'), + (1870,'Other trousers, shorts & dungarees','BOYS_OTH_PANTS',1200,'/kids/boys-clothing/trousers-shorts-and-dungarees/other-trousers-shorts-and-dungarees','/kids/boys-clothing/trousers-shorts-and-dungarees/other-trousers-shorts-and-dungarees'), + (1257,'Bags & backpacks','BOYS_BAGS',1194,'/kids/boys-clothing/bags-and-backpacks','/kids/boys-clothing/bags-and-backpacks'), + (1714,'Accessories','ACCESSORIES_BOYS_NEW',1194,'/kids/boys-clothing/accessories','/kids/boys-clothing/accessories'), + (1749,'Caps & hats','CAPS_BOYS_NEW',1714,'/kids/boys-clothing/accessories/caps-and-hats','/kids/boys-clothing/accessories/caps-and-hats'), + (1740,'Gloves','GLOVES_BOYS_NEW',1714,'/kids/boys-clothing/accessories/gloves','/kids/boys-clothing/accessories/gloves'), + (1741,'Scarves & shawls','SCARVES_BOYS_NEW',1714,'/kids/boys-clothing/accessories/scarves-and-shawls','/kids/boys-clothing/accessories/scarves-and-shawls'), + (1743,'Belts','BELTS_BOYS_NEW',1714,'/kids/boys-clothing/accessories/belts','/kids/boys-clothing/accessories/belts'), + (1745,'Wallets','WALLETS_BOYS_NEW',1714,'/kids/boys-clothing/accessories/wallets','/kids/boys-clothing/accessories/wallets'), + (1746,'Ties & bow ties','BOWS_BOYS_NEW',1714,'/kids/boys-clothing/accessories/ties-and-bow-ties','/kids/boys-clothing/accessories/ties-and-bow-ties'), + (1748,'Other accessories','BOYS_ACC_NEW',1714,'/kids/boys-clothing/accessories/other-accessories','/kids/boys-clothing/accessories/other-accessories'), + (1202,'Swimwear','BOYS_SWIM',1194,'/kids/boys-clothing/swimwear','/kids/boys-clothing/swimwear'), + (1750,'Swimming trunks','BATHSHORTS_BOYS_NEW',1202,'/kids/boys-clothing/swimwear/swimming-trunks','/kids/boys-clothing/swimwear/swimming-trunks'), + (1751,'Bathrobes','BATHROBES_BOYS_NEW',1202,'/kids/boys-clothing/swimwear/bathrobes','/kids/boys-clothing/swimwear/bathrobes'), + (1203,'Underwear & socks','BOYS_SWIMWEAR',1194,'/kids/boys-clothing/underwear-and-socks','/kids/boys-clothing/underwear-and-socks'), + (1757,'Socks','SOCKS_BOYS_NEW',1203,'/kids/boys-clothing/underwear-and-socks/socks','/kids/boys-clothing/underwear-and-socks/socks'), + (1758,'Tights & leggings','TIGHTS_BOYS_NEW',1203,'/kids/boys-clothing/underwear-and-socks/tights-and-leggings','/kids/boys-clothing/underwear-and-socks/tights-and-leggings'), + (1759,'Underwear','PANTIES_BOYS_NEW',1203,'/kids/boys-clothing/underwear-and-socks/underwear','/kids/boys-clothing/underwear-and-socks/underwear'), + (1871,'Other underwear & socks','OTHER_UNDER_BOYS',1203,'/kids/boys-clothing/underwear-and-socks/other-underwear-and-socks','/kids/boys-clothing/underwear-and-socks/other-underwear-and-socks'), + (1752,'Sleepwear','SLEEPWEAR_BOYS_NEW',1194,'/kids/boys-clothing/sleepwear','/kids/boys-clothing/sleepwear'), + (1754,'One-piece pyjamas','ONEPIECE_PAJAMAS_BOYS',1752,'/kids/boys-clothing/nightwear/one-piece-pyjamas','/kids/boys-clothing/nightwear/one-piece-pyjamas'), + (1755,'Two-piece pyjamas','TWOPIECE_PAJAMAS_BOYS',1752,'/kids/boys-clothing/nightwear/two-piece-pyjamas','/kids/boys-clothing/nightwear/two-piece-pyjamas'), + (1204,'Activewear','BOYS_SPORTS',1194,'/kids/boys-clothing/activewear','/kids/boys-clothing/activewear'), + (1760,'Clothing bundles','BOYS_PACKAGES',1194,'/kids/boys-clothing/clothing-bundles','/kids/boys-clothing/clothing-bundles'), + (1761,'Clothing for twins','TWINS_BOYS_NEW',1194,'/kids/boys-clothing/clothing-for-twins','/kids/boys-clothing/clothing-for-twins'), + (1762,'Fancy dress & costumes','OCC_BOYS_NEW',1194,'/kids/boys-clothing/fancy-dress-and-costumes','/kids/boys-clothing/fancy-dress-and-costumes'), + (2083,'Formal wear & special occasion clothing','BOYS_THEMED_COSTUMES',1194,'/kids/boys-clothing/formal-wear-and-special-occasion-clothing','/kids/boys-clothing/formal-wear-and-special-occasion-clothing'), + (1205,'Other boys clothing','BOYS_OTHER',1194,'/kids/boys-clothing/other-boys-clothing','/kids/boys-clothing/other-boys-clothing'), + (1499,'Toys & games','TOYS_AND_GAMES_NEW',1193,'/kids/toys-and-games','/kids/toys-and-games'), + (1730,'Action figures','ACTION_FIGURES_NEW',1499,'/kids/toys-and-games/action-figures','/kids/toys-and-games/action-figures'), + (1725,'Electronic games','ELECTRONIC_NEW',1499,'/kids/toys-and-games/electronic-games','/kids/toys-and-games/electronic-games'), + (1731,'Dolls','DOLLS_NEW',1499,'/kids/toys-and-games/dolls','/kids/toys-and-games/dolls'), + (1763,'Educational toys & games','EDUCATIONAL_TOYS_NEW',1499,'/kids/toys-and-games/educational-toys-and-games','/kids/toys-and-games/educational-toys-and-games'), + (1764,'Soft toys & stuffed animals','STUFFED_ANIMALS_NEW',1499,'/kids/toys-and-games/soft-toys-and-stuffed-animals','/kids/toys-and-games/soft-toys-and-stuffed-animals'), + (1765,'Rattles & chew toys','RATTLES_AND_CHEW_NEW',1499,'/kids/toys-and-games/rattles-and-chew-toys','/kids/toys-and-games/rattles-and-chew-toys'), + (1766,'Musical toys','MUSICAL_NEW',1499,'/kids/toys-and-games/musical-toys','/kids/toys-and-games/musical-toys'), + (1767,'Construction toys','CONSTRUCTION_NEW',1499,'/kids/toys-and-games/construction-toys','/kids/toys-and-games/construction-toys'), + (1768,'Wooden toys','WOODEN_NEW',1499,'/kids/toys-and-games/wooden-toys','/kids/toys-and-games/wooden-toys'), + (1769,'Hanging mobiles','MOBILES_NEW',1499,'/kids/toys-and-games/hanging-mobiles','/kids/toys-and-games/hanging-mobiles'), + (1770,'Water toys & games','WATER_NEW',1499,'/kids/toys-and-games/water-toys-and-games','/kids/toys-and-games/water-toys-and-games'), + (1771,'Outdoor toys & games','OUTDOOR_NEW',1499,'/kids/toys-and-games/outdoor-toys-and-games','/kids/toys-and-games/outdoor-toys-and-games'), + (2085,'Kitchen toys','KITCHEN_TOYS_NEW',1499,'/kids/toys-and-games/kitchen-toys','/kids/toys-and-games/kitchen-toys'), + (2086,'Sleeping toys','SLEEPING_TOYS_NEW',1499,'/kids/toys-and-games/sleeping-toys','/kids/toys-and-games/sleeping-toys'), + (1500,'Baby care','BABY_CARE_NEW',1193,'/kids/baby-care','/kids/baby-care'), + (1620,'Sleep accessories','SLEEPING_ACCESSORIES_NEW',1500,'/kids/baby-care/sleep-accessories','/kids/baby-care/sleep-accessories'), + (1622,'Blankets','BLANKETS_NEW',1620,'/kids/baby-care/sleep-accessories/blankets','/kids/baby-care/sleep-accessories/blankets'), + (1623,'Pillows','PILLOWS_NEW',1620,'/kids/baby-care/sleep-accessories/pillows','/kids/baby-care/sleep-accessories/pillows'), + (1624,'Plaids','PLAIDS_NEW',1620,'/kids/baby-care/sleep-accessories/plaids','/kids/baby-care/sleep-accessories/plaids'), + (1625,'Sleeping bags','SLEEPING_BAGS_NEW',1620,'/kids/baby-care/sleep-accessories/sleeping-bags','/kids/baby-care/sleep-accessories/sleeping-bags'), + (1626,'Bedding','BEDDING_NEW',1620,'/kids/baby-care/sleep-accessories/bedding','/kids/baby-care/sleep-accessories/bedding'), + (1627,'Heating pads & electric blankets','HEATING_PADS_NEW',1620,'/kids/baby-care/sleep-accessories/heating-pads-and-electric-blankets','/kids/baby-care/sleep-accessories/heating-pads-and-electric-blankets'), + (1621,'Nursing & feeding','KIDS_DISHES_NEW',1500,'/kids/baby-care/nursing-and-feeding','/kids/baby-care/nursing-and-feeding'), + (1628,'Cutlery','CUTLERY_NEW',1621,'/kids/baby-care/nursing-and-feeding/cutlery','/kids/baby-care/nursing-and-feeding/cutlery'), + (1629,'Baby bottles','BABY_BOTTLES_NEW',1621,'/kids/baby-care/nursing-and-feeding/baby-bottles','/kids/baby-care/nursing-and-feeding/baby-bottles'), + (1630,'Pacifiers, dummies & soothers','PACIFIERS_NEW',1621,'/kids/baby-care/nursing-and-feeding/pacifiers-dummies-and-soothers','/kids/baby-care/nursing-and-feeding/pacifiers-dummies-and-soothers'), + (1631,'Dishes','DISHES_NEW',1621,'/kids/baby-care/nursing-and-feeding/dishes','/kids/baby-care/nursing-and-feeding/dishes'), + (1633,'Flasks & bottle warmers','THERMOS_BOTTLES_AND_WARMERS_NEW',1621,'/kids/baby-care/nursing-and-feeding/flasks-and-bottle-warmers','/kids/baby-care/nursing-and-feeding/flasks-and-bottle-warmers'), + (1640,'Other nursing & feeding items','DISHES_OTHERS',1621,'/kids/baby-care/nursing-and-feeding/other-nursing-and-feeding-items','/kids/baby-care/nursing-and-feeding/other-nursing-and-feeding-items'), + (2088,'Feeding pillows','FEEDING_PILLOWS_NEW',1621,'/kids/baby-care/nursing-and-feeding/feeding-pillows-2088','/kids/baby-care/nursing-and-feeding/feeding-pillows-2088'), + (1674,'Baby carriers & wraps','BABY_CARRIERS_AND_WRAPS_NEW',1500,'/kids/baby-care/baby-carriers-and-wraps','/kids/baby-care/baby-carriers-and-wraps'), + (1675,'Swimming equipment','SWIM_GEAR_NEW',1500,'/kids/baby-care/swimming-equipment','/kids/baby-care/swimming-equipment'), + (1676,'Nappies & skincare','DIAPERING_AND_CARING_NEW',1500,'/kids/baby-care/nappies-and-skincare','/kids/baby-care/nappies-and-skincare'), + (1678,'Nappies','DIAPERS_NEW',1676,'/kids/baby-care/nappies-and-skincare-1678','/kids/baby-care/nappies-and-skincare-1678'), + (1679,'Baby hygiene','BABY_HYGIENE_NEW',1676,'/kids/baby-care/nappies-and-skincare/baby-hygiene','/kids/baby-care/nappies-and-skincare/baby-hygiene'), + (1680,'Baby changing bags','MOTHERS_BAGS_NEW',1676,'/kids/baby-care/nappies-and-skincare/baby-changing-bags','/kids/baby-care/nappies-and-skincare/baby-changing-bags'), + (2087,'Nappy waste containers','DIAPERS_WASTE_CONTAINERS_NEW',1676,'/kids/baby-care/nappies-and-skincare/nappy-waste-containers','/kids/baby-care/nappies-and-skincare/nappy-waste-containers'), + (1681,'Childcare accessories & tech','TECHNICAL_ITEMS_FOR_BABIES_NEW',1500,'/kids/baby-care/childcare-accessories-and-tech','/kids/baby-care/childcare-accessories-and-tech'), + (1682,'Baby monitors','BABY_MONITORS_NEW',1681,'/kids/baby-care/childcare-accessories-and-tech/baby-monitors','/kids/baby-care/childcare-accessories-and-tech/baby-monitors'), + (1683,'Food heaters','FOR_FOOD_HEATING_NEW',1681,'/kids/baby-care/childcare-accessories-and-tech/food-heaters','/kids/baby-care/childcare-accessories-and-tech/food-heaters'), + (1684,'Breast pumps & accessories','BREAST_PUMPS_NEW',1681,'/kids/baby-care/childcare-accessories-and-tech/breast-pumps-and-accessories','/kids/baby-care/childcare-accessories-and-tech/breast-pumps-and-accessories'), + (1685,'Sterilisers','STERILIZERS_NEW',1681,'/kids/baby-care/childcare-accessories-and-tech/sterilisers','/kids/baby-care/childcare-accessories-and-tech/sterilisers'), + (1686,'Thermometers & scales','THERMOMETERS_AND_SCALES_NEW',1681,'/kids/baby-care/childcare-accessories-and-tech/thermometers-and-scales','/kids/baby-care/childcare-accessories-and-tech/thermometers-and-scales'), + (1687,'Bouncers & swings','BOUNCERS_AND_SWINGS_NEW',1500,'/kids/baby-care/bouncers-and-swings','/kids/baby-care/bouncers-and-swings'), + (1688,'Bouncers','BOUNCERS_NEW',1687,'/kids/baby-care/bouncers-and-swings-1688','/kids/baby-care/bouncers-and-swings-1688'), + (1689,'Swings','SWINGS_NEW',1687,'/kids/baby-care/bouncers-and-swings/swings','/kids/baby-care/bouncers-and-swings/swings'), + (1690,'Bibs','BIBS_NEW',1500,'/kids/baby-care/bibs','/kids/baby-care/bibs'), + (1691,'Potties','POTTIES_NEW',1500,'/kids/baby-care/potties','/kids/baby-care/potties'), + (1692,'Childproofing & safety equipment','CHILDPROOFING_AND_SAFETY_NEW',1500,'/kids/baby-care/childproofing-and-safety-equipment','/kids/baby-care/childproofing-and-safety-equipment'), + (1695,'Childproofing gates & guards','HOME_AND_FURNITURE_SAFETY_NEW',1692,'/kids/baby-care/childproofing-and-safety/childproofing-gates-and-guards','/kids/baby-care/childproofing-and-safety/childproofing-gates-and-guards'), + (1700,'Car sun shades & screens','CAR_SUN_SHADES_NEW',1692,'/kids/baby-care/childproofing-and-safety-equipment/car-sun-shades-and-screens','/kids/baby-care/childproofing-and-safety-equipment/car-sun-shades-and-screens'), + (1703,'Cycling & roller skating safety equipment','BICYCLE_AND_ROLLER_SAFETY_NEW',1692,'/kids/baby-care/childproofing-and-safety-equipment/cycling-and-roller-skating-safety-equipment','/kids/baby-care/childproofing-and-safety-equipment/cycling-and-roller-skating-safety-equipment'), + (1772,'Other childproofing & safety equipment','OTHER_NEW',1692,'/kids/baby-care/childproofing-and-safety-equipment/other-childproofing-and-safety-equipment','/kids/baby-care/childproofing-and-safety-equipment/other-childproofing-and-safety-equipment'), + (1496,'Buggies','STROLLERS_NEW',1193,'/kids/buggies','/kids/buggies'), + (1512,'Umbrella buggies','UMBRELLA_STROLLERS_NEW',1496,'/kids/buggies/umbrella-buggies','/kids/buggies/umbrella-buggies'), + (1611,'Running & sport buggies','SPORT_STROLLERS_NEW',1496,'/kids/buggies/running-and-sport-buggies','/kids/buggies/running-and-sport-buggies'), + (1612,'Universal buggies','UNIVERSAL_STROLLERS_NEW',1496,'/kids/buggies/universal-buggies','/kids/buggies/universal-buggies'), + (1613,'Buggies for twins','FOR_TWINS_NEW',1496,'/kids/buggies/buggies-for-twins','/kids/buggies/buggies-for-twins'), + (1511,'Buggy accessories','STROLLERS_ACCESSORIES_NEW',1496,'/kids/buggies/buggy-accessories','/kids/buggies/buggy-accessories'), + (1497,'Ride-on toys','MOVING_GEAR_NEW',1193,'/kids/ride-on-toys','/kids/ride-on-toys'), + (1599,'Baby walkers','BABY_WALKERS_NEW',1497,'/kids/ride-on-toys/baby-walkers','/kids/ride-on-toys/baby-walkers'), + (1603,'Push & pull toys','PUSH_AND_PULL_TOYS_NEW',1497,'/kids/ride-on-toys/push-and-pull-toys','/kids/ride-on-toys/push-and-pull-toys'), + (1595,'Bicycle seats & trailers','BABY_BICYCLE_SEAT_AND_TRAINERS_NEW',1497,'/kids/ride-on-toys/bicycle-seats-and-trailers','/kids/ride-on-toys/bicycle-seats-and-trailers'), + (1605,'Scooters','SCOOTERS_NEW',1497,'/kids/ride-on-toys/scooters','/kids/ride-on-toys/scooters'), + (1607,'Tricycles','TRICYCLES_NEW',1497,'/kids/ride-on-toys/tricycles','/kids/ride-on-toys/tricycles'), + (1608,'Bicycles','BICYCLES_NEW',1497,'/kids/ride-on-toys/bicycles','/kids/ride-on-toys/bicycles'), + (1609,'Outdoor vehicles','OUTDOOR_VEHICLES_NEW',1497,'/kids/ride-on-toys/outdoor-vehicles','/kids/ride-on-toys/outdoor-vehicles'), + (1610,'Sledges, skis & snowboards','SLEDS_NEW',1497,'/kids/ride-on-toys/sledges-skis-and-snowboards','/kids/ride-on-toys/sledges-skis-and-snowboards'), + (1495,'Car chairs & feeding chairs','CHAIRS_NEW',1193,'/kids/car-chairs-and-feeding-chairs','/kids/car-chairs-and-feeding-chairs'), + (1503,'Car chairs','CAR_CHAIRS_NEW',1495,'/kids/car-seats-and-chairs/car-chairs','/kids/car-seats-and-chairs/car-chairs'), + (1504,'Feeding chairs','FEEDING_CHAIRS_NEW',1495,'/kids/car-seats-and-chairs/feeding-chairs','/kids/car-seats-and-chairs/feeding-chairs'), + (1498,'Kid & baby furniture','KIDS_FURNITURE_NEW',1193,'/kids/kid-and-baby-furniture','/kids/kid-and-baby-furniture'), + (1561,'Cribs & cradles','CRADLES_NEW',1498,'/kids/kids-furniture/cribs-and-cradles','/kids/kids-furniture/cribs-and-cradles'), + (1563,'Cots','CRIBS_NEW',1498,'/kids/kids-furniture/cots','/kids/kids-furniture/cots'), + (1566,'Toddler beds','TODDLER_BEDS_NEW',1498,'/kids/kids-furniture/toddler-beds','/kids/kids-furniture/toddler-beds'), + (1567,'Mattresses','MATTRESSES_NEW',1498,'/kids/kids-furniture/mattresses','/kids/kids-furniture/mattresses'), + (1569,'Cot mattresses','FOR_CRIBS_NEW',1567,'/kids/kids-furniture/mattresses/cot-mattresses','/kids/kids-furniture/mattresses/cot-mattresses'), + (1570,'Crib & cradle mattresses','FOR_BABY_BEDS_NEW',1567,'/kids/kids-furniture/mattresses/crib-and-cradle-mattresses','/kids/kids-furniture/mattresses/crib-and-cradle-mattresses'), + (1571,'Kid bed mattresses','FOR_KIDS_BEDS_NEW',1567,'/kids/kids-furniture/mattresses/kid-bed-mattresses','/kids/kids-furniture/mattresses/kid-bed-mattresses'), + (1572,'Playmats','PLAYMATS_NEW',1498,'/kids/kids-furniture/playmats','/kids/kids-furniture/playmats'), + (1573,'Playpens','PLAYPENS_NEW',1498,'/kids/kids-furniture/playpens','/kids/kids-furniture/playpens'), + (1575,'Changing pads & tables','CHANGING_PAD_AND_TABLES_NEW',1498,'/kids/kids-furniture/changing-pads-and-tables','/kids/kids-furniture/changing-pads-and-tables'), + (1576,'Furniture','FURNITURE_NEW',1498,'/kids/kids-furniture/furniture','/kids/kids-furniture/furniture'), + (1579,'Chairs','KIDS_CHAIRS_NEW',1576,'/kids/kids-furniture/other-kids-furniture/chairs','/kids/kids-furniture/other-kids-furniture/chairs'), + (1585,'Tables','TABLES_NEW',1576,'/kids/kids-furniture/other-kids-furniture/tables','/kids/kids-furniture/other-kids-furniture/tables'), + (1587,'Carpets','CARPETS_NEW',1576,'/kids/kids-furniture/other-kids-furniture/carpets','/kids/kids-furniture/other-kids-furniture/carpets'), + (1588,'Wardrobes','WARDROBES_NEW',1576,'/kids/kids-furniture/other-kids-furniture/wardrobes','/kids/kids-furniture/other-kids-furniture/wardrobes'), + (1589,'Shelves','SHELVES_NEW',1576,'/kids/kids-furniture/other-kids-furniture/shelves','/kids/kids-furniture/other-kids-furniture/shelves'), + (1591,'Play furniture','PLAYING_FURNITURE_NEW',1576,'/kids/kids-furniture/other-kids-furniture/play-furniture','/kids/kids-furniture/other-kids-furniture/play-furniture'), + (1501,'School supplies','BOOKS_AND_SCHOOL_NEW',1193,'/kids/school-supplies','/kids/school-supplies'), + (1508,'School bags','SCHOOL_BAGS_NEW',1501,'/kids/school-supplies/school-bags','/kids/school-supplies/school-bags'), + (1509,'School supplies','SCHOOL_SUPPLIES_NEW',1501,'/kids/school-supplies-1509','/kids/school-supplies-1509'), + (1502,'Other kids items','ALL_OTHER_NEW',1193,'/kids/other-kids-items','/kids/other-kids-items'), + (1918,'Home','HOME',0,'/home','/home'), + (1919,'Textiles','H_TEXTILES',1918,'/home/textiles','/home/textiles'), + (1924,'Bedding','H_BEDDING',1919,'/home/textiles/bedding','/home/textiles/bedding'), + (1942,'Bedding sets','H_BEDDING_SETS',1924,'/home/textiles/bedding/bedding-sets','/home/textiles/bedding/bedding-sets'), + (1943,'Duvet covers','H_DUVET_COVERS',1924,'/home/textiles/bedding/duvet-covers','/home/textiles/bedding/duvet-covers'), + (1944,'Pillowcases','H_PILLOWCASES',1924,'/home/textiles/bedding/pillowcases','/home/textiles/bedding/pillowcases'), + (1945,'Sheets','H_SHEETS',1924,'/home/textiles/bedding/sheets','/home/textiles/bedding/sheets'), + (1925,'Blankets','H_BLANKETS',1919,'/home/textiles/blankets','/home/textiles/blankets'), + (1926,'Curtains & drapes','H_CURTAINS_DRAPES',1919,'/home/textiles/curtains-and-drapes','/home/textiles/curtains-and-drapes'), + (1946,'Opaque curtains & drapes','H_OPAQUE_CURTAINS_DRAPES',1926,'/home/textiles/curtains-and-drapes/opaque-curtains-and-drapes','/home/textiles/curtains-and-drapes/opaque-curtains-and-drapes'), + (1955,'Sheer curtains & drapes','H_SHEER_CURTAINS_DRAPES',1926,'/home/textiles/curtains-and-drapes/sheer-curtains-and-drapes','/home/textiles/curtains-and-drapes/sheer-curtains-and-drapes'), + (1974,'Cushions','H_CUSHIONS',1919,'/home/textiles/cushions','/home/textiles/cushions'), + (1927,'Rugs & mats','H_RUGS_MATS',1919,'/home/textiles/rugs-and-mats','/home/textiles/rugs-and-mats'), + (1953,'Doormats & floor mats','H_DOORMATS_FLOOR_MATS',1927,'/home/textiles/rugs-and-mats/doormats-and-floor-mats','/home/textiles/rugs-and-mats/doormats-and-floor-mats'), + (1954,'Rugs','H_RUGS',1927,'/home/textiles/rugs-and-mats-1954','/home/textiles/rugs-and-mats-1954'), + (1928,'Table linen','H_TABLE_LINEN',1919,'/home/textiles/table-linen','/home/textiles/table-linen'), + (1929,'Tapestries & wall hangings','H_TAPESTRIES_WALL_HANGINGS',1919,'/home/textiles/tapestries-and-wall-hangings','/home/textiles/tapestries-and-wall-hangings'), + (1930,'Towels','H_TOWELS',1919,'/home/textiles/towels','/home/textiles/towels'), + (1947,'Bath towels','H_BATH_TOWELS',1930,'/home/textiles/towels/bath-towels','/home/textiles/towels/bath-towels'), + (1948,'Beach towels','H_BEACH_TOWELS',1930,'/home/textiles/towels/beach-towels','/home/textiles/towels/beach-towels'), + (1949,'Hand towels','H_HAND_TOWELS',1930,'/home/textiles/towels/hand-towels','/home/textiles/towels/hand-towels'), + (1934,'Home accessories','H_ACCESSORIES',1918,'/home/home-accessories','/home/home-accessories'), + (1935,'Candles & candle holders','H_CANDLES_CANDLE_HOLDERS',1934,'/home/home-accessories/candles-and-candle-holders','/home/home-accessories/candles-and-candle-holders'), + (1957,'Candle holders','H_CANDLEHOLDERS',1935,'/home/home-accessories/candles-and-candle-holders/candle-holders','/home/home-accessories/candles-and-candle-holders/candle-holders'), + (1956,'Candles','H_CANDLES',1935,'/home/home-accessories/candles-and-candle-holders-1956','/home/home-accessories/candles-and-candle-holders-1956'), + (1936,'Clocks','H_CLOCKS',1934,'/home/home-accessories/clocks','/home/home-accessories/clocks'), + (1966,'Table clocks','H_TABLE_CLOCKS',1936,'/home/home-accessories/clocks/table-clocks','/home/home-accessories/clocks/table-clocks'), + (1967,'Wall clocks','H_WALL_CLOCKS',1936,'/home/home-accessories/clocks/wall-clocks','/home/home-accessories/clocks/wall-clocks'), + (1941,'Display shelves','H_DISPLAY_SHELVES',1934,'/home/home-accessories/display-shelves','/home/home-accessories/display-shelves'), + (1937,'Picture & photo frames','H_FRAMES',1934,'/home/home-accessories/picture-and-photo-frames','/home/home-accessories/picture-and-photo-frames'), + (1938,'Mirrors','H_MIRRORS',1934,'/home/home-accessories/mirrors','/home/home-accessories/mirrors'), + (1969,'Table mirrors','H_TABLE_MIRRORS',1938,'/home/home-accessories/mirrors/table-mirrors','/home/home-accessories/mirrors/table-mirrors'), + (1968,'Wall mirrors','H_WALL_MIRRORS',1938,'/home/home-accessories/mirrors/wall-mirrors','/home/home-accessories/mirrors/wall-mirrors'), + (1939,'Storage','H_STORAGE',1934,'/home/home-accessories/storage','/home/home-accessories/storage'), + (1962,'Baskets','H_BASKETS',1939,'/home/home-accessories/storage/baskets','/home/home-accessories/storage/baskets'), + (1963,'Boxes','H_BOXES',1939,'/home/home-accessories/storage/boxes','/home/home-accessories/storage/boxes'), + (2012,'Clothes bags & hangers','H_CLOTHES_BAGS_HANGERS',1939,'/home/home-accessories/storage/clothes-bags-and-hangers','/home/home-accessories/storage/clothes-bags-and-hangers'), + (1964,'Jewellery organisers','H_JEWELLERY_ORGANISERS',1939,'/home/home-accessories/storage/jewellery-organisers','/home/home-accessories/storage/jewellery-organisers'), + (1965,'Make-up organisers','H_MAKEUP_ORGANISERS',1939,'/home/home-accessories/storage/make-up-organisers','/home/home-accessories/storage/make-up-organisers'), + (1940,'Vases','H_VASES',1934,'/home/home-accessories/vases','/home/home-accessories/vases'), + (1920,'Tableware','H_TABLEWARE',1918,'/home/tableware','/home/tableware'), + (1931,'Cutlery','H_CUTLERY',1920,'/home/tableware/cutlery','/home/tableware/cutlery'), + (1950,'Cutlery sets','H_CUTLERY_SETS',1931,'/home/tableware/cutlery/cutlery-sets','/home/tableware/cutlery/cutlery-sets'), + (1951,'Forks','H_FORKS',1931,'/home/tableware/cutlery/forks','/home/tableware/cutlery/forks'), + (1970,'Table knives','H_TABLE_KNIVES',1931,'/home/tableware/cutlery/table-knives','/home/tableware/cutlery/table-knives'), + (1952,'Spoons','H_SPOONS',1931,'/home/tableware/cutlery/spoons','/home/tableware/cutlery/spoons'), + (1932,'Dinnerware','H_DINNERWARE',1920,'/home/tableware/dinnerware','/home/tableware/dinnerware'), + (1958,'Dinner sets','H_DINNER_SETS',1932,'/home/tableware/dinnerware/dinner-sets','/home/tableware/dinnerware/dinner-sets'), + (1959,'Bowls','H_BOWLS',1932,'/home/tableware/dinnerware/bowls','/home/tableware/dinnerware/bowls'), + (1960,'Plates','H_PLATES',1932,'/home/tableware/dinnerware/plates','/home/tableware/dinnerware/plates'), + (1961,'Trays','H_TRAYS',1932,'/home/tableware/dinnerware/trays','/home/tableware/dinnerware/trays'), + (2005,'Drinkware','H_DRINKWARE',1920,'/home/tableware/drinkware','/home/tableware/drinkware'), + (2006,'Cups & mugs','H_CUPS_MUGS',2005,'/home/tableware/drinkware/cups-and-mugs','/home/tableware/drinkware/cups-and-mugs'), + (2007,'Coffeepots & teapots','H_COFFEE_TEAPOTS',2005,'/home/tableware/drinkware/coffeepots-and-teapots-2007','/home/tableware/drinkware/coffeepots-and-teapots-2007'), + (2008,'Jugs','H_JUGS',2005,'/home/tableware/drinkware/jugs','/home/tableware/drinkware/jugs'), + (2009,'Stemmed glasses','H_STEMMED_GLASSES',2005,'/home/tableware/drinkware/stemmed-glasses','/home/tableware/drinkware/stemmed-glasses'), + (2010,'Tumblers','H_TUMBLERS',2005,'/home/tableware/drinkware/tumblers','/home/tableware/drinkware/tumblers'), + (2011,'Drinkware sets','H_DRINKWARE_SETS',2005,'/home/tableware/drinkware/drinkware-sets','/home/tableware/drinkware/drinkware-sets'), + (2309,'Entertainment','ENTERTAINMENT',0,'/entertainment','/entertainment'), + (2313,'Video games & consoles','VIDEO_GAMES_CONSOLES',2309,'/entertainment/video-games-and-consoles','/entertainment/video-games-and-consoles'), + (2371,'Xbox Series X & S','XBOX_SERIES_X_AND_S',2313,'/entertainment/video-games-and-consoles/xbox-series-x-and-s','/entertainment/video-games-and-consoles/xbox-series-x-and-s'), + (2378,'Games','XBOX_SERIES_X_AND_S_GAMES',2371,'/entertainment/video-games-and-consoles/xbox-series-x-and-s/games','/entertainment/video-games-and-consoles/xbox-series-x-and-s/games'), + (2379,'Consoles','XBOX_SERIES_X_AND_S_GAMES_CONSOLES',2371,'/entertainment/video-games-and-consoles/xbox-series-x-and-s/consoles','/entertainment/video-games-and-consoles/xbox-series-x-and-s/consoles'), + (2380,'Accessories','XBOX_SERIES_X_AND_S_GAMES_ACCESSORIES',2371,'/entertainment/video-games-and-consoles/xbox-series-x-and-s/accessories','/entertainment/video-games-and-consoles/xbox-series-x-and-s/accessories'), + (2372,'Xbox One','XBOX_ONE',2313,'/entertainment/video-games-and-consoles/xbox-one','/entertainment/video-games-and-consoles/xbox-one'), + (2381,'Games','XBOX_ONE_GAMES',2372,'/entertainment/video-games-and-consoles/xbox-one/games','/entertainment/video-games-and-consoles/xbox-one/games'), + (2382,'Consoles','XBOX_ONE_CONSOLES',2372,'/entertainment/video-games-and-consoles/xbox-one/consoles','/entertainment/video-games-and-consoles/xbox-one/consoles'), + (2383,'Accessories','XBOX_ONE_ACCESSORIES',2372,'/entertainment/video-games-and-consoles/xbox-one/accessories','/entertainment/video-games-and-consoles/xbox-one/accessories'), + (2373,'Older Xbox','OLDER_XBOX',2313,'/entertainment/video-games-and-consoles/older-xbox','/entertainment/video-games-and-consoles/older-xbox'), + (2384,'Games','OLDER_XBOX_GAMES',2373,'/entertainment/video-games-and-consoles/older-xbox/games','/entertainment/video-games-and-consoles/older-xbox/games'), + (2385,'Consoles','OLDER_XBOX_CONSOLES',2373,'/entertainment/video-games-and-consoles/older-xbox/consoles','/entertainment/video-games-and-consoles/older-xbox/consoles'), + (2386,'Accessories','OLDER_XBOX_ACCESSORIES',2373,'/entertainment/video-games-and-consoles/older-xbox/accessories','/entertainment/video-games-and-consoles/older-xbox/accessories'), + (2374,'PlayStation 5','PLAYSTATION_5',2313,'/entertainment/video-games-and-consoles/playstation-5','/entertainment/video-games-and-consoles/playstation-5'), + (2390,'Games','PLAYSTATION_5_GAMES',2374,'/entertainment/video-games-and-consoles/playstation-5/games','/entertainment/video-games-and-consoles/playstation-5/games'), + (2391,'Consoles','PLAYSTATION_5_CONSOLES',2374,'/entertainment/video-games-and-consoles/playstation-5/consoles','/entertainment/video-games-and-consoles/playstation-5/consoles'), + (2392,'Accessories','PLAYSTATION_5_ACCESSORIES',2374,'/entertainment/video-games-and-consoles/playstation-5/accessories','/entertainment/video-games-and-consoles/playstation-5/accessories'), + (2375,'PlayStation 4','PLAYSTATION_4',2313,'/entertainment/video-games-and-consoles/playstation-4','/entertainment/video-games-and-consoles/playstation-4'), + (2399,'Games','PLAYSTATION_4_GAMES',2375,'/entertainment/video-games-and-consoles/playstation-4/games','/entertainment/video-games-and-consoles/playstation-4/games'), + (2402,'Consoles','PLAYSTATION_4_CONSOLES',2375,'/entertainment/video-games-and-consoles/playstation-4/consoles','/entertainment/video-games-and-consoles/playstation-4/consoles'), + (2405,'Accessories','PLAYSTATION_4_ACCESSORIES',2375,'/entertainment/video-games-and-consoles/playstation-4/accessories','/entertainment/video-games-and-consoles/playstation-4/accessories'), + (2377,'Older PlayStation','OLDER_PLAYSTATION',2313,'/entertainment/video-games-and-consoles/older-playstation','/entertainment/video-games-and-consoles/older-playstation'), + (2406,'Games','OLDER_PLAYSTATION_GAMES',2377,'/entertainment/video-games-and-consoles/older-playstation/games','/entertainment/video-games-and-consoles/older-playstation/games'), + (2407,'Consoles','OLDER_PLAYSTATION_CONSOLES',2377,'/entertainment/video-games-and-consoles/older-playstation/consoles','/entertainment/video-games-and-consoles/older-playstation/consoles'), + (2409,'Accessories','OLDER_PLAYSTATION_ACCESSORIES',2377,'/entertainment/video-games-and-consoles/older-playstation/accessories','/entertainment/video-games-and-consoles/older-playstation/accessories'), + (2376,'Nintendo Switch','NINTENDO_SWITCH',2313,'/entertainment/video-games-and-consoles/nintendo-switch','/entertainment/video-games-and-consoles/nintendo-switch'), + (2412,'Games','NINTENDO_SWITCH_GAMES',2376,'/entertainment/video-games-and-consoles/nintendo-switch/games','/entertainment/video-games-and-consoles/nintendo-switch/games'), + (2420,'Consoles','NINTENDO_SWITCH_CONSOLES',2376,'/entertainment/video-games-and-consoles/nintendo-switch/consoles','/entertainment/video-games-and-consoles/nintendo-switch/consoles'), + (2421,'Accessories','NINTENDO_SWITCH_ACCESSORIES',2376,'/entertainment/video-games-and-consoles/nintendo-switch/accessories','/entertainment/video-games-and-consoles/nintendo-switch/accessories'), + (2422,'Nintendo Wii & Wii U','NINTENDO_WII_AND_WII_U',2313,'/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u','/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u'), + (2431,'Games','NINTENDO_WII_AND_WII_U_GAMES',2422,'/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u/games','/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u/games'), + (2447,'Consoles','NINTENDO_WII_AND_WII_U_CONSOLES',2422,'/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u/consoles','/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u/consoles'), + (2448,'Accessories','NINTENDO_WII_AND_WII_U_ACCESSORIES',2422,'/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u/accessories','/entertainment/video-games-and-consoles/nintendo-wii-and-wii-u/accessories'), + (2323,'Nintendo 3DS & 2DS','NINTENDO_3DS_2DS',2313,'/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds','/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds'), + (2449,'Games','NINTENDO_3DS_AND_2DS_GAMES',2323,'/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds/games','/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds/games'), + (2450,'Consoles','NINTENDO_3DS_AND_2DS_CONSOLES',2323,'/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds/consoles','/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds/consoles'), + (2451,'Accessories','NINTENDO_3DS_AND_2DS_ACCESSORIES',2323,'/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds/accessories','/entertainment/video-games-and-consoles/nintendo-3ds-and-2ds/accessories'), + (2324,'Nintendo Game Boy','NINTENDO_GAME_BOY',2313,'/entertainment/video-games-and-consoles/nintendo-game-boy','/entertainment/video-games-and-consoles/nintendo-game-boy'), + (2452,'Games','NINTENDO_GAME_BOY_GAMES',2324,'/entertainment/video-games-and-consoles/nintendo-game-boy/games','/entertainment/video-games-and-consoles/nintendo-game-boy/games'), + (2453,'Consoles','NINTENDO_GAME_BOY_CONSOLES',2324,'/entertainment/video-games-and-consoles/nintendo-game-boy/consoles','/entertainment/video-games-and-consoles/nintendo-game-boy/consoles'), + (2454,'Accessories','NINTENDO_GAME_BOY_ACCESSORIES',2324,'/entertainment/video-games-and-consoles/nintendo-game-boy/accessories','/entertainment/video-games-and-consoles/nintendo-game-boy/accessories'), + (2366,'Older Nintendo','OLDER_NINTENDO',2313,'/entertainment/video-games-and-consoles/older-nintendo','/entertainment/video-games-and-consoles/older-nintendo'), + (2455,'Games','OLDER_NINTENDO_GAMES',2366,'/entertainment/video-games-and-consoles/older-nintendo/games','/entertainment/video-games-and-consoles/older-nintendo/games'), + (2456,'Consoles','OLDER_NINTENDO_CONSOLES',2366,'/entertainment/video-games-and-consoles/older-nintendo/consoles','/entertainment/video-games-and-consoles/older-nintendo/consoles'), + (2458,'Accessories','OLDER_NINTENDO_ACCESSORIES',2366,'/entertainment/video-games-and-consoles/older-nintendo/accessories','/entertainment/video-games-and-consoles/older-nintendo/accessories'), + (2367,'Sega','SEGA',2313,'/entertainment/video-games-and-consoles/sega','/entertainment/video-games-and-consoles/sega'), + (2474,'Games','SEGA_GAMES',2367,'/entertainment/video-games-and-consoles/sega/games','/entertainment/video-games-and-consoles/sega/games'), + (2475,'Consoles','SEGA_CONSOLES',2367,'/entertainment/video-games-and-consoles/sega/consoles','/entertainment/video-games-and-consoles/sega/consoles'), + (2476,'Accessories','SEGA_ACCESSORIES',2367,'/entertainment/video-games-and-consoles/sega/accessories','/entertainment/video-games-and-consoles/sega/accessories'), + (2368,'PC games','PC_GAMES',2313,'/entertainment/video-games-and-consoles/pc-games-2368','/entertainment/video-games-and-consoles/pc-games-2368'), + (2369,'Virtual reality','VIRTUAL_REALITY',2313,'/entertainment/video-games-and-consoles/virtual-reality','/entertainment/video-games-and-consoles/virtual-reality'), + (2465,'Games','VIRTUAL_REALITY_GAMES',2369,'/entertainment/video-games-and-consoles/virtual-reality/games','/entertainment/video-games-and-consoles/virtual-reality/games'), + (2466,'Consoles','VIRTUAL_REALITY_CONSOLES',2369,'/entertainment/video-games-and-consoles/virtual-reality/consoles','/entertainment/video-games-and-consoles/virtual-reality/consoles'), + (2469,'Accessories','VIRTUAL_REALITY_ACCESSORIES',2369,'/entertainment/video-games-and-consoles/virtual-reality/accessories','/entertainment/video-games-and-consoles/virtual-reality/accessories'), + (2370,'Retro gaming','RETRO_GAMING',2313,'/entertainment/video-games-and-consoles/retro-gaming','/entertainment/video-games-and-consoles/retro-gaming'), + (2459,'Steam','STEAM',2370,'/entertainment/video-games-and-consoles/retro-gaming/steam','/entertainment/video-games-and-consoles/retro-gaming/steam'), + (2460,'Intellivision','INTELLIVISION',2370,'/entertainment/video-games-and-consoles/retro-gaming/intellivision','/entertainment/video-games-and-consoles/retro-gaming/intellivision'), + (2461,'Atari','ATARI',2370,'/entertainment/video-games-and-consoles/retro-gaming/atari','/entertainment/video-games-and-consoles/retro-gaming/atari'), + (2462,'ColecoVision','COLECOVISION',2370,'/entertainment/video-games-and-consoles/retro-gaming/colecovision','/entertainment/video-games-and-consoles/retro-gaming/colecovision'), + (2463,'Commodore','COMMODORE',2370,'/entertainment/video-games-and-consoles/retro-gaming/commodore','/entertainment/video-games-and-consoles/retro-gaming/commodore'), + (2464,'3DO','THREE_DO',2370,'/entertainment/video-games-and-consoles/retro-gaming/-3do','/entertainment/video-games-and-consoles/retro-gaming/-3do'), + (2311,'Games & puzzles','GAMES_AND_PUZZLES',2309,'/entertainment/games-and-puzzles','/entertainment/games-and-puzzles'), + (2321,'Board games','BOARD_GAMES_NEW',2311,'/entertainment/games-and-puzzles/board-games','/entertainment/games-and-puzzles/board-games'), + (2477,'Tile-based games','TILE_BASED_GAMES',2311,'/entertainment/games-and-puzzles/tile-based-games','/entertainment/games-and-puzzles/tile-based-games'), + (2322,'Card games','CARD_GAMES',2311,'/entertainment/games-and-puzzles/card-games','/entertainment/games-and-puzzles/card-games'), + (2478,'Jigsaw puzzles','PUZZLES_NEW',2311,'/entertainment/games-and-puzzles/jigsaw-puzzles','/entertainment/games-and-puzzles/jigsaw-puzzles'), + (2479,'Brain teasers & puzzles','BRAIN_TEASERS_AND_PUZZLES',2311,'/entertainment/games-and-puzzles/brain-teasers-and-puzzles','/entertainment/games-and-puzzles/brain-teasers-and-puzzles'), + (2480,'Travel & pocket games','TRAVEL_AND_POCKET_GAMES',2311,'/entertainment/games-and-puzzles/travel-and-pocket-games','/entertainment/games-and-puzzles/travel-and-pocket-games'), + (2481,'Tabletop & miniature gaming','TABLETOP_AND_MINIATURE_GAMING',2311,'/entertainment/games-and-puzzles/tabletop-and-miniature-gaming','/entertainment/games-and-puzzles/tabletop-and-miniature-gaming'), + (2482,'Stacking & balancing games','STACKING_AND_BALANCING_GAMES',2311,'/entertainment/games-and-puzzles/stacking-and-balancing-games','/entertainment/games-and-puzzles/stacking-and-balancing-games'), + (2483,'Floor games','FLOOR_GAMES',2311,'/entertainment/games-and-puzzles/floor-games','/entertainment/games-and-puzzles/floor-games'), + (2310,'Music & video','CD_DVD_AUDIO_NEW',2309,'/entertainment/music-and-video','/entertainment/music-and-video'), + (2314,'Music','MUSIC',2310,'/entertainment/music-and-video/music','/entertainment/music-and-video/music'), + (2328,'CDs','AUDIO_CDS',2314,'/entertainment/music-and-video/cds','/entertainment/music-and-video/cds'), + (2329,'Cassettes','AUDIO_CASSETTES',2314,'/entertainment/music-and-video/cassettes','/entertainment/music-and-video/cassettes'), + (2330,'Vinyl','AUDIO_VINYL',2314,'/entertainment/music-and-video/vinyl','/entertainment/music-and-video/vinyl'), + (2332,'Older audio formats','AUDIO_OLDER_FORMATS',2314,'/entertainment/music-and-video/older-audio-formats','/entertainment/music-and-video/older-audio-formats'), + (2315,'Video','VIDEO',2310,'/entertainment/music-and-video/video','/entertainment/music-and-video/video'), + (2521,'Blu-ray','BLU-RAY_VIDEO',2315,'/entertainment/music-and-video/video/blu-ray','/entertainment/music-and-video/video/blu-ray'), + (2333,'DVD','VIDEO_DVDS',2315,'/entertainment/music-and-video/video/dvd','/entertainment/music-and-video/video/dvd'), + (2334,'VHS','VIDEO_VHS',2315,'/entertainment/music-and-video/video/vhs','/entertainment/music-and-video/video/vhs'), + (2312,'Books','BOOKS',2309,'/entertainment/books','/entertainment/books'), + (2319,'Literature & fiction','LITERATURE_AND_FICTION',2312,'/entertainment/books/literature-and-fiction','/entertainment/books/literature-and-fiction'), + (2336,'Classical literature','H_BOOKS_F_CLASSICAL',2319,'/entertainment/books/literature-and-fiction/classical-literature','/entertainment/books/literature-and-fiction/classical-literature'), + (2337,'Comics & graphic novels','H_BOOKS_F_COMICS',2319,'/entertainment/books/literature-and-fiction/comics-and-graphic-novels','/entertainment/books/literature-and-fiction/comics-and-graphic-novels'), + (2338,'Contemporary fiction','H_BOOKS_F_CONTEMPORARY',2319,'/entertainment/books/literature-and-fiction/contemporary-fiction','/entertainment/books/literature-and-fiction/contemporary-fiction'), + (2339,'Crime & thrillers','H_BOOKS_F_CRIME',2319,'/entertainment/books/literature-and-fiction/crime-and-thrillers','/entertainment/books/literature-and-fiction/crime-and-thrillers'), + (2340,'Humour','H_BOOKS_F_HUMOUR',2319,'/entertainment/books/literature-and-fiction/humour','/entertainment/books/literature-and-fiction/humour'), + (2341,'Poetry & drama','H_BOOKS_F_POETRY',2319,'/entertainment/books/literature-and-fiction/poetry-and-drama','/entertainment/books/literature-and-fiction/poetry-and-drama'), + (2342,'Romance','H_BOOKS_F_ROMANCE',2319,'/entertainment/books/literature-and-fiction/romance','/entertainment/books/literature-and-fiction/romance'), + (2343,'Science fiction & fantasy','H_BOOKS_F_SCIENCE_FICTION',2319,'/entertainment/books/literature-and-fiction/science-fiction-and-fantasy','/entertainment/books/literature-and-fiction/science-fiction-and-fantasy'), + (2344,'Other literature & fiction','H_BOOKS_F_OTHER',2319,'/entertainment/books/literature-and-fiction/other-literature-and-fiction','/entertainment/books/literature-and-fiction/other-literature-and-fiction'), + (2320,'Non-fiction','NON_FICTION',2312,'/entertainment/books/non-fiction','/entertainment/books/non-fiction'), + (2345,'Arts & entertainment','H_BOOKS_NF_ARTS',2320,'/entertainment/books/non-fiction/arts-and-entertainment','/entertainment/books/non-fiction/arts-and-entertainment'), + (2346,'Biography','H_BOOKS_NF_BIOGRAPHY',2320,'/entertainment/books/non-fiction/biography','/entertainment/books/non-fiction/biography'), + (2347,'Business & finance','H_BOOKS_NF_BUSINESS',2320,'/entertainment/books/non-fiction/business-and-finance','/entertainment/books/non-fiction/business-and-finance'), + (2348,'Computers & tech','H_BOOKS_NF_COMPUTERS',2320,'/entertainment/books/non-fiction/computers-and-tech','/entertainment/books/non-fiction/computers-and-tech'), + (2349,'Food & drink','H_BOOKS_NF_FOOD',2320,'/entertainment/books/non-fiction/food-and-drink','/entertainment/books/non-fiction/food-and-drink'), + (2350,'Health & wellbeing','H_BOOKS_NF_HEALTH',2320,'/entertainment/books/non-fiction/health-and-wellbeing','/entertainment/books/non-fiction/health-and-wellbeing'), + (2351,'History','H_BOOKS_NF_HISTORY',2320,'/entertainment/books/non-fiction/history','/entertainment/books/non-fiction/history'), + (2352,'Hobbies, crafts & DIY','H_BOOKS_NF_HOBBIES',2320,'/entertainment/books/non-fiction/hobbies-crafts-and-diy','/entertainment/books/non-fiction/hobbies-crafts-and-diy'), + (2353,'Parenting & family','H_BOOKS_NF_PARENTING',2320,'/entertainment/books/non-fiction/parenting-and-family','/entertainment/books/non-fiction/parenting-and-family'), + (2354,'Politics & society','H_BOOKS_NF_POLITICS',2320,'/entertainment/books/non-fiction/politics-and-society','/entertainment/books/non-fiction/politics-and-society'), + (2355,'Professional & technical','H_BOOKS_NF_PROFESSIONAL',2320,'/entertainment/books/non-fiction/professional-and-technical','/entertainment/books/non-fiction/professional-and-technical'), + (2356,'Reference','H_BOOKS_NF_REFERENCE',2320,'/entertainment/books/non-fiction/reference','/entertainment/books/non-fiction/reference'), + (2357,'Religion & spirituality','H_BOOKS_NF_RELIGION',2320,'/entertainment/books/non-fiction/religion-and-spirituality','/entertainment/books/non-fiction/religion-and-spirituality'), + (2358,'Science & nature','H_BOOKS_NF_SCIENCE',2320,'/entertainment/books/non-fiction/science-and-nature','/entertainment/books/non-fiction/science-and-nature'), + (2359,'Sports','H_BOOKS_NF_SPORTS',2320,'/entertainment/books/non-fiction/sports','/entertainment/books/non-fiction/sports'), + (2360,'Study materials & textbooks','H_BOOKS_NF_STUDY',2320,'/entertainment/books/non-fiction/study-materials-and-textbooks','/entertainment/books/non-fiction/study-materials-and-textbooks'), + (2361,'Travel','H_BOOKS_NF_TRAVEL',2320,'/entertainment/books/non-fiction/travel','/entertainment/books/non-fiction/travel'), + (2362,'Other non-fiction','H_BOOKS_NF_OTHER',2320,'/entertainment/books/non-fiction/other-non-fiction','/entertainment/books/non-fiction/other-non-fiction'), + (2318,'Kids & young adults','KIDS_AND_YOUNG_ADULTS',2312,'/entertainment/books/kids-and-young-adults','/entertainment/books/kids-and-young-adults'), + (2363,'Young adults','H_BOOKS_YOUNG_ADULTS',2318,'/entertainment/books/kids-and-young-adults/young-adults','/entertainment/books/kids-and-young-adults/young-adults'), + (2364,'Kids','H_BOOKS_KIDS',2318,'/entertainment/books/kids-and-young-adults-2364','/entertainment/books/kids-and-young-adults-2364'), + (2365,'Babies & toddlers','H_BOOKS_BABIES_TODDLERS',2318,'/entertainment/books/kids-and-young-adults/babies-and-toddlers','/entertainment/books/kids-and-young-adults/babies-and-toddlers'), + (2093,'Pet care','PET_CARE',0,'/pet-care','/pet-care'), + (2095,'Dogs','DOGS',2093,'/pet-care/dogs','/pet-care/dogs'), + (2109,'Beds & blankets','D_BEDS_BLANKETS',2095,'/pet-care/dogs/beds-and-blankets','/pet-care/dogs/beds-and-blankets'), + (2512,'Beds','D_BEDS',2109,'/pet-care/dogs/beds-and-blankets-2512','/pet-care/dogs/beds-and-blankets-2512'), + (2511,'Blankets','D_BLANKETS',2109,'/pet-care/dogs/beds-and-blankets/blankets','/pet-care/dogs/beds-and-blankets/blankets'), + (2112,'Clothing & accessories','D_CLOTHING_ACCESSORIES',2095,'/pet-care/dogs/clothing-and-accessories','/pet-care/dogs/clothing-and-accessories'), + (2119,'Coats & jackets','D_COATS_JACKETS',2112,'/pet-care/dogs/clothing-and-accessories/coats-and-jackets','/pet-care/dogs/clothing-and-accessories/coats-and-jackets'), + (2484,'Jumpers','D_JUMPERS',2112,'/pet-care/dogs/clothing-and-accessories/jumpers','/pet-care/dogs/clothing-and-accessories/jumpers'), + (2517,'T-shirts','D_T_SHIRTS',2112,'/pet-care/dogs/clothing-and-accessories/t-shirts','/pet-care/dogs/clothing-and-accessories/t-shirts'), + (2518,'Costumes','D_COSTUMES',2112,'/pet-care/dogs/clothing-and-accessories/costumes','/pet-care/dogs/clothing-and-accessories/costumes'), + (2120,'Shoes & boots','D_SHOES_BOOTS',2112,'/pet-care/dogs/clothing-and-accessories/shoes-and-boots','/pet-care/dogs/clothing-and-accessories/shoes-and-boots'), + (2121,'Accessories','D_ACCESSORIES',2112,'/pet-care/dogs/clothing-and-accessories/accessories','/pet-care/dogs/clothing-and-accessories/accessories'), + (2115,'Toys','D_TOYS',2095,'/pet-care/dogs/toys','/pet-care/dogs/toys'), + (2515,'Balls & fetch toys','D_BALLS_FETCH_TOYS',2115,'/pet-care/dogs/toys/balls-and-fetch-toys','/pet-care/dogs/toys/balls-and-fetch-toys'), + (2514,'Soft toys','D_SOFT_TOYS',2115,'/pet-care/dogs/toys/soft-toys','/pet-care/dogs/toys/soft-toys'), + (2513,'Tough & durable toys','D_TOUGH_DURABLE_TOYS',2115,'/pet-care/dogs/toys/tough-and-durable-toys','/pet-care/dogs/toys/tough-and-durable-toys'), + (2113,'Collars & leashes','D_COLLARS_LEADS',2095,'/pet-care/dogs/collars-and-leashes','/pet-care/dogs/collars-and-leashes'), + (2122,'Collars','D_COLLARS',2113,'/pet-care/dogs/collars-and-leashes-2122','/pet-care/dogs/collars-and-leashes-2122'), + (2124,'Harnesses','D_HARNESSES',2113,'/pet-care/dogs/collars-and-leashes/harnesses','/pet-care/dogs/collars-and-leashes/harnesses'), + (2123,'Leashes','D_LEADS',2113,'/pet-care/dogs/collars-and-leashes/leashes','/pet-care/dogs/collars-and-leashes/leashes'), + (2516,'Muzzles','D_MUZZLES',2113,'/pet-care/dogs/collars-and-leashes/muzzles','/pet-care/dogs/collars-and-leashes/muzzles'), + (2488,'Training accessories','D_TRAINING_ACCESSORIES',2095,'/pet-care/dogs/training-accessories','/pet-care/dogs/training-accessories'), + (2510,'Whistles','D_WHISTLES',2488,'/pet-care/dogs/training-accessories/whistles','/pet-care/dogs/training-accessories/whistles'), + (2509,'Bags','D_BAGS',2488,'/pet-care/dogs/training-accessories/bags','/pet-care/dogs/training-accessories/bags'), + (2110,'Bowls & feeders','D_BOWLS_FEEDERS',2095,'/pet-care/dogs/bowls-and-feeders','/pet-care/dogs/bowls-and-feeders'), + (2117,'Bowls','D_BOWLS',2110,'/pet-care/dogs/bowls-and-feeders-2117','/pet-care/dogs/bowls-and-feeders-2117'), + (2118,'Feeders','D_FEEDERS',2110,'/pet-care/dogs/bowls-and-feeders/feeders','/pet-care/dogs/bowls-and-feeders/feeders'), + (2111,'Carriers & crates','D_CARRIERS_CRATES',2095,'/pet-care/dogs/carriers-and-crates','/pet-care/dogs/carriers-and-crates'), + (2508,'Travel carriers','D_CARRIERS',2111,'/pet-care/dogs/carriers-and-crates/travel-carriers','/pet-care/dogs/carriers-and-crates/travel-carriers'), + (2507,'Crates','D_CRATES',2111,'/pet-care/dogs/carriers-and-crates/crates','/pet-care/dogs/carriers-and-crates/crates'), + (2114,'Grooming','D_GROOMING',2095,'/pet-care/dogs/grooming','/pet-care/dogs/grooming'), + (2506,'Brushes & combs','D_BRUSHES_COMBS',2114,'/pet-care/dogs/grooming/brushes-and-combs','/pet-care/dogs/grooming/brushes-and-combs'), + (2505,'Claw care','D_CLAW_CARE',2114,'/pet-care/dogs/grooming/claw-care','/pet-care/dogs/grooming/claw-care'), + (2096,'Cats','CATS',2093,'/pet-care/cats','/pet-care/cats'), + (2098,'Bowls & feeders','C_BOWLS_FEEDERS',2096,'/pet-care/cats/bowls-and-feeders','/pet-care/cats/bowls-and-feeders'), + (2099,'Bowls','C_BOWLS',2098,'/pet-care/cats/bowls-and-feeders-2099','/pet-care/cats/bowls-and-feeders-2099'), + (2126,'Feeders','C_FEEDERS',2098,'/pet-care/cats/bowls-and-feeders/feeders','/pet-care/cats/bowls-and-feeders/feeders'), + (2137,'Toys','C_TOYS',2096,'/pet-care/cats/toys','/pet-care/cats/toys'), + (2500,'Teasers & wands','C_TEASERS_WANDS',2137,'/pet-care/cats/toys/teasers-and-wands','/pet-care/cats/toys/teasers-and-wands'), + (2501,'Balls','C_BALLS',2137,'/pet-care/cats/toys/balls','/pet-care/cats/toys/balls'), + (2502,'Soft toys','C_SOFT_TOYS',2137,'/pet-care/cats/toys/soft-toys','/pet-care/cats/toys/soft-toys'), + (2503,'Scratchers','C_SCRATCHERS',2137,'/pet-care/cats/toys/scratchers','/pet-care/cats/toys/scratchers'), + (2504,'Interactive toys','C_INTERACTIVE_TOYS',2137,'/pet-care/cats/toys/interactive-toys','/pet-care/cats/toys/interactive-toys'), + (2131,'Collars & leashes','C_COLLARS_LEADS',2096,'/pet-care/cats/collars-and-leashes','/pet-care/cats/collars-and-leashes'), + (2133,'Collars','C_COLLARS',2131,'/pet-care/cats/collars-and-leashes-2133','/pet-care/cats/collars-and-leashes-2133'), + (2134,'Harnesses & leashes','C_HARNESSES_LEADS',2131,'/pet-care/cats/collars-and-leashes/harnesses-and-leashes','/pet-care/cats/collars-and-leashes/harnesses-and-leashes'), + (2097,'Beds','C_BEDS',2096,'/pet-care/cats/beds','/pet-care/cats/beds'), + (2125,'Travel carriers','C_TRAVEL_CARRIERS',2096,'/pet-care/cats/travel-carriers','/pet-care/cats/travel-carriers'), + (2499,'Soft carriers & backpacks','C_SOFT_CARRIERS',2125,'/pet-care/cats/travel-carriers/soft-carriers-and-backpacks','/pet-care/cats/travel-carriers/soft-carriers-and-backpacks'), + (2498,'Hard carriers','C_HARD_CARRIERS',2125,'/pet-care/cats/travel-carriers/hard-carriers','/pet-care/cats/travel-carriers/hard-carriers'), + (2127,'Clothing & accessories','C_CLOTHING_ACCESSORIES',2096,'/pet-care/cats/clothing-and-accessories','/pet-care/cats/clothing-and-accessories'), + (2128,'Clothing','C_CLOTHING',2127,'/pet-care/cats/clothing-and-accessories-2128','/pet-care/cats/clothing-and-accessories-2128'), + (2129,'Costumes','C_COSTUMES',2127,'/pet-care/cats/clothing-and-accessories/costumes','/pet-care/cats/clothing-and-accessories/costumes'), + (2130,'Accessories','C_ACCESSORIES',2127,'/pet-care/cats/clothing-and-accessories/accessories','/pet-care/cats/clothing-and-accessories/accessories'), + (2489,'Litter boxes','C_LITTER_BOXES',2096,'/pet-care/cats/litter-boxes','/pet-care/cats/litter-boxes'), + (2136,'Grooming','C_GROOMING',2096,'/pet-care/cats/grooming','/pet-care/cats/grooming'), + (2496,'Brushes & combs','C_BRUSHES_COMBS',2136,'/pet-care/cats/grooming/brushes-and-combs','/pet-care/cats/grooming/brushes-and-combs'), + (2497,'Claw care','C_CLAW_CARE',2136,'/pet-care/cats/grooming/claw-care','/pet-care/cats/grooming/claw-care'), + (2138,'Small pets','SMALL_PETS',2093,'/pet-care/small-pets','/pet-care/small-pets'), + (2140,'Habitats & accessories','SP_HABITATS_ACCESSORIES',2138,'/pet-care/small-pets/habitats-and-accessories','/pet-care/small-pets/habitats-and-accessories'), + (2142,'Toys','SP_TOYS',2138,'/pet-care/small-pets/toys','/pet-care/small-pets/toys'), + (2485,'Fish','FISH',2093,'/pet-care/fish','/pet-care/fish'), + (2491,'Aquarium equipment','F_AQUARIUMS',2485,'/pet-care/fish/aquarium-equipment','/pet-care/fish/aquarium-equipment'), + (2490,'Decorations & accessories','F_DECO_ACCESSORIES',2485,'/pet-care/fish/decorations-and-accessories','/pet-care/fish/decorations-and-accessories'), + (2486,'Birds','BIRDS',2093,'/pet-care/birds','/pet-care/birds'), + (2492,'Toys','B_TOYS',2486,'/pet-care/birds/toys','/pet-care/birds/toys'), + (2493,'Cages & accessories','B_CAGES_ACCESSORIES',2486,'/pet-care/birds/cages-and-accessories','/pet-care/birds/cages-and-accessories'), + (2487,'Reptiles','REPTILES',2093,'/pet-care/reptiles','/pet-care/reptiles'), + (2494,'Decorations & accessories','R_DECO_ACCESSORIES',2487,'/pet-care/reptiles/decorations-and-accessories','/pet-care/reptiles/decorations-and-accessories'), + (2495,'Terrarium equipment','R_TERRARIUM',2487,'/pet-care/reptiles/terrarium-equipment','/pet-care/reptiles/terrarium-equipment'), + (1120,'Other bags','W_OTHER_BAGS',1032,'/other-bags','/other-bags'); diff --git a/migrations/2023-06-29-170110_materials/down.sql b/migrations/2023-06-29-170110_materials/down.sql new file mode 100644 index 0000000..7ba1fbd --- /dev/null +++ b/migrations/2023-06-29-170110_materials/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` + +DROP TABLE MATERIAL; \ No newline at end of file diff --git a/migrations/2023-06-29-170110_materials/up.sql b/migrations/2023-06-29-170110_materials/up.sql new file mode 100644 index 0000000..99f8930 --- /dev/null +++ b/migrations/2023-06-29-170110_materials/up.sql @@ -0,0 +1,63 @@ +-- Your SQL goes here +CREATE TABLE MATERIAL( + id INTEGER PRIMARY KEY, + material_es VARCHAR(30) NOT NULL, + material_fr VARCHAR(30) NOT NULL, + material_en VARCHAR(30) NOT NULL +); + + INSERT INTO MATERIAL(id,material_es,material_fr,material_en) VALUES + (43,'Piel','Cuir','Leather'), + (44,'Algodon','Coton','Cotton'), + (45,'Poliester','Polyester','Polyester'), + (46,'Lana','Laine','Wool'), + (48,'Viscosa','Viscose','Viscose'), + (49,'Seda','Soie','Silk'), + (52,'Nailon','Nylon','Nylon'), + (53,'Elastano','Elasthanne','Elastane'), + (120,'Polar','Polaire','Fleece'), + (121,'Merino','Merinos','Merino'), + (122,'Alpaca','Alpaga','Alpaca'), + (123,'Cachemira','Cachemire','Cashmere'), + (146,'Lino','Lin','Linen'), + (149,'Acrilico','Acrylique','Acrylic'), + (152,'Angora','Mohair','Mohair'), + (177,'Velveton','Peluche','Velour'), + (178,'Neopreno','Neoprene','Neoprene'), + (226,'Lentejuelas','Sequin','Sequin'), + (298,'Ante','Daim','Suede'), + (299,'Pana','Velous cotele','Corduroy'), + (300,'Plastico','Plastique','Plastic'), + (301,'Goma','Caoutchouc','Rubber'), + (302,'Latex','Latex','Latex'), + (303,'Vaquero','Denim','Denim'), + (305,'Charol','Cuir verni','Patent leather'), + (311,'Raso','Satin','Satin'), + (440,'Bambu','Bambou','Bamboo'), + (441,'Lona','Toile','Canvas'), + (442,'Carton','Carton','Cardboard'), + (443,'Ceramica','Ceramique','Ceramic'), + (444,'Chifon','Mousseline','Chiffon'), + (445,'Plumon','Duvet','Down'), + (446,'Cuero sintetico','Fausse fourrure','Faux fur'), + (447,'Piel sintetica','Cuir synthetique','Faux leather'), + (448,'Fieltro','Feutre','Felt'), + (449,'Gomaespuma','Mousse','Foam'), + (451,'Franela','Flanelle','Flannel'), + (452,'Cristal','Verre','Glass'), + (453,'Oro','Or','Gold'), + (454,'Yute','Jute','Jute'), + (455,'Encaje','Dentelle','Lace'), + (456,'Malla','Maille','Mesh'), + (457,'Metal','Metal','Metal'), + (458,'Papel','Papier','Paper'), + (459,'Porcelana','Porcelaine','Porcelain'), + (460,'Mimbre','Rotin','Rattan'), + (461,'Plata','Argent','Silver'), + (462,'Piedra','Pierre','Stone'), + (463,'Paja','Paille','Straw'), + (464,'Tul','Tulle','Tulle'), + (465,'Tweed','Tweed','Tweed'), + (466,'Terciopelo','Velours','Velvet'), + (467,'Madera','Bois','Wood'), + (470,'Silicona','Silicone','Silicone'); diff --git a/migrations/2023-06-29-170114_brands/down.sql b/migrations/2023-06-29-170114_brands/down.sql new file mode 100644 index 0000000..63530e0 --- /dev/null +++ b/migrations/2023-06-29-170114_brands/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` + +DROP TABLE BRAND; \ No newline at end of file diff --git a/migrations/2023-06-29-170114_brands/up.sql b/migrations/2023-06-29-170114_brands/up.sql new file mode 100644 index 0000000..a43e781 --- /dev/null +++ b/migrations/2023-06-29-170114_brands/up.sql @@ -0,0 +1,12842 @@ +-- Your SQL goes here + +CREATE TABLE BRAND( + id INT PRIMARY KEY, + title VARCHAR(80), + url VARCHAR(256) +); + +INSERT INTO BRAND(id , title , url) VALUES +(14 , 'adidas' , 'https://www.vinted.es/brand/adidas'), +(194976 , 'adidas Originals' , 'https://www.vinted.es/brand/adidas-originals'), +(115490 , 'YEEZY' , 'https://www.vinted.es/brand/yeezy'), +(78308 , 'adidas Stan Smith' , 'https://www.vinted.es/brand/adidas-stan-smith'), +(5758435 , 'adidas Superstar' , 'https://www.vinted.es/brand/adidas-superstar'), +(5808842 , 'adidas Performance' , 'https://www.vinted.es/brand/adidas-performance'), +(2293444 , 'adidas x Stella McCartney' , 'https://www.vinted.es/brand/adidas-x-stella-mccartney'), +(5977100 , 'adidas x Pharrell Williams' , 'https://www.vinted.es/brand/adidas-x-pharrell-williams'), +(6397426 , 'adidas x Y-3' , 'https://www.vinted.es/brand/adidas-x-y-3'), +(543679 , 'adidas x Raf Simons' , 'https://www.vinted.es/brand/adidas-x-raf-simons'), +(49 , 'ASOS' , 'https://www.vinted.es/brand/asos'), +(7746542 , 'ASOS Design' , 'https://www.vinted.es/brand/asos-design'), +(5752479 , 'ASOS Petite' , 'https://www.vinted.es/brand/asos-petite'), +(5749357 , 'ASOS Maternity' , 'https://www.vinted.es/brand/asos-maternity'), +(5757630 , 'ASOS Curve' , 'https://www.vinted.es/brand/asos-curve'), +(312323 , 'ASSO' , 'https://www.vinted.es/brand/asso'), +(2531 , 'ASSOS' , 'https://www.vinted.es/brand/assos'), +(55958 , 'Assuili' , 'https://www.vinted.es/brand/assuili'), +(205418 , 'Asus' , 'https://www.vinted.es/brand/asus'), +(257236 , 'Assassin''s Creed' , 'https://www.vinted.es/brand/assassins-creed'), +(131 , 'Atmosphere' , 'https://www.vinted.es/brand/atmosphere'), +(358463 , 'Atmosphereo' , 'https://www.vinted.es/brand/atmosphereo'), +(317647 , 'Atmosphera' , 'https://www.vinted.es/brand/atmosphera'), +(331 , 'Amisu' , 'https://www.vinted.es/brand/amisu'), +(7434984 , 'PUMA x AMI' , 'https://www.vinted.es/brand/puma-x-ami'), +(93 , 'Abercrombie & Fitch' , 'https://www.vinted.es/brand/abercrombie-fitch'), +(5930015 , 'Armani' , 'https://www.vinted.es/brand/armani'), +(5757288 , 'Armani Jeans' , 'https://www.vinted.es/brand/armani-jeans'), +(25629 , 'Armani Exchange' , 'https://www.vinted.es/brand/armani-exchange'), +(340538 , 'Armani Junior' , 'https://www.vinted.es/brand/armani-junior'), +(10605 , 'Armani Collezioni' , 'https://www.vinted.es/brand/armani-collezioni'), +(5757076 , 'Armani Baby' , 'https://www.vinted.es/brand/armani-baby'), +(3293 , 'Armand Thiery' , 'https://www.vinted.es/brand/armand-thiery'), +(7640609 , 'Armand Thierry' , 'https://www.vinted.es/brand/armand-thierry'), +(5225 , 'Armand Ventilo' , 'https://www.vinted.es/brand/armand-ventilo'), +(180726 , 'Armonias' , 'https://www.vinted.es/brand/armonias'), +(152364 , 'Absorba' , 'https://www.vinted.es/brand/absorba'), +(1195 , 'Asics' , 'https://www.vinted.es/brand/asics'), +(1603 , 'Alcott' , 'https://www.vinted.es/brand/alcott'), +(16763 , 'AVON' , 'https://www.vinted.es/brand/avon'), +(243388 , 'Avent' , 'https://www.vinted.es/brand/avent'), +(75 , 'Avant Première' , 'https://www.vinted.es/brand/avant-premiere'), +(204832 , 'Avengers' , 'https://www.vinted.es/brand/avengers'), +(10157 , 'Avene' , 'https://www.vinted.es/brand/avene'), +(37051 , 'Aventures Des Toiles' , 'https://www.vinted.es/brand/aventures-des-toiles'), +(229766 , 'Avomarks' , 'https://www.vinted.es/brand/avomarks'), +(199360 , 'Avanti' , 'https://www.vinted.es/brand/avanti'), +(78592 , 'Avant' , 'https://www.vinted.es/brand/avant'), +(319036 , 'Avenue Mandarine' , 'https://www.vinted.es/brand/avenue-mandarine'), +(7328353 , 'BAPE x adidas Originals' , 'https://www.vinted.es/brand/bape-x-adidas-originals'), +(7380496 , 'adidas Originals x Alexander Wang' , 'https://www.vinted.es/brand/adidas-originals-x-alexander-wang'), +(7336272 , 'adidas Originals x Diesel' , 'https://www.vinted.es/brand/adidas-originals-x-diesel'), +(7328351 , 'adidas Originals x Danielle Cathari' , 'https://www.vinted.es/brand/adidas-originals-x-danielle-cathari'), +(7432254 , 'adidas Originals x have a good time' , 'https://www.vinted.es/brand/adidas-originals-x-have-a-good-time'), +(7432263 , 'adidas Originals x Noah' , 'https://www.vinted.es/brand/adidas-originals-x-noah'), +(7432258 , 'adidas Originals x Anna Isoniemi' , 'https://www.vinted.es/brand/adidas-originals-x-anna-isoniemi'), +(54661 , 'Apple' , 'https://www.vinted.es/brand/apple'), +(15613 , 'appel''s' , 'https://www.vinted.es/brand/appels'), +(41355 , 'Apple Bottoms' , 'https://www.vinted.es/brand/apple-bottoms'), +(163180 , 'Apple of Eden' , 'https://www.vinted.es/brand/apple-of-eden'), +(298255 , 'AppleCheeks' , 'https://www.vinted.es/brand/applecheeks'), +(239646 , 'Appletree Boutique' , 'https://www.vinted.es/brand/appletree-boutique'), +(294161 , 'Appletree' , 'https://www.vinted.es/brand/appletree'), +(134100 , 'Appleseed''s' , 'https://www.vinted.es/brand/appleseeds'), +(3135387 , 'Apples & Figs' , 'https://www.vinted.es/brand/apples-figs'), +(294355 , 'Applause' , 'https://www.vinted.es/brand/applause'), +(195 , 'André' , 'https://www.vinted.es/brand/andre'), +(38427 , 'Andres Machado' , 'https://www.vinted.es/brand/andres-machado'), +(1011512 , 'Andrélon' , 'https://www.vinted.es/brand/andrelon'), +(330609 , 'Andréfia' , 'https://www.vinted.es/brand/andrefia'), +(324780 , 'André Badi' , 'https://www.vinted.es/brand/andre-badi'), +(185734 , 'Andrè Maurice' , 'https://www.vinted.es/brand/andre-maurice'), +(1981077 , 'Andre Denis' , 'https://www.vinted.es/brand/andre-denis'), +(46293 , 'AllSaints' , 'https://www.vinted.es/brand/allsaints'), +(264946 , 'Alana' , 'https://www.vinted.es/brand/alana'), +(366147 , 'Alanred' , 'https://www.vinted.es/brand/alanred'), +(25891 , 'Alain Afflelou' , 'https://www.vinted.es/brand/alain-afflelou'), +(69184 , 'Alaïa' , 'https://www.vinted.es/brand/alaia'), +(865956 , 'a la vaquera' , 'https://www.vinted.es/brand/a-la-vaquera'), +(145952 , 'Alan Paine' , 'https://www.vinted.es/brand/alan-paine'), +(504213 , 'ALALA' , 'https://www.vinted.es/brand/alala'), +(147898 , 'Alaniz' , 'https://www.vinted.es/brand/alaniz'), +(394217 , 'Alan' , 'https://www.vinted.es/brand/alan'), +(1865545 , 'À La Garçonne' , 'https://www.vinted.es/brand/a-la-garconne'), +(8323 , 'Anna Field' , 'https://www.vinted.es/brand/anna-field'), +(5784372 , 'Anna Field mama' , 'https://www.vinted.es/brand/anna-field-mama'), +(1060260 , 'Anna Field Curvy' , 'https://www.vinted.es/brand/anna-field-curvy'), +(5848651 , 'Anna Field Petite' , 'https://www.vinted.es/brand/anna-field-petite'), +(6160728 , 'Anna Field Tall' , 'https://www.vinted.es/brand/anna-field-tall'), +(588274 , 'Anne Field' , 'https://www.vinted.es/brand/anne-field'), +(13 , 'Accessorize' , 'https://www.vinted.es/brand/accessorize'), +(9015 , 'Accessories' , 'https://www.vinted.es/brand/accessories'), +(572422 , 'Argento' , 'https://www.vinted.es/brand/argento'), +(645289 , 'Argento Vivo' , 'https://www.vinted.es/brand/argento-vivo'), +(27151 , 'Argent' , 'https://www.vinted.es/brand/argent'), +(274540 , 'Argenta' , 'https://www.vinted.es/brand/argenta'), +(312697 , 'Argentina' , 'https://www.vinted.es/brand/argentina'), +(2205059 , 'Argentviu' , 'https://www.vinted.es/brand/argentviu'), +(27861 , 'AX Paris' , 'https://www.vinted.es/brand/ax-paris'), +(344 , 'America Today' , 'https://www.vinted.es/brand/america-today'), +(647 , 'ALDO' , 'https://www.vinted.es/brand/aldo'), +(38613 , 'Aldo Martins' , 'https://www.vinted.es/brand/aldo-martins'), +(205202 , 'Aldo Castagna' , 'https://www.vinted.es/brand/aldo-castagna'), +(1537878 , 'Aldo Maggioni' , 'https://www.vinted.es/brand/aldo-maggioni'), +(6767199 , 'Disney x ALDO' , 'https://www.vinted.es/brand/disney-x-aldo'), +(3198020 , 'Aldona' , 'https://www.vinted.es/brand/aldona'), +(39827 , 'Alto' , 'https://www.vinted.es/brand/alto'), +(325859 , 'Aldi' , 'https://www.vinted.es/brand/aldi'), +(356467 , 'algo bonito' , 'https://www.vinted.es/brand/algo-bonito'), +(110434 , 'Air Force' , 'https://www.vinted.es/brand/air-force'), +(7585332 , 'Air Force Gear' , 'https://www.vinted.es/brand/air-force-gear'), +(11 , 'American Vintage' , 'https://www.vinted.es/brand/american-vintage'), +(184 , 'American Eagle' , 'https://www.vinted.es/brand/american-eagle'), +(2963284 , 'George at ASDA' , 'https://www.vinted.es/brand/george-at-asda'), +(489354 , 'Asda' , 'https://www.vinted.es/brand/asda'), +(411354 , 'Asalvo' , 'https://www.vinted.es/brand/asalvo'), +(958348 , 'Aspact' , 'https://www.vinted.es/brand/aspact'), +(266346 , 'ASA' , 'https://www.vinted.es/brand/asa'), +(1204380 , 'Asian' , 'https://www.vinted.es/brand/asian'), +(766612 , 'ASRA' , 'https://www.vinted.es/brand/asra'), +(668227 , 'Ascari' , 'https://www.vinted.es/brand/ascari'), +(922399 , 'Ask & Embla' , 'https://www.vinted.es/brand/ask-embla'), +(3261 , 'Adolfo Dominguez' , 'https://www.vinted.es/brand/adolfo-dominguez'), +(6487 , 'alive' , 'https://www.vinted.es/brand/alive'), +(1028421 , 'Alife & Kickin' , 'https://www.vinted.es/brand/alife-kickin'), +(100992 , 'Alviero Martini' , 'https://www.vinted.es/brand/alviero-martini'), +(518290 , 'Alviero Martini 1a Classe' , 'https://www.vinted.es/brand/alviero-martini-1a-classe'), +(157384 , 'Alinea' , 'https://www.vinted.es/brand/alinea'), +(11503 , 'Alice' , 'https://www.vinted.es/brand/alice'), +(1926049 , 'Alviero Rodriguez' , 'https://www.vinted.es/brand/alviero-rodriguez'), +(524582 , 'Alice Pi' , 'https://www.vinted.es/brand/alice-pi'), +(181632 , 'Alice à Paris' , 'https://www.vinted.es/brand/alice-a-paris'), +(288817 , 'Alves' , 'https://www.vinted.es/brand/alves'), +(230 , 'Airness' , 'https://www.vinted.es/brand/airness'), +(1493370 , 'Abendkleid' , 'https://www.vinted.es/brand/abendkleid'), +(61652 , 'Action' , 'https://www.vinted.es/brand/action'), +(290681 , 'Action man' , 'https://www.vinted.es/brand/action-man'), +(446109 , 'Action Wear' , 'https://www.vinted.es/brand/action-wear'), +(1390838 , 'ACTION BOY' , 'https://www.vinted.es/brand/action-boy'), +(57002 , 'Angelo Litrico' , 'https://www.vinted.es/brand/angelo-litrico'), +(7729 , 'Apricot' , 'https://www.vinted.es/brand/apricot'), +(381261 , 'Aprico' , 'https://www.vinted.es/brand/aprico'), +(1487995 , 'Apricoat' , 'https://www.vinted.es/brand/apricoat'), +(94832 , 'Antony Morato' , 'https://www.vinted.es/brand/antony-morato'), +(134940 , 'Alternative' , 'https://www.vinted.es/brand/alternative'), +(199476 , 'Alternative Earth' , 'https://www.vinted.es/brand/alternative-earth'), +(3220733 , 'Alternative Apparel' , 'https://www.vinted.es/brand/alternative-apparel'), +(22491 , 'Artigli' , 'https://www.vinted.es/brand/artigli'), +(988602 , 'Artigianale' , 'https://www.vinted.es/brand/artigianale'), +(171176 , 'Artigiano' , 'https://www.vinted.es/brand/artigiano'), +(2719 , 'Auchan' , 'https://www.vinted.es/brand/auchan'), +(1483 , 'Arena' , 'https://www.vinted.es/brand/arena'), +(269830 , 'Arsenal' , 'https://www.vinted.es/brand/arsenal'), +(587002 , 'AREA' , 'https://www.vinted.es/brand/area'), +(875820 , 'Area Zero' , 'https://www.vinted.es/brand/area-zero'), +(388750 , 'Artena' , 'https://www.vinted.es/brand/artena'), +(692084 , 'Arnaldo Toscani' , 'https://www.vinted.es/brand/arnaldo-toscani'), +(2013148 , 'Aranaz' , 'https://www.vinted.es/brand/aranaz'), +(251688 , 'Avento' , 'https://www.vinted.es/brand/avento'), +(325247 , 'Aventi' , 'https://www.vinted.es/brand/aventi'), +(312379 , 'Avenue' , 'https://www.vinted.es/brand/avenue'), +(2661 , 'Aigle' , 'https://www.vinted.es/brand/aigle'), +(142470 , 'Aigner' , 'https://www.vinted.es/brand/aigner'), +(2224345 , 'Aigner Munich' , 'https://www.vinted.es/brand/aigner-munich'), +(28689 , 'Autograph' , 'https://www.vinted.es/brand/autograph'), +(327931 , 'Aldinova' , 'https://www.vinted.es/brand/aldinova'), +(12741 , 'Alain Manoukian' , 'https://www.vinted.es/brand/alain-manoukian'), +(34867 , 'Alpinestars' , 'https://www.vinted.es/brand/alpinestars'), +(19919 , 'À l''Aise Breizh' , 'https://www.vinted.es/brand/a-laise-breizh'), +(201292 , 'Alix' , 'https://www.vinted.es/brand/alix'), +(1295 , 'Artengo' , 'https://www.vinted.es/brand/artengo'), +(394358 , 'Artégo' , 'https://www.vinted.es/brand/artego'), +(52193 , 'Alexander McQueen' , 'https://www.vinted.es/brand/alexander-mcqueen'), +(1962942 , 'Puma x Alexander McQueen' , 'https://www.vinted.es/brand/puma-x-alexander-mcqueen'), +(418047 , 'Alles' , 'https://www.vinted.es/brand/alles'), +(4514223 , 'Alles Wunder' , 'https://www.vinted.es/brand/alles-wunder'), +(11445 , 'Converse' , 'https://www.vinted.es/brand/converse'), +(172690 , 'Alesya' , 'https://www.vinted.es/brand/alesya'), +(29887 , 'Aller Simplement' , 'https://www.vinted.es/brand/aller-simplement'), +(153994 , 'AllStar' , 'https://www.vinted.es/brand/allstar'), +(12461 , 'Allyson' , 'https://www.vinted.es/brand/allyson'), +(237844 , 'Allegri' , 'https://www.vinted.es/brand/allegri'), +(478543 , 'Alessandro Dell''Acqua' , 'https://www.vinted.es/brand/alessandro-dellacqua'), +(96568 , 'Ann Summers' , 'https://www.vinted.es/brand/ann-summers'), +(1307 , 'ASH' , 'https://www.vinted.es/brand/ash'), +(272436 , 'Ashes to Dust' , 'https://www.vinted.es/brand/ashes-to-dust'), +(103530 , 'Ashley Brooke' , 'https://www.vinted.es/brand/ashley-brooke'), +(52775 , 'Ashwi' , 'https://www.vinted.es/brand/ashwi'), +(81054 , 'Ashley' , 'https://www.vinted.es/brand/ashley'), +(358326 , 'ASHBY' , 'https://www.vinted.es/brand/ashby'), +(375756 , 'Ashworth' , 'https://www.vinted.es/brand/ashworth'), +(352045 , 'Ashwood' , 'https://www.vinted.es/brand/ashwood'), +(309446 , 'Ashley Stewart' , 'https://www.vinted.es/brand/ashley-stewart'), +(2516646 , 'Ashwell' , 'https://www.vinted.es/brand/rachel-ashwell'), +(219 , 'American Apparel' , 'https://www.vinted.es/brand/american-apparel'), +(1519 , 'Aéropostale' , 'https://www.vinted.es/brand/aeropostale'), +(392094 , 'ARKET' , 'https://www.vinted.es/brand/arket'), +(11449 , 'Ark & Co.' , 'https://www.vinted.es/brand/ark-co'), +(204522 , 'Arkitect' , 'https://www.vinted.es/brand/arkitect'), +(170784 , 'Arnette' , 'https://www.vinted.es/brand/arnette'), +(537719 , 'Arnetta' , 'https://www.vinted.es/brand/arnetta'), +(365049 , 'Arktis' , 'https://www.vinted.es/brand/arktis'), +(1194580 , 'Areto' , 'https://www.vinted.es/brand/areto'), +(7489657 , 'Fred Perry x Arktis' , 'https://www.vinted.es/brand/fred-perry-x-arktis'), +(780485 , 'Acciaio' , 'https://www.vinted.es/brand/acciaio'), +(362269 , 'Animal Crossing' , 'https://www.vinted.es/brand/animal-crossing'), +(3473 , 'Animal' , 'https://www.vinted.es/brand/animal'), +(12427 , 'Animale' , 'https://www.vinted.es/brand/animale'), +(293773 , 'The Animals Observatory' , 'https://www.vinted.es/brand/the-animals-observatory'), +(379875 , 'Animalis' , 'https://www.vinted.es/brand/animalis'), +(351798 , 'Animal planet' , 'https://www.vinted.es/brand/animal-planet'), +(3368781 , 'Animal House' , 'https://www.vinted.es/brand/animal-house'), +(7380495 , 'Reebok Classic x The Animals Observatory' , 'https://www.vinted.es/brand/reebok-classic-x-the-animals-observatory'), +(7211500 , 'Reebok x The Animals Observatory' , 'https://www.vinted.es/brand/reebok-x-the-animal-observatory'), +(6565193 , 'Puma X Animal Crossing' , 'https://www.vinted.es/brand/puma-x-animal-crossing'), +(91854 , 'Amichi' , 'https://www.vinted.es/brand/amichi'), +(279935 , 'Amici' , 'https://www.vinted.es/brand/amici'), +(3728069 , 'Amicci' , 'https://www.vinted.es/brand/amicci'), +(371542 , 'Amy Childs' , 'https://www.vinted.es/brand/amy-childs'), +(4514173 , 'a&m childrens' , 'https://www.vinted.es/brand/am-childrens'), +(2793241 , 'Amy Childs Collection' , 'https://www.vinted.es/brand/amy-childs-collection'), +(126 , 'an''ge' , 'https://www.vinted.es/brand/ange'), +(132314 , 'Angela Thompson' , 'https://www.vinted.es/brand/angela-thompson'), +(7005 , 'Angel' , 'https://www.vinted.es/brand/angel'), +(43857 , 'Angels' , 'https://www.vinted.es/brand/angels'), +(291789 , 'Angelitos' , 'https://www.vinted.es/brand/angelitos'), +(146642 , 'Angela Davis' , 'https://www.vinted.es/brand/angela-davis'), +(188302 , 'Angel Alarcon' , 'https://www.vinted.es/brand/angel-alarcon'), +(3974358 , 'Angel Devil Italy' , 'https://www.vinted.es/brand/angel-devil-italy'), +(16941 , 'Angels Never Die' , 'https://www.vinted.es/brand/angels-never-die'), +(1093 , 'Autre Ton' , 'https://www.vinted.es/brand/autre-ton'), +(60578 , 'Accessoires' , 'https://www.vinted.es/brand/accessoires'), +(7613 , 'Accessoire Diffusion' , 'https://www.vinted.es/brand/accessoire-diffusion'), +(17403 , 'Apart' , 'https://www.vinted.es/brand/apart'), +(16667 , 'A Part Ca' , 'https://www.vinted.es/brand/a-part-ca'), +(425588 , 'Apart Impressions' , 'https://www.vinted.es/brand/apart-impressions'), +(30921 , 'Appart' , 'https://www.vinted.es/brand/appart'), +(88700 , 'Apara' , 'https://www.vinted.es/brand/apara'), +(136484 , 'Appartamento 50' , 'https://www.vinted.es/brand/appartamento-50'), +(421447 , 'Aparanjan' , 'https://www.vinted.es/brand/aparanjan'), +(298350 , 'Alvina' , 'https://www.vinted.es/brand/alvina'), +(317060 , 'Alvi' , 'https://www.vinted.es/brand/alvi'), +(675833 , 'Alvin Valley' , 'https://www.vinted.es/brand/alvin-valley'), +(483311 , 'Alvaro Moreno' , 'https://www.vinted.es/brand/alvaro-moreno'), +(745466 , 'Aesthetic' , 'https://www.vinted.es/brand/aesthetic'), +(22365 , 'ardene' , 'https://www.vinted.es/brand/ardene'), +(180756 , 'Arsene et les pipelettes' , 'https://www.vinted.es/brand/arsene-et-les-pipelettes'), +(115228 , 'Arden B.' , 'https://www.vinted.es/brand/arden-b'), +(628507 , 'Arlene' , 'https://www.vinted.es/brand/arlene'), +(27279 , 'Afibel' , 'https://www.vinted.es/brand/afibel'), +(32 , 'Agatha' , 'https://www.vinted.es/brand/agatha'), +(4993 , 'Agatha Ruiz de la Prada' , 'https://www.vinted.es/brand/agatha-ruiz-de-la-prada'), +(14215 , 'Agatha velmont' , 'https://www.vinted.es/brand/agatha-velmont'), +(333814 , 'AGATHA Paris' , 'https://www.vinted.es/brand/agatha-paris'), +(1503 , 'Agathe Velmont' , 'https://www.vinted.es/brand/agathe-velmont'), +(9841 , 'Agathe' , 'https://www.vinted.es/brand/agathe'), +(1078513 , 'A GATAS' , 'https://www.vinted.es/brand/a-gatas'), +(3523464 , 'Agata Re' , 'https://www.vinted.es/brand/agata-re'), +(7363491 , 'Agata.See' , 'https://www.vinted.es/brand/agatasee'), +(65606 , 'Alphabet' , 'https://www.vinted.es/brand/alphabet'), +(210870 , 'Alphabet Creation' , 'https://www.vinted.es/brand/alphabet-creation'), +(393136 , 'Alphalete' , 'https://www.vinted.es/brand/alphalete'), +(180798 , 'Acne Studios' , 'https://www.vinted.es/brand/acne-studios'), +(529526 , 'ABOUT YOU' , 'https://www.vinted.es/brand/about-you'), +(6028982 , 'Kendall Jenner x About You' , 'https://www.vinted.es/brand/kendall-jenner-x-about-you'), +(3476588 , 'ABOUT YOU Curvy' , 'https://www.vinted.es/brand/about-you-curvy'), +(2961921 , 'ABOUT YOU Limited' , 'https://www.vinted.es/brand/about-you-limited'), +(3918928 , 'ABOUT YOU x GNTM' , 'https://www.vinted.es/brand/about-you-x-gntm'), +(6793513 , 'ABOUT YOU x Riccardo Simonetti' , 'https://www.vinted.es/brand/about-you-x-riccardo-simonetti'), +(7415 , 'Antonelle' , 'https://www.vinted.es/brand/antonelle'), +(153416 , 'Antonello Serio' , 'https://www.vinted.es/brand/antonello-serio'), +(312998 , 'Antonelli' , 'https://www.vinted.es/brand/antonelli'), +(48197 , 'Antonella' , 'https://www.vinted.es/brand/antonella'), +(3802443 , 'Antonella Rizza' , 'https://www.vinted.es/brand/antonella-rizza'), +(829162 , 'Alpinestars by Denise Focil' , 'https://www.vinted.es/brand/alpinestars-by-denise-focil'), +(198724 , 'Atlas for Men' , 'https://www.vinted.es/brand/atlas-for-men'), +(36901 , 'Amélie & Amélie' , 'https://www.vinted.es/brand/amelie-amelie'), +(15309 , 'Anne Weyburn' , 'https://www.vinted.es/brand/anne-weyburn'), +(471832 , 'Anne Wayburn' , 'https://www.vinted.es/brand/anne-wayburn'), +(6479 , 'Arizona' , 'https://www.vinted.es/brand/arizona'), +(5827448 , 'Arizona Vintage' , 'https://www.vinted.es/brand/arizona-vintage'), +(1419872 , 'Arizona Love' , 'https://www.vinted.es/brand/arizona-love'), +(31623 , 'angry birds' , 'https://www.vinted.es/brand/angry-birds'), +(4691320 , 'A Bathing Ape (BAPE)' , 'https://www.vinted.es/brand/a-bathing-ape-bape'), +(60712 , 'Alpha Industries' , 'https://www.vinted.es/brand/alpha-industries'), +(693372 , 'Artesano' , 'https://www.vinted.es/brand/artesano'), +(3647 , 'Art' , 'https://www.vinted.es/brand/art'), +(53239 , 'Artisan' , 'https://www.vinted.es/brand/artisan'), +(392 , 'Arthur & Aston' , 'https://www.vinted.es/brand/arthur-aston'), +(379788 , 'Artesania' , 'https://www.vinted.es/brand/artesania'), +(50411 , 'Arthur' , 'https://www.vinted.es/brand/arthur'), +(597647 , 'Articles' , 'https://www.vinted.es/brand/articles'), +(361 , 'Active Wear' , 'https://www.vinted.es/brand/active-wear'), +(514026 , 'AMBIKA' , 'https://www.vinted.es/brand/ambika'), +(105956 , 'Ambiance' , 'https://www.vinted.es/brand/ambiance'), +(173040 , 'amika' , 'https://www.vinted.es/brand/amika'), +(113274 , 'Ambiance Apparel' , 'https://www.vinted.es/brand/ambiance-apparel'), +(280675 , 'Anti Blue' , 'https://www.vinted.es/brand/anti-blue'), +(3885 , 'Atlas' , 'https://www.vinted.es/brand/atlas'), +(85446 , 'Atlas for Women' , 'https://www.vinted.es/brand/atlas-for-women'), +(476129 , 'Atlantic Stars' , 'https://www.vinted.es/brand/atlantic-stars'), +(73036 , 'Atlantis' , 'https://www.vinted.es/brand/atlantis'), +(55009 , 'Atlanta' , 'https://www.vinted.es/brand/atlanta'), +(135608 , 'Atlantic' , 'https://www.vinted.es/brand/atlantic'), +(490667 , 'Atlanta Mocassin' , 'https://www.vinted.es/brand/atlanta-mocassin'), +(686804 , 'Atlantic Bay' , 'https://www.vinted.es/brand/atlantic-bay'), +(633030 , 'ATLANT' , 'https://www.vinted.es/brand/atlant'), +(289720 , 'Asmodee' , 'https://www.vinted.es/brand/asmodee'), +(677 , 'Agnes b' , 'https://www.vinted.es/brand/agnes-b'), +(2081 , 'Agnès Flo' , 'https://www.vinted.es/brand/agnes-flo'), +(155346 , 'Agnes' , 'https://www.vinted.es/brand/agnes'), +(1493300 , 'agnis b.' , 'https://www.vinted.es/brand/agnis-b'), +(934690 , 'Agnes & Dora' , 'https://www.vinted.es/brand/agnes-dora'), +(4895978 , 'CAPSULE by Agnė Gilytė' , 'https://www.vinted.es/brand/capsule-by-agne-gilyte'), +(3113643 , 'Agnė Deveikytė' , 'https://www.vinted.es/brand/agne-deveikyte'), +(292031 , 'Alpine PRO' , 'https://www.vinted.es/brand/alpine-pro'), +(1427 , 'Armor-Lux' , 'https://www.vinted.es/brand/armor-lux'), +(73426 , 'Anthropologie' , 'https://www.vinted.es/brand/anthropologie'), +(42335 , 'Antropologie' , 'https://www.vinted.es/brand/antropologie'), +(171298 , 'Akè' , 'https://www.vinted.es/brand/ake'), +(251 , 'A.P.C.' , 'https://www.vinted.es/brand/apc'), +(1912379 , 'A.P.C. X Carhartt' , 'https://www.vinted.es/brand/apc-x-carhartt'), +(2391194 , 'A.P.C. x Kanye West' , 'https://www.vinted.es/brand/apc-x-kanye-west'), +(6096744 , 'A.P.C. x Nike' , 'https://www.vinted.es/brand/apc-x-nike'), +(6218450 , 'A.P.C. x Sacai' , 'https://www.vinted.es/brand/apc-x-sacai'), +(229278 , 'A.M.C.' , 'https://www.vinted.es/brand/amc'), +(49871 , 'A.L.C.' , 'https://www.vinted.es/brand/alc'), +(506162 , 'anello' , 'https://www.vinted.es/brand/anello'), +(494914 , 'Active Touch' , 'https://www.vinted.es/brand/active-touch'), +(261814 , 'Active' , 'https://www.vinted.es/brand/active'), +(957625 , 'Active Fashion' , 'https://www.vinted.es/brand/active-fashion'), +(281175 , 'Active USA' , 'https://www.vinted.es/brand/active-usa'), +(828233 , 'Active Sports' , 'https://www.vinted.es/brand/active-sports'), +(290039 , 'Active Basic' , 'https://www.vinted.es/brand/active-basic'), +(367382 , 'Active Sport' , 'https://www.vinted.es/brand/active-sport'), +(265216 , 'Activision' , 'https://www.vinted.es/brand/activision'), +(233234 , 'Activ' , 'https://www.vinted.es/brand/activ'), +(49573 , 'ara' , 'https://www.vinted.es/brand/ara'), +(84776 , 'Arabesque' , 'https://www.vinted.es/brand/arabesque'), +(57474 , 'ARAYAL' , 'https://www.vinted.es/brand/arayal'), +(2139580 , 'Arancia Meccanica' , 'https://www.vinted.es/brand/arancia-meccanica'), +(345599 , 'Arai' , 'https://www.vinted.es/brand/arai'), +(214396 , 'aramis' , 'https://www.vinted.es/brand/aramis'), +(598486 , 'Arabesco' , 'https://www.vinted.es/brand/arabesco'), +(413186 , 'arabella' , 'https://www.vinted.es/brand/arabella'), +(308891 , 'Arabian Oud' , 'https://www.vinted.es/brand/arabian-oud'), +(311931 , 'Arabella & Addison' , 'https://www.vinted.es/brand/arabella-addison'), +(366012 , 'Avec' , 'https://www.vinted.es/brand/avec'), +(559746 , 'Avec Modération' , 'https://www.vinted.es/brand/avec-moderation'), +(834670 , 'Avec Les Filles' , 'https://www.vinted.es/brand/avec-les-filles'), +(584410 , 'Avenue George V Paris' , 'https://www.vinted.es/brand/avenue-george-v-paris'), +(24431 , 'Almatrichi' , 'https://www.vinted.es/brand/almatrichi'), +(277665 , 'Armedangels' , 'https://www.vinted.es/brand/armedangels'), +(287436 , 'Altaya' , 'https://www.vinted.es/brand/altaya'), +(61222 , 'ALTRAMAREA' , 'https://www.vinted.es/brand/altramarea'), +(4514225 , 'Altana Industries' , 'https://www.vinted.es/brand/altana-industries'), +(1226013 , 'AYBL' , 'https://www.vinted.es/brand/aybl'), +(308799 , 'Ayala Bar' , 'https://www.vinted.es/brand/ayala-bar'), +(2222503 , 'Aya Label' , 'https://www.vinted.es/brand/aya-label'), +(3372298 , 'by Aylin Koenig' , 'https://www.vinted.es/brand/by-aylin-koenig'), +(4734458 , 'Ayllu Apparel' , 'https://www.vinted.es/brand/ayllu-apparel'), +(809 , 'attentif' , 'https://www.vinted.es/brand/attentif'), +(307623 , 'Attentif Paris' , 'https://www.vinted.es/brand/attentif-paris'), +(405688 , 'Attention' , 'https://www.vinted.es/brand/attention'), +(16125 , 'Ann Christine' , 'https://www.vinted.es/brand/ann-christine'), +(99392 , 'Athlitech' , 'https://www.vinted.es/brand/athlitech'), +(41669 , 'Avenue Of The Stars' , 'https://www.vinted.es/brand/avenue-of-the-stars'), +(1737485 , 'Avenue Foch' , 'https://www.vinted.es/brand/avenue-foch'), +(7822419 , 'Avenueart' , 'https://www.vinted.es/brand/avenueart'), +(188208 , 'Aspesi' , 'https://www.vinted.es/brand/aspesi'), +(822549 , 'ASP Signature' , 'https://www.vinted.es/brand/asp-signature'), +(744 , 'Antik Batik' , 'https://www.vinted.es/brand/antik-batik'), +(96370 , 'Albano' , 'https://www.vinted.es/brand/albano'), +(136516 , 'Alba Conde' , 'https://www.vinted.es/brand/alba-conde'), +(43173 , 'ALBA MODA' , 'https://www.vinted.es/brand/alba-moda'), +(226572 , 'Alba Fornari' , 'https://www.vinted.es/brand/alba-fornari'), +(1141418 , 'Alba Original' , 'https://www.vinted.es/brand/alba-original'), +(198010 , 'Atelier' , 'https://www.vinted.es/brand/atelier'), +(1446920 , 'Atelier Fixdesign' , 'https://www.vinted.es/brand/atelier-fixdesign'), +(130472 , 'Atelier Création' , 'https://www.vinted.es/brand/atelier-creation'), +(349252 , 'ATELIERS Mégis' , 'https://www.vinted.es/brand/ateliers-megis'), +(421608 , 'Atelier Jad' , 'https://www.vinted.es/brand/atelier-jad'), +(40899 , 'Atelier Voisin' , 'https://www.vinted.es/brand/atelier-voisin'), +(367276 , 'Atelier Evène' , 'https://www.vinted.es/brand/atelier-evene'), +(264198 , 'Atelier R' , 'https://www.vinted.es/brand/atelier-r'), +(28717 , 'Atelier Mercadal' , 'https://www.vinted.es/brand/atelier-mercadal'), +(370794 , 'Atelier GARDEUR' , 'https://www.vinted.es/brand/atelier-gardeur'), +(32075 , 'Affinités' , 'https://www.vinted.es/brand/affinites'), +(2377 , 'Akoz' , 'https://www.vinted.es/brand/akoz'), +(178490 , 'Akoz de toi' , 'https://www.vinted.es/brand/akoz-de-toi'), +(71016 , 'Akoustik' , 'https://www.vinted.es/brand/akoustik'), +(274856 , 'AKO' , 'https://www.vinted.es/brand/ako'), +(256344 , 'Akomplice' , 'https://www.vinted.es/brand/akomplice'), +(404409 , 'Akaz' , 'https://www.vinted.es/brand/akaz'), +(6088348 , 'Akoni' , 'https://www.vinted.es/brand/akoni'), +(179224 , 'adopt’' , 'https://www.vinted.es/brand/adopt'), +(49947 , 'AJC' , 'https://www.vinted.es/brand/ajc'), +(725037 , 'AFC Ajax' , 'https://www.vinted.es/brand/ajax'), +(287625 , 'Ajena' , 'https://www.vinted.es/brand/ajena'), +(214192 , 'A&J' , 'https://www.vinted.es/brand/aj'), +(619622 , 'A.J. Malloy' , 'https://www.vinted.es/brand/aj-malloy'), +(320539 , 'Ajvani' , 'https://www.vinted.es/brand/ajvani'), +(1460356 , 'Project AJ117' , 'https://www.vinted.es/brand/project-aj117'), +(242002 , 'AJMAL' , 'https://www.vinted.es/brand/ajmal'), +(838688 , 'AJE' , 'https://www.vinted.es/brand/aje'), +(475801 , 'AJS' , 'https://www.vinted.es/brand/ajs'), +(85500 , 'Ana Sousa' , 'https://www.vinted.es/brand/ana-sousa'), +(144126 , 'Australian' , 'https://www.vinted.es/brand/australian'), +(773938 , 'Australian Gold' , 'https://www.vinted.es/brand/australian-gold'), +(1943482 , 'Australian Bodycare' , 'https://www.vinted.es/brand/australian-bodycare'), +(63476 , 'Australia Luxe' , 'https://www.vinted.es/brand/australia-luxe'), +(342138 , 'Antea' , 'https://www.vinted.es/brand/antea'), +(41325 , 'Anne Ar Breiz' , 'https://www.vinted.es/brand/anne-ar-breiz'), +(299200 , 'Anteprima' , 'https://www.vinted.es/brand/anteprima'), +(225072 , 'ANTARCTICA' , 'https://www.vinted.es/brand/antarctica'), +(154892 , 'Antartica' , 'https://www.vinted.es/brand/antartica'), +(326273 , 'Antarès' , 'https://www.vinted.es/brand/antares'), +(701010 , 'A New Day' , 'https://www.vinted.es/brand/a-new-day'), +(369212 , 'Anta' , 'https://www.vinted.es/brand/anta'), +(342825 , 'Anne Ar Breizh' , 'https://www.vinted.es/brand/anne-ar-breizh'), +(577200 , 'Andares' , 'https://www.vinted.es/brand/andares'), +(319730 , 'Arc''teryx' , 'https://www.vinted.es/brand/arcteryx'), +(54953 , 'Alba' , 'https://www.vinted.es/brand/alba'), +(591271 , 'AlbaBaby' , 'https://www.vinted.es/brand/albababy'), +(1297362 , 'Alba Fashion' , 'https://www.vinted.es/brand/alba-fashion'), +(381560 , 'Albatros' , 'https://www.vinted.es/brand/albatros'), +(565975 , 'AlbaKid' , 'https://www.vinted.es/brand/albakid'), +(449670 , 'Albam' , 'https://www.vinted.es/brand/albam'), +(17231 , 'Ann Taylor' , 'https://www.vinted.es/brand/ann-taylor'), +(212344 , 'Ann Taylor LOFT' , 'https://www.vinted.es/brand/ann-taylor-loft'), +(307257 , 'Angelcare' , 'https://www.vinted.es/brand/angelcare'), +(20577 , 'Anna Karel' , 'https://www.vinted.es/brand/anna-karel'), +(326790 , 'AnnaRita N' , 'https://www.vinted.es/brand/annarita-n'), +(50223 , 'ANNA' , 'https://www.vinted.es/brand/anna'), +(76232 , 'Anna Scott' , 'https://www.vinted.es/brand/anna-scott'), +(237354 , 'Anna Rachele' , 'https://www.vinted.es/brand/anna-rachele'), +(310088 , 'Anna Mora' , 'https://www.vinted.es/brand/anna-mora'), +(406987 , 'Anna F' , 'https://www.vinted.es/brand/anna-f'), +(843587 , 'Anna Van Toor' , 'https://www.vinted.es/brand/anna-van-toor'), +(51535 , 'Annalisa' , 'https://www.vinted.es/brand/annalisa'), +(41275 , 'Asterix' , 'https://www.vinted.es/brand/asterix'), +(48655 , 'Aster' , 'https://www.vinted.es/brand/aster'), +(459689 , 'Astrid Black Label' , 'https://www.vinted.es/brand/astrid-black-label'), +(425222 , 'Astrolabio' , 'https://www.vinted.es/brand/astrolabio'), +(301298 , 'Astore' , 'https://www.vinted.es/brand/astore'), +(194030 , 'Astra' , 'https://www.vinted.es/brand/astra'), +(103640 , 'Astor' , 'https://www.vinted.es/brand/astor'), +(266079 , 'Astro' , 'https://www.vinted.es/brand/astro'), +(302217 , 'Astrid' , 'https://www.vinted.es/brand/astrid'), +(583764 , 'Astroworld' , 'https://www.vinted.es/brand/astroworld'), +(4786542 , 'Anna Karlin' , 'https://www.vinted.es/brand/anna-karlin'), +(389163 , 'Affenzahn' , 'https://www.vinted.es/brand/affenzahn'), +(455559 , 'Angel Schlesser' , 'https://www.vinted.es/brand/angel-schlesser'), +(343957 , 'AngelSounds' , 'https://www.vinted.es/brand/angelsounds'), +(2935105 , 'Angels by Accessorize' , 'https://www.vinted.es/brand/angels-by-accessorize'), +(653058 , 'Angels Never Sin' , 'https://www.vinted.es/brand/angels-never-sin'), +(404060 , 'Artisan Ny' , 'https://www.vinted.es/brand/artisan-ny'), +(809743 , 'Artesana' , 'https://www.vinted.es/brand/artesana'), +(836798 , 'Artesania Granlei' , 'https://www.vinted.es/brand/artesania-granlei'), +(553020 , 'Artesanias Kukuli' , 'https://www.vinted.es/brand/artesanias'), +(101754 , 'Ale-Hop' , 'https://www.vinted.es/brand/ale-hop'), +(790449 , 'Acero' , 'https://www.vinted.es/brand/acero'), +(50017 , 'Acebo''s' , 'https://www.vinted.es/brand/acebos'), +(316834 , 'Acerbis' , 'https://www.vinted.es/brand/acerbis'), +(258390 , 'Acer' , 'https://www.vinted.es/brand/acer'), +(207438 , 'ACROPOLE' , 'https://www.vinted.es/brand/acropole'), +(353057 , 'ACEVOG' , 'https://www.vinted.es/brand/acevog'), +(712647 , 'ACRONYM' , 'https://www.vinted.es/brand/acronym'), +(6547300 , 'Nike x ACRONYM' , 'https://www.vinted.es/brand/nike-x-acronym'), +(215222 , 'Ativo' , 'https://www.vinted.es/brand/ativo'), +(6793 , 'Aubade' , 'https://www.vinted.es/brand/aubade'), +(4401 , 'Azzaro' , 'https://www.vinted.es/brand/azzaro'), +(2057 , 'Axara' , 'https://www.vinted.es/brand/axara'), +(91456 , 'Axel' , 'https://www.vinted.es/brand/axel'), +(41591 , 'Axo' , 'https://www.vinted.es/brand/axo'), +(171568 , 'Axiome' , 'https://www.vinted.es/brand/axiome'), +(17977 , 'AX' , 'https://www.vinted.es/brand/ax'), +(67198 , 'Axe' , 'https://www.vinted.es/brand/axe'), +(297194 , 'Axel Arigato' , 'https://www.vinted.es/brand/axel-arigato'), +(146528 , 'Axa' , 'https://www.vinted.es/brand/axa'), +(207964 , 'Axel News' , 'https://www.vinted.es/brand/axel-news'), +(28327 , 'Alexander Wang' , 'https://www.vinted.es/brand/alexander-wang'), +(386459 , 'Aletta' , 'https://www.vinted.es/brand/aletta'), +(305175 , 'Alexandra' , 'https://www.vinted.es/brand/alexandra'), +(42017 , 'Alexo' , 'https://www.vinted.es/brand/alexo'), +(39125 , 'Alex Max' , 'https://www.vinted.es/brand/alex-max'), +(30019 , 'ALEXANDER' , 'https://www.vinted.es/brand/alexander'), +(18499 , 'Alex Silva' , 'https://www.vinted.es/brand/alex-silva'), +(348028 , 'Antica Sartoria' , 'https://www.vinted.es/brand/antica-sartoria'), +(196448 , 'Amitié' , 'https://www.vinted.es/brand/amitie'), +(345768 , 'amiibo' , 'https://www.vinted.es/brand/amiibo'), +(4615783 , 'AMI' , 'https://www.vinted.es/brand/ami'), +(407726 , 'Amiri' , 'https://www.vinted.es/brand/amiri'), +(7228770 , 'Ami Paris' , 'https://www.vinted.es/brand/ami-paris'), +(288419 , 'Amigo' , 'https://www.vinted.es/brand/amigo'), +(290969 , 'Aubert Concept' , 'https://www.vinted.es/brand/aubert-concept'), +(168634 , 'Army' , 'https://www.vinted.es/brand/army'), +(349786 , 'ARMY OF ME' , 'https://www.vinted.es/brand/army-of-me'), +(378288 , 'Arcopal' , 'https://www.vinted.es/brand/arcopal'), +(290377 , 'Auzou' , 'https://www.vinted.es/brand/auzou'), +(323261 , 'Auzou éveil' , 'https://www.vinted.es/brand/auzou-eveil'), +(287273 , 'Autour de bébé' , 'https://www.vinted.es/brand/autour-de-bebe'), +(366381 , 'Au Moulin Rose' , 'https://www.vinted.es/brand/au-moulin-rose'), +(649779 , 'Au Jour Le Jour' , 'https://www.vinted.es/brand/au-jour-le-jour'), +(601533 , 'Age' , 'https://www.vinted.es/brand/age'), +(358656 , 'Ice Age' , 'https://www.vinted.es/brand/ice-age'), +(86728 , 'Agent Provocateur' , 'https://www.vinted.es/brand/agent-provocateur'), +(193772 , 'Agenda' , 'https://www.vinted.es/brand/agenda'), +(3473940 , 'Age of Innocence' , 'https://www.vinted.es/brand/age-of-innocence'), +(278655 , 'A.S.98' , 'https://www.vinted.es/brand/as98'), +(16401 , 'american outfitters' , 'https://www.vinted.es/brand/american-outfitters'), +(164650 , 'Aeronautica Militare' , 'https://www.vinted.es/brand/aeronautica-militare'), +(3430999 , 'ARNE' , 'https://www.vinted.es/brand/arne'), +(168972 , 'Alexander Smith' , 'https://www.vinted.es/brand/alexander-smith'), +(2836528 , 'T by Alexander Wang' , 'https://www.vinted.es/brand/t-by-alexander-wang'), +(7177478 , 'Alexander Wang X H&M' , 'https://www.vinted.es/brand/alexander-wang-x-hm'), +(981689 , 'Alexander Jordan' , 'https://www.vinted.es/brand/alexander-jordan'), +(2160123 , 'Alexander Del Rossa' , 'https://www.vinted.es/brand/alexander-del-rossa'), +(354693 , 'Alta Moda' , 'https://www.vinted.es/brand/alta-moda'), +(83792 , 'Anthology' , 'https://www.vinted.es/brand/anthology'), +(181716 , 'Atos Lombardini' , 'https://www.vinted.es/brand/atos-lombardini'), +(177910 , 'Aston Martin' , 'https://www.vinted.es/brand/aston-martin'), +(448 , 'Amy Gee' , 'https://www.vinted.es/brand/amy-gee'), +(149228 , 'adams' , 'https://www.vinted.es/brand/adams'), +(306236 , 'Adams Kids' , 'https://www.vinted.es/brand/adams-kids'), +(469747 , 'Adams Baby' , 'https://www.vinted.es/brand/adams-baby'), +(4674846 , 'Adam Selman Sport' , 'https://www.vinted.es/brand/adam-selman-sport'), +(73392 , 'Adam & Eve' , 'https://www.vinted.es/brand/adam-eve'), +(299439 , 'Adam' , 'https://www.vinted.es/brand/adam'), +(374255 , 'Admas' , 'https://www.vinted.es/brand/admas'), +(232046 , 'Adamus' , 'https://www.vinted.es/brand/adamus'), +(523472 , 'Adam Lippes' , 'https://www.vinted.es/brand/adam-lippes'), +(1493658 , 'Adami & Martucci' , 'https://www.vinted.es/brand/adami-martucci'), +(184018 , 'Alice+Olivia' , 'https://www.vinted.es/brand/aliceolivia'), +(228572 , 'Alizèa' , 'https://www.vinted.es/brand/alizea'), +(128780 , 'Alice & You' , 'https://www.vinted.es/brand/alice-you'), +(352310 , 'Alice & Charlotte' , 'https://www.vinted.es/brand/alice-charlotte'), +(538601 , 'Alice & Trixie' , 'https://www.vinted.es/brand/alice-trixie'), +(586149 , 'Alice and Olivia' , 'https://www.vinted.es/brand/alice-and-olivia'), +(5251655 , 'A-line Clothing' , 'https://www.vinted.es/brand/a-line-clothing'), +(1350948 , 'Adanola' , 'https://www.vinted.es/brand/adanola'), +(3920163 , 'alesya orlova' , 'https://www.vinted.es/brand/alesya-orlova'), +(178018 , 'alessandro' , 'https://www.vinted.es/brand/alessandro'), +(276981 , 'Alesia' , 'https://www.vinted.es/brand/alesia'), +(1318277 , 'Alisya' , 'https://www.vinted.es/brand/alisya'), +(3646330 , 'Alessandra Ambrósio' , 'https://www.vinted.es/brand/alessandra-ambrosio'), +(2026364 , 'Alessandro Simoni Calzature' , 'https://www.vinted.es/brand/alessandro-simoni-calzature'), +(3811200 , 'Alessandro Legora' , 'https://www.vinted.es/brand/alessandro-legora'), +(366980 , 'Alessa W.' , 'https://www.vinted.es/brand/alessa-w'), +(75560 , 'Andy & Lucy' , 'https://www.vinted.es/brand/andy-lucy'), +(333133 , 'Andy & Lucy (Paris)' , 'https://www.vinted.es/brand/andy-lucy-paris'), +(62322 , 'Arrow' , 'https://www.vinted.es/brand/arrow'), +(179786 , 'Arrogant Cat' , 'https://www.vinted.es/brand/arrogant-cat'), +(277810 , 'Aniye By' , 'https://www.vinted.es/brand/aniye-by'), +(178602 , 'Aubisou' , 'https://www.vinted.es/brand/aubisou'), +(3003001 , 'Aubert' , 'https://www.vinted.es/brand/aubert'), +(244842 , 'aden + anais' , 'https://www.vinted.es/brand/aden-anais'), +(134996 , 'Adrianna Papell' , 'https://www.vinted.es/brand/adrianna-papell'), +(25409 , 'AC/DC' , 'https://www.vinted.es/brand/acdc'), +(201700 , 'ACDC RAG' , 'https://www.vinted.es/brand/acdc-rag'), +(5750552 , 'ASOS Denim' , 'https://www.vinted.es/brand/asos-denim'), +(33931 , 'Airfield' , 'https://www.vinted.es/brand/airfield'), +(223168 , 'Anita' , 'https://www.vinted.es/brand/anita'), +(2512614 , 'Anitag' , 'https://www.vinted.es/brand/anitag'), +(4685545 , 'Anita Ko' , 'https://www.vinted.es/brand/anita-ko'), +(383148 , 'Animaux' , 'https://www.vinted.es/brand/animaux'), +(534910 , 'Anima Gemella' , 'https://www.vinted.es/brand/anima-gemella'), +(23279 , 'Anima bella' , 'https://www.vinted.es/brand/anima-bella'), +(193798 , 'Ariana Grande' , 'https://www.vinted.es/brand/ariana-grande'), +(6207027 , 'H&M x Ariana GRANDE' , 'https://www.vinted.es/brand/hm-x-ariana-grande'), +(165972 , 'Amnesia' , 'https://www.vinted.es/brand/amnesia'), +(968155 , 'altona dock' , 'https://www.vinted.es/brand/altona-dock'), +(230594 , 'Alto Gradimento' , 'https://www.vinted.es/brand/alto-gradimento'), +(251374 , 'Altobelli' , 'https://www.vinted.es/brand/altobelli'), +(40245 , 'Alberta Ferretti' , 'https://www.vinted.es/brand/alberta-ferretti'), +(377653 , 'Aaiko' , 'https://www.vinted.es/brand/aaiko'), +(380785 , 'Aako' , 'https://www.vinted.es/brand/aako'), +(194294 , 'ANANY' , 'https://www.vinted.es/brand/anany'), +(1183701 , 'Ananya' , 'https://www.vinted.es/brand/ananya'), +(93092 , 'Anonyme' , 'https://www.vinted.es/brand/anonyme'), +(291273 , 'Ananas' , 'https://www.vinted.es/brand/ananas'), +(375535 , 'Anaya' , 'https://www.vinted.es/brand/anaya'), +(226672 , 'Ananke' , 'https://www.vinted.es/brand/ananke'), +(114084 , 'Anny' , 'https://www.vinted.es/brand/anny'), +(54271 , 'Ananta' , 'https://www.vinted.es/brand/ananta'), +(137338 , 'Anonymous' , 'https://www.vinted.es/brand/anonymous'), +(304627 , 'Ana Nonza' , 'https://www.vinted.es/brand/ana-nonza'), +(183310 , 'Anine Bing' , 'https://www.vinted.es/brand/anine-bing'), +(175340 , 'Anastasia Beverly Hills' , 'https://www.vinted.es/brand/anastasia-beverly-hills'), +(781 , 'American Retro' , 'https://www.vinted.es/brand/american-retro'), +(18415 , 'Acanthe' , 'https://www.vinted.es/brand/acanthe'), +(1015447 , 'Answear' , 'https://www.vinted.es/brand/answear'), +(427379 , 'Answer' , 'https://www.vinted.es/brand/answer'), +(344213 , 'Amy & Ivy' , 'https://www.vinted.es/brand/amy-ivy'), +(272641 , 'Anne Geddes' , 'https://www.vinted.es/brand/anne-geddes'), +(321 , 'ARMISTICE' , 'https://www.vinted.es/brand/armistice'), +(41801 , 'Anne Klein' , 'https://www.vinted.es/brand/anne-klein'), +(50563 , '& Other Stories' , 'https://www.vinted.es/brand/other-stories'), +(83018 , 'and' , 'https://www.vinted.es/brand/and'), +(345810 , 'Andromede' , 'https://www.vinted.es/brand/andromede'), +(17435 , '&Now' , 'https://www.vinted.es/brand/now'), +(294039 , 'Andanines' , 'https://www.vinted.es/brand/andanines'), +(108964 , 'Andrea Morelli' , 'https://www.vinted.es/brand/andrea-morelli'), +(26681 , 'Andy-Z' , 'https://www.vinted.es/brand/andy-z'), +(626199 , 'Anders' , 'https://www.vinted.es/brand/anders'), +(345562 , 'Admiral' , 'https://www.vinted.es/brand/admiral'), +(26487 , 'ada gatti' , 'https://www.vinted.es/brand/ada-gatti'), +(234708 , 'Aquascutum' , 'https://www.vinted.es/brand/aquascutum'), +(281248 , 'Anonymous Copenhagen' , 'https://www.vinted.es/brand/anonymous-copenhagen'), +(1419579 , 'Anonymous & Famous' , 'https://www.vinted.es/brand/anonymous-famous'), +(2942774 , 'Anonymous Ism' , 'https://www.vinted.es/brand/anonymous-ism'), +(361385 , 'Anekke' , 'https://www.vinted.es/brand/anekke'), +(159658 , 'Alpina' , 'https://www.vinted.es/brand/alpina'), +(250362 , 'Alpine' , 'https://www.vinted.es/brand/alpine'), +(882325 , 'ALPINO' , 'https://www.vinted.es/brand/alpino'), +(211394 , 'Alpini Firenze' , 'https://www.vinted.es/brand/alpini-firenze'), +(501567 , 'Alpin' , 'https://www.vinted.es/brand/alpin'), +(623711 , 'Alcina' , 'https://www.vinted.es/brand/alcina'), +(272938 , 'Associés' , 'https://www.vinted.es/brand/associes'), +(646922 , 'Assouline' , 'https://www.vinted.es/brand/assouline'), +(46437 , 'Alma en Pena' , 'https://www.vinted.es/brand/alma-en-pena'), +(192148 , 'Alpha' , 'https://www.vinted.es/brand/alpha'), +(891799 , 'Alph Adventure' , 'https://www.vinted.es/brand/alph-adventure'), +(405722 , 'Alpha Studio' , 'https://www.vinted.es/brand/alpha-studio'), +(519283 , 'Alpha Sierra' , 'https://www.vinted.es/brand/alpha-sierra'), +(620197 , 'Alphamoment' , 'https://www.vinted.es/brand/alphamoment'), +(471968 , 'AlphaTauri' , 'https://www.vinted.es/brand/alphatauri'), +(236378 , 'Arthur et Félicie' , 'https://www.vinted.es/brand/arthur-et-felicie'), +(289352 , 'Arthur et Lola' , 'https://www.vinted.es/brand/arthur-et-lola'), +(276486 , 'Arthur & Fox' , 'https://www.vinted.es/brand/arthur-fox'), +(39425 , 'Arturo' , 'https://www.vinted.es/brand/arturo'), +(207618 , 'Arthus Bertrand' , 'https://www.vinted.es/brand/arthus-bertrand'), +(492732 , 'Arturo Chiang' , 'https://www.vinted.es/brand/arturo-chiang'), +(753444 , 'Arturo Vicci' , 'https://www.vinted.es/brand/arturo-vicci'), +(4535478 , 'Arthur Court' , 'https://www.vinted.es/brand/arthur-court'), +(1099576 , 'American Club' , 'https://www.vinted.es/brand/american-club'), +(34713 , 'Autre Chose' , 'https://www.vinted.es/brand/autre-chose'), +(484743 , 'Adika' , 'https://www.vinted.es/brand/adika'), +(22105 , 'Allyson Collection' , 'https://www.vinted.es/brand/allyson-collection'), +(361299 , 'Allison Taylor' , 'https://www.vinted.es/brand/allison-taylor'), +(757032 , 'Allison Brittney' , 'https://www.vinted.es/brand/allison-brittney'), +(486692 , 'Allison Daley' , 'https://www.vinted.es/brand/allison-daley'), +(167242 , 'A&F' , 'https://www.vinted.es/brand/af'), +(329057 , 'A&B' , 'https://www.vinted.es/brand/ab'), +(25107 , 'A&G' , 'https://www.vinted.es/brand/ag'), +(30435 , 'A&M' , 'https://www.vinted.es/brand/am'), +(8261802 , 'A+' , 'https://www.vinted.es/brand/a'), +(347668 , 'AT Jeans' , 'https://www.vinted.es/brand/at-jeans'), +(61338 , 'A&A' , 'https://www.vinted.es/brand/aa'), +(357720 , 'A&R' , 'https://www.vinted.es/brand/ar'), +(1603454 , 'A&C Jewellery' , 'https://www.vinted.es/brand/ac-jewellery'), +(3966303 , 'AsYou' , 'https://www.vinted.es/brand/asyou'), +(437307 , 'Asylum' , 'https://www.vinted.es/brand/asylum'), +(140 , 'Bershka' , 'https://www.vinted.es/brand/bershka'), +(7193701 , 'Disney x Bershka' , 'https://www.vinted.es/brand/disney-x-bershka'), +(142 , 'Boohoo' , 'https://www.vinted.es/brand/boohoo'), +(5822018 , 'BoohooMAN' , 'https://www.vinted.es/brand/boohooman'), +(5752372 , 'Disney x Boohoo' , 'https://www.vinted.es/brand/disney-x-boohoo'), +(522901 , 'Bohooman' , 'https://www.vinted.es/brand/bohooman'), +(239706 , 'Booroo' , 'https://www.vinted.es/brand/booroo'), +(1855444 , 'BooPoo' , 'https://www.vinted.es/brand/boopoo'), +(94160 , 'Butik' , 'https://www.vinted.es/brand/butik'), +(410804 , 'Butigo' , 'https://www.vinted.es/brand/butigo'), +(47 , 'Bonobo' , 'https://www.vinted.es/brand/bonobo'), +(94888 , 'BON BON' , 'https://www.vinted.es/brand/bon-bon'), +(2534935 , 'Bohoboco' , 'https://www.vinted.es/brand/bohoboco'), +(175686 , 'Baby Club' , 'https://www.vinted.es/brand/baby-club'), +(210 , 'Bizzbee' , 'https://www.vinted.es/brand/bizzbee'), +(174332 , 'Bout''chou' , 'https://www.vinted.es/brand/boutchou'), +(364 , 'Burberry' , 'https://www.vinted.es/brand/burberry'), +(1755472 , 'Burberrys' , 'https://www.vinted.es/brand/burberrys'), +(4989633 , 'Burberry Brit' , 'https://www.vinted.es/brand/burberry-brit'), +(1866716 , 'Burberry Prorsum' , 'https://www.vinted.es/brand/burberry-prorsum'), +(7299933 , 'Supreme x Burberry' , 'https://www.vinted.es/brand/supreme-x-burberry'), +(7440271 , 'Burberry x SSENSE' , 'https://www.vinted.es/brand/burberry-x-ssense'), +(7440270 , 'Jimmy Choo x Burberry' , 'https://www.vinted.es/brand/jimmy-choo-x-burberry'), +(6925155 , 'Burberry x Vivienne Westwood' , 'https://www.vinted.es/brand/burberry-x-vivienne-westwood'), +(173 , 'Brandy Melville' , 'https://www.vinted.es/brand/brandy-melville'), +(9081 , 'Barbie' , 'https://www.vinted.es/brand/barbie'), +(308060 , 'BARBIERI' , 'https://www.vinted.es/brand/barbieri'), +(6269157 , 'Puma x Barbie' , 'https://www.vinted.es/brand/puma-x-barbie'), +(6847814 , 'Babies ''R'' Us' , 'https://www.vinted.es/brand/babies-r-us'), +(203434 , 'Barberini' , 'https://www.vinted.es/brand/barberini'), +(187580 , 'Babies Wear' , 'https://www.vinted.es/brand/babies-wear'), +(260826 , 'Barrie' , 'https://www.vinted.es/brand/barrie'), +(1637227 , 'BARBER PRO' , 'https://www.vinted.es/brand/barber-pro'), +(1623266 , 'Barbetti' , 'https://www.vinted.es/brand/barbetti'), +(674298 , 'barielle' , 'https://www.vinted.es/brand/barielle'), +(7137 , 'Bonprix' , 'https://www.vinted.es/brand/bonprix'), +(1493272 , 'bon brix' , 'https://www.vinted.es/brand/bon-brix'), +(540834 , 'Bundle' , 'https://www.vinted.es/brand/bundle'), +(82336 , 'B&E Sport' , 'https://www.vinted.es/brand/be-sport'), +(367909 , 'B & L' , 'https://www.vinted.es/brand/b-l'), +(1156692 , 'Bundeswehr' , 'https://www.vinted.es/brand/bundeswehr'), +(3393 , 'Blanco' , 'https://www.vinted.es/brand/blanco'), +(398801 , 'Blanco Roto' , 'https://www.vinted.es/brand/blanco-roto'), +(626287 , 'Blanco y Negro' , 'https://www.vinted.es/brand/blanco-y-negro'), +(4647 , 'Blancheporte' , 'https://www.vinted.es/brand/blancheporte'), +(386657 , 'Blanche' , 'https://www.vinted.es/brand/blanche'), +(31509 , 'Blanca' , 'https://www.vinted.es/brand/blanca'), +(335 , 'Blanc du Nil' , 'https://www.vinted.es/brand/blanc-du-nil'), +(361034 , 'BLANC' , 'https://www.vinted.es/brand/blanc'), +(12221 , 'Blanc Bleu' , 'https://www.vinted.es/brand/blanc-bleu'), +(3953 , 'Blanc Nature' , 'https://www.vinted.es/brand/blanc-nature'), +(26795 , 'Boutique Parisienne' , 'https://www.vinted.es/brand/boutique-parisienne'), +(62622 , 'Bodyflirt' , 'https://www.vinted.es/brand/bodyflirt'), +(85538 , 'Boden' , 'https://www.vinted.es/brand/boden'), +(311440 , 'Bodenschatz' , 'https://www.vinted.es/brand/bodenschatz'), +(224038 , 'Body Engineers' , 'https://www.vinted.es/brand/body-engineers'), +(291240 , 'BOBO' , 'https://www.vinted.es/brand/bobo'), +(185002 , 'Bowen' , 'https://www.vinted.es/brand/bowen'), +(379972 , 'Boy & Studio' , 'https://www.vinted.es/brand/boy-studio'), +(307976 , 'Body & Soul' , 'https://www.vinted.es/brand/body-soul'), +(2603378 , 'Bo+Tee' , 'https://www.vinted.es/brand/botee'), +(389121 , 'body nature' , 'https://www.vinted.es/brand/body-nature'), +(555945 , 'Bob & Blossom' , 'https://www.vinted.es/brand/bob-blossom'), +(11469 , 'Burton' , 'https://www.vinted.es/brand/burton'), +(3757 , 'BURTON of London' , 'https://www.vinted.es/brand/burton-of-london'), +(5772765 , 'Burton Menswear London' , 'https://www.vinted.es/brand/burton-menswear-london'), +(5795239 , 'Burtons' , 'https://www.vinted.es/brand/burtons'), +(626524 , 'Buttons' , 'https://www.vinted.es/brand/buttons'), +(41265 , 'Brako' , 'https://www.vinted.es/brand/brako'), +(250726 , 'Brakeburn' , 'https://www.vinted.es/brand/brakeburn'), +(3111530 , 'Brak' , 'https://www.vinted.es/brand/brak'), +(40225 , 'Brave Soul' , 'https://www.vinted.es/brand/brave-soul'), +(42003 , 'Braccialini' , 'https://www.vinted.es/brand/braccialini'), +(265661 , 'Bratz' , 'https://www.vinted.es/brand/bratz'), +(122762 , 'BRAX' , 'https://www.vinted.es/brand/brax'), +(911282 , 'Branco' , 'https://www.vinted.es/brand/branco'), +(616473 , 'Branca' , 'https://www.vinted.es/brand/branca'), +(446 , 'Billabong' , 'https://www.vinted.es/brand/billabong'), +(24 , 'Bata' , 'https://www.vinted.es/brand/bata'), +(119958 , 'Bat Attack' , 'https://www.vinted.es/brand/bat-attack'), +(3697 , 'ba&sh' , 'https://www.vinted.es/brand/bash'), +(22411 , 'Batman' , 'https://www.vinted.es/brand/batman'), +(358 , 'Banana Moon' , 'https://www.vinted.es/brand/banana-moon'), +(2369 , 'Balenciaga' , 'https://www.vinted.es/brand/balenciaga'), +(1903 , 'Banana Republic' , 'https://www.vinted.es/brand/banana-republic'), +(202582 , 'badabulle' , 'https://www.vinted.es/brand/badabulle'), +(165298 , 'Bayard' , 'https://www.vinted.es/brand/bayard'), +(2467 , 'Bala Boosté' , 'https://www.vinted.es/brand/bala-booste'), +(7464162 , 'Reebok x ba&sh' , 'https://www.vinted.es/brand/reebok-x-bash'), +(3049411 , 'Batsheva' , 'https://www.vinted.es/brand/batsheva'), +(45321 , 'Bimba Y Lola' , 'https://www.vinted.es/brand/bimba-y-lola'), +(120 , 'Hugo Boss' , 'https://www.vinted.es/brand/hugo-boss'), +(25383 , 'Boss' , 'https://www.vinted.es/brand/boss'), +(6039857 , 'BOSS Hugo Boss' , 'https://www.vinted.es/brand/boss-hugo-boss'), +(195268 , 'Boss Orange' , 'https://www.vinted.es/brand/boss-orange'), +(595622 , 'Bossa' , 'https://www.vinted.es/brand/bossa'), +(88306 , 'Bossini' , 'https://www.vinted.es/brand/bossini'), +(459015 , 'Bossanova' , 'https://www.vinted.es/brand/bossanova'), +(1988113 , 'BOSS Green' , 'https://www.vinted.es/brand/boss-green'), +(5980194 , 'BOSS Casual' , 'https://www.vinted.es/brand/boss-casual'), +(95768 , 'Bosanova' , 'https://www.vinted.es/brand/bosanova'), +(6011 , 'Brice' , 'https://www.vinted.es/brand/brice'), +(317086 , 'Brice D''Alban' , 'https://www.vinted.es/brand/brice-dalban'), +(269443 , 'Brice Berger' , 'https://www.vinted.es/brand/brice-berger'), +(6051 , 'Briefing' , 'https://www.vinted.es/brand/briefing'), +(3413 , 'Bruce Field' , 'https://www.vinted.es/brand/bruce-field'), +(172826 , 'Brics' , 'https://www.vinted.es/brand/brics'), +(421795 , 'Bruce & Butler' , 'https://www.vinted.es/brand/bruce-butler'), +(633565 , 'Briciole' , 'https://www.vinted.es/brand/briciole'), +(235268 , 'Briefly' , 'https://www.vinted.es/brand/briefly'), +(212308 , 'BrimeStone' , 'https://www.vinted.es/brand/brimestone'), +(28235 , 'Bréal' , 'https://www.vinted.es/brand/breal'), +(3203 , 'Birkenstock' , 'https://www.vinted.es/brand/birkenstock'), +(8318173 , 'Birkenstock x Stüssy' , 'https://www.vinted.es/brand/birkenstock-x-stussy'), +(4749 , 'Bench' , 'https://www.vinted.es/brand/bench'), +(392371 , 'Benchmark' , 'https://www.vinted.es/brand/benchmark'), +(1569 , 'B&C' , 'https://www.vinted.es/brand/bc'), +(20563 , 'Ben Sherman' , 'https://www.vinted.es/brand/ben-sherman'), +(292443 , 'Bengh per Principesse' , 'https://www.vinted.es/brand/bengh-per-principesse'), +(304456 , 'B&C Collection' , 'https://www.vinted.es/brand/bc-collection'), +(157642 , 'Beuchat' , 'https://www.vinted.es/brand/beuchat'), +(1221896 , 'BEACHWAVE' , 'https://www.vinted.es/brand/beachwave'), +(485788 , 'Beachlife' , 'https://www.vinted.es/brand/beachlife'), +(447964 , 'Be Chic' , 'https://www.vinted.es/brand/be-chic'), +(267192 , 'Blukids' , 'https://www.vinted.es/brand/blukids'), +(7721173 , 'Blue Kids' , 'https://www.vinted.es/brand/blue-kids'), +(166336 , 'Bel&Bo' , 'https://www.vinted.es/brand/belbo'), +(729776 , 'Bel&Bo Girls' , 'https://www.vinted.es/brand/belbo-girls'), +(187058 , 'Bóboli' , 'https://www.vinted.es/brand/boboli'), +(2253 , 'Bijou Brigitte' , 'https://www.vinted.es/brand/bijou-brigitte'), +(151530 , 'Baum und Pferdgarten' , 'https://www.vinted.es/brand/baum-und-pferdgarten'), +(175354 , 'Bath & Body Works' , 'https://www.vinted.es/brand/bath-body-works'), +(1493529 , 'Baltman' , 'https://www.vinted.es/brand/baltman'), +(6230283 , 'B. Altman & Co.' , 'https://www.vinted.es/brand/b-altman-co'), +(12567 , 'Buffalo' , 'https://www.vinted.es/brand/buffalo'), +(7217 , 'Buffalo London' , 'https://www.vinted.es/brand/buffalo-london'), +(5768706 , 'Buffalo Girl' , 'https://www.vinted.es/brand/buffalo-girl'), +(288012 , 'Buffalo David Bitton' , 'https://www.vinted.es/brand/buffalo-david-bitton'), +(7061942 , 'Puma x Buffalo' , 'https://www.vinted.es/brand/puma-x-buffalo'), +(180556 , 'Blue Seven' , 'https://www.vinted.es/brand/blue-seven'), +(4443 , 'Bebe' , 'https://www.vinted.es/brand/bebe'), +(121438 , 'Bébé Confort' , 'https://www.vinted.es/brand/bebe-confort'), +(175338 , 'Bébé Rêve' , 'https://www.vinted.es/brand/bebe-reve'), +(179010 , 'Bébé 9' , 'https://www.vinted.es/brand/bebe-9'), +(332732 , 'Bébécar' , 'https://www.vinted.es/brand/bebecar'), +(291176 , 'Beberlis' , 'https://www.vinted.es/brand/beberlis'), +(646223 , 'Bebetto' , 'https://www.vinted.es/brand/bebetto'), +(5790726 , 'Bébé-jou' , 'https://www.vinted.es/brand/bebe-jou'), +(5801590 , 'Bebé Due' , 'https://www.vinted.es/brand/bebe-due'), +(238352 , 'Bebe Caramel' , 'https://www.vinted.es/brand/bebe-caramel'), +(391521 , 'Bambina' , 'https://www.vinted.es/brand/bambina'), +(275218 , 'Bambino' , 'https://www.vinted.es/brand/bambino'), +(353183 , 'Bambini' , 'https://www.vinted.es/brand/bambini'), +(299185 , 'Bambino Mio' , 'https://www.vinted.es/brand/bambino-mio'), +(311750 , 'Bambinex' , 'https://www.vinted.es/brand/bambinex'), +(345529 , 'Bambia' , 'https://www.vinted.es/brand/bambia'), +(333414 , 'Bambineli' , 'https://www.vinted.es/brand/bambineli'), +(403002 , 'balbina' , 'https://www.vinted.es/brand/balbina'), +(375657 , 'Bimba' , 'https://www.vinted.es/brand/bimba'), +(264648 , 'Bimbalina' , 'https://www.vinted.es/brand/bimbalina'), +(576017 , 'Bimbalo' , 'https://www.vinted.es/brand/bimbalo'), +(7677502 , 'BIM BAM Su Meile Vaikams' , 'https://www.vinted.es/brand/bim-bam-su-meile-vaikams'), +(196520 , 'BIMBUS' , 'https://www.vinted.es/brand/bimbus'), +(24775 , 'BIBA' , 'https://www.vinted.es/brand/biba'), +(322368 , 'Birba' , 'https://www.vinted.es/brand/birba'), +(1012925 , 'Bimani' , 'https://www.vinted.es/brand/bimani'), +(623636 , 'Bimbo Style' , 'https://www.vinted.es/brand/bimbo-style'), +(342062 , 'bpc bonprix collection' , 'https://www.vinted.es/brand/bpc-bonprix-collection'), +(19439 , 'Big Star' , 'https://www.vinted.es/brand/big-star'), +(46805 , 'Barbour' , 'https://www.vinted.es/brand/barbour'), +(959088 , 'Barbour International' , 'https://www.vinted.es/brand/barbour-international'), +(4734513 , 'Barbour Heritage' , 'https://www.vinted.es/brand/barbour-heritage'), +(7379447 , 'Barbour beacon' , 'https://www.vinted.es/brand/barbour-beacon'), +(179640 , 'Barbouillage' , 'https://www.vinted.es/brand/barbouillage'), +(7363530 , 'Barbora Kubi' , 'https://www.vinted.es/brand/barbora-kubi'), +(291634 , 'Bambisol' , 'https://www.vinted.es/brand/bambisol'), +(174008 , 'Boîte À Malices' , 'https://www.vinted.es/brand/boite-a-malices'), +(3004063 , 'Boîte à Malices' , 'https://www.vinted.es/brand/la-boite-a-malices'), +(97234 , 'Brums' , 'https://www.vinted.es/brand/brums'), +(233218 , 'Brummell' , 'https://www.vinted.es/brand/brummell'), +(265649 , 'Brum Beby' , 'https://www.vinted.es/brand/brum-beby'), +(45617 , 'Bruuns Bazaar' , 'https://www.vinted.es/brand/bruuns-bazaar'), +(481612 , 'Brams Paris' , 'https://www.vinted.es/brand/brams-paris'), +(349767 , 'Brimstone' , 'https://www.vinted.es/brand/brimstone'), +(200566 , 'Brummel' , 'https://www.vinted.es/brand/brummel'), +(182338 , 'BRUMA' , 'https://www.vinted.es/brand/bruma'), +(359462 , 'Bruman' , 'https://www.vinted.es/brand/bruman'), +(381734 , 'Brush works' , 'https://www.vinted.es/brand/brush-works'), +(163 , 'Best Mountain' , 'https://www.vinted.es/brand/best-mountain'), +(11447 , 'Best Montain' , 'https://www.vinted.es/brand/best-montain'), +(21009 , 'Bik Bok' , 'https://www.vinted.es/brand/bik-bok'), +(1165 , 'BaByliss' , 'https://www.vinted.es/brand/babyliss'), +(6483274 , 'Gucci x Balenciaga' , 'https://www.vinted.es/brand/gucci-x-balenciaga'), +(7492757 , 'The Fortnite x Balenciaga' , 'https://www.vinted.es/brand/the-fortnite-x-balenciaga'), +(7492759 , 'Gap x Balenciaga' , 'https://www.vinted.es/brand/gap-x-balenciaga'), +(64838 , 'BabyGap' , 'https://www.vinted.es/brand/babygap'), +(195414 , 'Wapi Baby' , 'https://www.vinted.es/brand/wapi-baby'), +(468404 , 'Baby Gang' , 'https://www.vinted.es/brand/baby-gang'), +(96364 , 'Blue Motion' , 'https://www.vinted.es/brand/blue-motion'), +(176780 , 'BÉABA' , 'https://www.vinted.es/brand/beaba'), +(287297 , 'Bandai' , 'https://www.vinted.es/brand/bandai'), +(437210 , 'Bandai Namco' , 'https://www.vinted.es/brand/bandai-namco'), +(427736 , 'Banditas from Marseille' , 'https://www.vinted.es/brand/banditas-from-marseille'), +(380196 , 'Bandanas' , 'https://www.vinted.es/brand/bandanas'), +(329426 , 'Bandas Rojas' , 'https://www.vinted.es/brand/bandas-rojas'), +(717275 , 'BAND À PART' , 'https://www.vinted.es/brand/band-a-part'), +(1228519 , 'Bandas' , 'https://www.vinted.es/brand/bandas'), +(751908 , 'Bandi' , 'https://www.vinted.es/brand/bandi'), +(7443290 , 'Bandama' , 'https://www.vinted.es/brand/bandama'), +(7295 , 'Bonpoint' , 'https://www.vinted.es/brand/bonpoint'), +(6368985 , 'adidas x Bonpoint' , 'https://www.vinted.es/brand/adidas-x-bonpoint'), +(287216 , 'Clementoni' , 'https://www.vinted.es/brand/clementoni'), +(178776 , 'Babymoov' , 'https://www.vinted.es/brand/babymoov'), +(281926 , 'Baby by Gémo' , 'https://www.vinted.es/brand/baby-by-gemo'), +(147716 , 'Babybotte' , 'https://www.vinted.es/brand/babybotte'), +(329456 , 'Babyface' , 'https://www.vinted.es/brand/babyface'), +(207722 , 'Babybjörn' , 'https://www.vinted.es/brand/babybjorn'), +(320898 , 'BABY Blue' , 'https://www.vinted.es/brand/baby-blue'), +(230346 , 'BabySun' , 'https://www.vinted.es/brand/babysun'), +(16003 , 'Betty Barclay' , 'https://www.vinted.es/brand/betty-barclay'), +(196468 , 'Bleu' , 'https://www.vinted.es/brand/bleu'), +(7657 , 'Bleu bonheur' , 'https://www.vinted.es/brand/bleu-bonheur'), +(166228 , 'Bleu Clair' , 'https://www.vinted.es/brand/bleu-clair'), +(18687 , 'Bleu Blanc Rouge' , 'https://www.vinted.es/brand/bleu-blanc-rouge'), +(5277 , 'Bleu de SYM' , 'https://www.vinted.es/brand/bleu-de-sym'), +(62726 , 'Bleu 123' , 'https://www.vinted.es/brand/bleu-123'), +(284145 , 'Bleu comme gris' , 'https://www.vinted.es/brand/bleu-comme-gris'), +(283862 , 'Bleu d''Azur' , 'https://www.vinted.es/brand/bleu-dazur'), +(178634 , 'Bleu Libellule' , 'https://www.vinted.es/brand/bleu-libellule'), +(3777 , 'Bleu Citron' , 'https://www.vinted.es/brand/bleu-citron'), +(266108 , 'Bonmarché' , 'https://www.vinted.es/brand/bonmarche'), +(51021 , 'Boots' , 'https://www.vinted.es/brand/boots'), +(33357 , 'Boot shop' , 'https://www.vinted.es/brand/bootshop'), +(1012841 , 'Boots & Braces' , 'https://www.vinted.es/brand/boots-braces'), +(245274 , 'Boots Laboratories' , 'https://www.vinted.es/brand/boots-laboratories'), +(84206 , 'Bootcut' , 'https://www.vinted.es/brand/bootcut'), +(333011 , 'Boot' , 'https://www.vinted.es/brand/boot'), +(188864 , 'Booster' , 'https://www.vinted.es/brand/booster'), +(614886 , 'Boosley' , 'https://www.vinted.es/brand/boosley'), +(805256 , 'Booso' , 'https://www.vinted.es/brand/booso'), +(2857099 , 'Boon The Shop' , 'https://www.vinted.es/brand/boon-the-shop'), +(98830 , 'Bhs' , 'https://www.vinted.es/brand/bhs'), +(837520 , 'B&H Shoes' , 'https://www.vinted.es/brand/bh-shoes'), +(3915 , 'Bhatti' , 'https://www.vinted.es/brand/bhatti'), +(268951 , 'B&H' , 'https://www.vinted.es/brand/bh'), +(176868 , 'BH Cosmetics' , 'https://www.vinted.es/brand/bh-cosmetics'), +(2783412 , 'BHZ' , 'https://www.vinted.es/brand/bhz'), +(2007 , 'Bellerose' , 'https://www.vinted.es/brand/bellerose'), +(2180687 , 'Bellrose clothing' , 'https://www.vinted.es/brand/bellrose-clothing'), +(75360 , 'beloved' , 'https://www.vinted.es/brand/beloved'), +(311414 , 'Brownie' , 'https://www.vinted.es/brand/brownie'), +(281519 , 'Browning' , 'https://www.vinted.es/brand/browning'), +(43551 , 'Basic' , 'https://www.vinted.es/brand/basic'), +(17803 , 'Basic One' , 'https://www.vinted.es/brand/basic-one'), +(268090 , 'Basic Collection' , 'https://www.vinted.es/brand/basic-collection'), +(39757 , 'Basics' , 'https://www.vinted.es/brand/basics'), +(1088195 , 'Basic Needs' , 'https://www.vinted.es/brand/basic-needs'), +(546323 , 'Basic NPO' , 'https://www.vinted.es/brand/basic-npo'), +(164842 , 'BASIC EQUIPMENT' , 'https://www.vinted.es/brand/basic-equipment'), +(37287 , 'Basic Denim' , 'https://www.vinted.es/brand/basic-denim'), +(333316 , 'basic line' , 'https://www.vinted.es/brand/basic-line'), +(419294 , 'Basico' , 'https://www.vinted.es/brand/basico'), +(182204 , 'Billieblush' , 'https://www.vinted.es/brand/billieblush'), +(284665 , 'Billiblush' , 'https://www.vinted.es/brand/billiblush'), +(13097 , 'B.P.C' , 'https://www.vinted.es/brand/bpc'), +(105886 , 'BPC Selection' , 'https://www.vinted.es/brand/bpc-selection'), +(378162 , 'B.J. Charles' , 'https://www.vinted.es/brand/bj-charles'), +(377488 , 'B.O.C' , 'https://www.vinted.es/brand/boc'), +(108 , 'Bel-Air' , 'https://www.vinted.es/brand/bel-air'), +(3209795 , 'Bel-Air Athletics' , 'https://www.vinted.es/brand/bel-air-athletics'), +(706811 , 'Bellaire' , 'https://www.vinted.es/brand/bellaire'), +(49255 , 'Bonita' , 'https://www.vinted.es/brand/bonita'), +(273895 , 'Bonito' , 'https://www.vinted.es/brand/bonito'), +(330607 , 'Bopita' , 'https://www.vinted.es/brand/bopita'), +(13029 , 'Blind Date' , 'https://www.vinted.es/brand/blind-date'), +(41105 , 'Bianco' , 'https://www.vinted.es/brand/bianco'), +(395342 , 'Biancoghiaccio' , 'https://www.vinted.es/brand/biancoghiaccio'), +(208252 , 'Bianco Evento' , 'https://www.vinted.es/brand/bianco-evento'), +(445299 , 'Bian Corella' , 'https://www.vinted.es/brand/bian-corella'), +(31065 , 'Bianca' , 'https://www.vinted.es/brand/bianca'), +(357031 , 'Bianchi' , 'https://www.vinted.es/brand/bianchi'), +(2542008 , 'bianca brandi' , 'https://www.vinted.es/brand/bianca-brandi'), +(387608 , 'Bianca Maria Caselli' , 'https://www.vinted.es/brand/bianca-maria-caselli'), +(3276431 , 'Biancaluna' , 'https://www.vinted.es/brand/biancaluna'), +(480195 , 'Bialcon' , 'https://www.vinted.es/brand/bialcon'), +(84852 , 'Blu' , 'https://www.vinted.es/brand/blu'), +(14571 , 'Blumarine' , 'https://www.vinted.es/brand/blumarine'), +(289783 , 'Blu-ray' , 'https://www.vinted.es/brand/blu-ray'), +(127106 , 'Blue Ridge' , 'https://www.vinted.es/brand/blue-ridge'), +(225422 , 'Blue Bay' , 'https://www.vinted.es/brand/blue-bay'), +(272880 , 'blue sand' , 'https://www.vinted.es/brand/blue-sand'), +(801 , 'BLUE BOX' , 'https://www.vinted.es/brand/blue-box'), +(196324 , 'Blugirl' , 'https://www.vinted.es/brand/blugirl'), +(22221 , 'BCBGMAXAZRIA' , 'https://www.vinted.es/brand/bcbgmaxazria'), +(20333 , 'Bugatti' , 'https://www.vinted.es/brand/bugatti'), +(1398283 , 'Buratti' , 'https://www.vinted.es/brand/buratti'), +(941716 , 'Black Bananas' , 'https://www.vinted.es/brand/black-bananas'), +(453217 , 'Black Squad' , 'https://www.vinted.es/brand/black-squad'), +(133802 , 'Black Label' , 'https://www.vinted.es/brand/black-label'), +(125162 , 'Black' , 'https://www.vinted.es/brand/black'), +(276415 , 'Black Rose' , 'https://www.vinted.es/brand/black-rose'), +(215490 , 'Blackfox' , 'https://www.vinted.es/brand/blackfox'), +(46169 , 'Blackstone' , 'https://www.vinted.es/brand/blackstone'), +(4481 , 'Black Bat' , 'https://www.vinted.es/brand/black-bat'), +(329351 , 'Black Soul' , 'https://www.vinted.es/brand/black-soul'), +(432993 , 'Blvck' , 'https://www.vinted.es/brand/blvck'), +(223310 , 'Bianca Di' , 'https://www.vinted.es/brand/bianca-di'), +(4180336 , 'Bianca Saunders' , 'https://www.vinted.es/brand/bianca-saunders'), +(1803 , 'Bocage' , 'https://www.vinted.es/brand/bocage'), +(328 , 'Bensimon' , 'https://www.vinted.es/brand/bensimon'), +(7456184 , 'Disney X Bensimon' , 'https://www.vinted.es/brand/disney-x-bensimon'), +(243806 , 'bellybutton' , 'https://www.vinted.es/brand/bellybutton'), +(94726 , 'BELLAMY' , 'https://www.vinted.es/brand/bellamy'), +(367549 , 'Bellamica' , 'https://www.vinted.es/brand/bellamica'), +(308433 , 'Bella Moda' , 'https://www.vinted.es/brand/bella-moda'), +(1042842 , 'Bellambra' , 'https://www.vinted.es/brand/bellambra'), +(2286373 , 'Bella Mama' , 'https://www.vinted.es/brand/bella-mama'), +(7072065 , 'Bella Misteria' , 'https://www.vinted.es/brand/bella-misteria'), +(4305 , 'BDG' , 'https://www.vinted.es/brand/bdg'), +(116482 , 'bdba' , 'https://www.vinted.es/brand/bdba'), +(871115 , 'BD Collection' , 'https://www.vinted.es/brand/bd-collection'), +(286618 , 'B&D' , 'https://www.vinted.es/brand/bd'), +(475505 , 'BDC' , 'https://www.vinted.es/brand/bdc'), +(145612 , 'BDK' , 'https://www.vinted.es/brand/bdk'), +(1054216 , 'Bdellium' , 'https://www.vinted.es/brand/bdellium'), +(300092 , 'Bugaboo' , 'https://www.vinted.es/brand/bugaboo'), +(4 , 'Berenice' , 'https://www.vinted.es/brand/berenice'), +(543 , 'b.young' , 'https://www.vinted.es/brand/byoung'), +(1493591 , 'Bob der Bär' , 'https://www.vinted.es/brand/bob-der-bar'), +(1117 , 'Blend' , 'https://www.vinted.es/brand/blend'), +(2573 , 'BlendShe' , 'https://www.vinted.es/brand/blendshe'), +(145354 , 'BLEND of America' , 'https://www.vinted.es/brand/blend-of-america'), +(236318 , 'Blond Amsterdam' , 'https://www.vinted.es/brand/blond-amsterdam'), +(180378 , 'Bleu de Paname' , 'https://www.vinted.es/brand/bleu-de-paname'), +(247144 , 'Blundstone' , 'https://www.vinted.es/brand/blundstone'), +(299911 , 'Blédina' , 'https://www.vinted.es/brand/bledina'), +(158170 , 'BTS' , 'https://www.vinted.es/brand/bts'), +(6518359 , 'Puma x BTS' , 'https://www.vinted.es/brand/puma-x-bts'), +(183962 , 'B''Twin' , 'https://www.vinted.es/brand/btwin'), +(623086 , 'BT21' , 'https://www.vinted.es/brand/bt21'), +(398520 , 'Btween' , 'https://www.vinted.es/brand/btween'), +(154238 , 'BT London' , 'https://www.vinted.es/brand/bt-london'), +(1260810 , 'B Three' , 'https://www.vinted.es/brand/b-three'), +(423584 , 'B.Toys' , 'https://www.vinted.es/brand/btoys'), +(313969 , 'BT' , 'https://www.vinted.es/brand/bt'), +(294901 , 'b.tempt''d' , 'https://www.vinted.es/brand/btemptd'), +(279435 , 'B.Nosy' , 'https://www.vinted.es/brand/bnosy'), +(110522 , 'Blauer' , 'https://www.vinted.es/brand/blauer'), +(872282 , 'Blauer USA' , 'https://www.vinted.es/brand/blauerusa'), +(9465 , 'Blue Rags' , 'https://www.vinted.es/brand/blue-rags'), +(446675 , 'Blu Royal' , 'https://www.vinted.es/brand/blu-royal'), +(293110 , 'Blue Rebel' , 'https://www.vinted.es/brand/blue-rebel'), +(4045689 , 'Blue Rose Los Angeles' , 'https://www.vinted.es/brand/blue-rose-los-angeles'), +(285852 , 'Blade & Rose' , 'https://www.vinted.es/brand/blade-rose'), +(717334 , 'Blue River' , 'https://www.vinted.es/brand/blue-river'), +(540773 , 'Bladerunner' , 'https://www.vinted.es/brand/bladerunner'), +(423209 , 'by o la la...!' , 'https://www.vinted.es/brand/by-o-la-la'), +(173696 , 'Breil' , 'https://www.vinted.es/brand/breil'), +(268010 , 'Brillante' , 'https://www.vinted.es/brand/brillante'), +(283484 , 'Breitling' , 'https://www.vinted.es/brand/breitling'), +(294747 , 'Breizh Ocean' , 'https://www.vinted.es/brand/breizh-ocean'), +(249842 , 'Brilliant' , 'https://www.vinted.es/brand/brilliant'), +(436930 , 'Breitex' , 'https://www.vinted.es/brand/breitex'), +(332001 , 'Brillance' , 'https://www.vinted.es/brand/brillance'), +(1063730 , 'Briljant Baby' , 'https://www.vinted.es/brand/briljant-baby'), +(1493449 , 'BRETLEY' , 'https://www.vinted.es/brand/bretley'), +(5101 , 'Balmain' , 'https://www.vinted.es/brand/balmain'), +(6038182 , 'Balmain X H&M' , 'https://www.vinted.es/brand/hm-x-balmain'), +(167 , 'Bilook' , 'https://www.vinted.es/brand/bilook'), +(515702 , 'BIMBO' , 'https://www.vinted.es/brand/bimbo'), +(588673 , 'BIG BOBBY CAR' , 'https://www.vinted.es/brand/big-bobby-car'), +(185992 , 'Bestway' , 'https://www.vinted.es/brand/bestway'), +(20929 , 'Bikkembergs' , 'https://www.vinted.es/brand/bikkembergs'), +(258988 , 'bibalou' , 'https://www.vinted.es/brand/bibalou'), +(1113673 , 'BiBADO' , 'https://www.vinted.es/brand/bibado'), +(1681 , 'Biaggini' , 'https://www.vinted.es/brand/biaggini'), +(59056 , 'Biaggio' , 'https://www.vinted.es/brand/biaggio'), +(77778 , 'Bibi Lou' , 'https://www.vinted.es/brand/bibi-lou'), +(455459 , 'Boux Avenue' , 'https://www.vinted.es/brand/boux-avenue'), +(69298 , 'Berghaus' , 'https://www.vinted.es/brand/berghaus'), +(308 , 'Besson' , 'https://www.vinted.es/brand/besson'), +(8209 , 'Besson Chaussures' , 'https://www.vinted.es/brand/besson-chaussures'), +(7855 , 'Besson Chaussure' , 'https://www.vinted.es/brand/besson-chaussure'), +(265395 , 'Benson & Cherry' , 'https://www.vinted.es/brand/benson-cherry'), +(119010 , 'Bessini' , 'https://www.vinted.es/brand/bessini'), +(622292 , 'Babybott' , 'https://www.vinted.es/brand/babybott'), +(175172 , 'Brioche' , 'https://www.vinted.es/brand/brioche'), +(30033 , 'B&K Style' , 'https://www.vinted.es/brand/bk-style'), +(125508 , 'BM' , 'https://www.vinted.es/brand/bm'), +(284370 , 'BP' , 'https://www.vinted.es/brand/bp'), +(256714 , 'B&S' , 'https://www.vinted.es/brand/bs'), +(205548 , 'B&W' , 'https://www.vinted.es/brand/bw'), +(21471 , 'B&G' , 'https://www.vinted.es/brand/bg'), +(281804 , 'BR' , 'https://www.vinted.es/brand/br'), +(149686 , 'B.O.' , 'https://www.vinted.es/brand/bo'), +(150898 , 'byblos' , 'https://www.vinted.es/brand/byblos'), +(130656 , 'Braun' , 'https://www.vinted.es/brand/braun'), +(7901 , 'Bragard' , 'https://www.vinted.es/brand/bragard'), +(1119264 , 'Brandani' , 'https://www.vinted.es/brand/brandani'), +(156160 , 'Brandtex' , 'https://www.vinted.es/brand/brandtex'), +(18053 , 'BOY London' , 'https://www.vinted.es/brand/boy-london'), +(131166 , 'Belstaff' , 'https://www.vinted.es/brand/belstaff'), +(7200305 , 'Belstaff x Goodwood' , 'https://www.vinted.es/brand/belstaff-x-goodwood'), +(468347 , 'Bellstaff' , 'https://www.vinted.es/brand/bellstaff'), +(293417 , 'Brotes' , 'https://www.vinted.es/brand/brotes'), +(1493464 , 'Broke & Schön' , 'https://www.vinted.es/brand/broke-schon'), +(232064 , 'Bluemarine' , 'https://www.vinted.es/brand/bluemarine'), +(203914 , 'BMW' , 'https://www.vinted.es/brand/bmw'), +(6679294 , 'Puma x BMW Motorsport' , 'https://www.vinted.es/brand/puma-x-bmw-motorsport'), +(298256 , 'Bernie Mev' , 'https://www.vinted.es/brand/bernie-mev'), +(457409 , 'BMG' , 'https://www.vinted.es/brand/bmg'), +(403085 , 'BMS' , 'https://www.vinted.es/brand/bms'), +(172622 , 'BMC' , 'https://www.vinted.es/brand/bmc'), +(168496 , 'Bm Collection' , 'https://www.vinted.es/brand/bm-collection'), +(215714 , 'B. Makowsky' , 'https://www.vinted.es/brand/b-makowsky'), +(573525 , 'Bm Casual' , 'https://www.vinted.es/brand/bm-casual'), +(361957 , 'Befado' , 'https://www.vinted.es/brand/befado'), +(610836 , 'Bartek' , 'https://www.vinted.es/brand/bartek'), +(2214802 , 'Bartek Candles' , 'https://www.vinted.es/brand/bartek-candles'), +(384774 , 'Bartex' , 'https://www.vinted.es/brand/bartex'), +(15453 , 'Babolat' , 'https://www.vinted.es/brand/babolat'), +(222992 , 'Baby Girl' , 'https://www.vinted.es/brand/baby-girl'), +(126042 , 'BESS' , 'https://www.vinted.es/brand/bess'), +(183482 , 'Bessie' , 'https://www.vinted.es/brand/bessie'), +(741075 , 'Bessie London' , 'https://www.vinted.es/brand/bessie-london'), +(1944138 , 'Bessky' , 'https://www.vinted.es/brand/bessky'), +(344110 , 'Build A Bear Workshop' , 'https://www.vinted.es/brand/build-a-bear-workshop'), +(264214 , 'Blue Vanilla' , 'https://www.vinted.es/brand/blue-vanilla'), +(181208 , 'Bornino' , 'https://www.vinted.es/brand/bornino'), +(863960 , 'Bonino' , 'https://www.vinted.es/brand/bonino'), +(274318 , 'Bakkaboe' , 'https://www.vinted.es/brand/bakkaboe'), +(309525 , 'Buissonnière' , 'https://www.vinted.es/brand/buissonniere'), +(68334 , 'Broadway' , 'https://www.vinted.es/brand/broadway'), +(256340 , 'Bisgaard' , 'https://www.vinted.es/brand/bisgaard'), +(174582 , 'bopy' , 'https://www.vinted.es/brand/bopy'), +(36073 , 'Boy' , 'https://www.vinted.es/brand/boy'), +(80200 , 'The Body Shop' , 'https://www.vinted.es/brand/the-body-shop'), +(199318 , 'Boppy' , 'https://www.vinted.es/brand/boppy'), +(198002 , 'Boyi' , 'https://www.vinted.es/brand/boyi'), +(1507 , 'Body One' , 'https://www.vinted.es/brand/body-one'), +(30513 , 'Body Glove' , 'https://www.vinted.es/brand/body-glove'), +(287394 , 'Baby Born' , 'https://www.vinted.es/brand/baby-born'), +(6357 , 'Bronx' , 'https://www.vinted.es/brand/bronx'), +(151308 , 'Bronzini' , 'https://www.vinted.es/brand/bronzini'), +(18855 , 'Brontibay' , 'https://www.vinted.es/brand/brontibay'), +(394684 , 'Brox Sister' , 'https://www.vinted.es/brand/brox-sister'), +(78146 , 'Bronson' , 'https://www.vinted.es/brand/bronson'), +(293169 , 'Bronzallure' , 'https://www.vinted.es/brand/bronzallure'), +(1405476 , 'Bronte by Moon' , 'https://www.vinted.es/brand/bronte-by-moon'), +(330582 , 'Brugi' , 'https://www.vinted.es/brand/brugi'), +(264906 , 'Bruin' , 'https://www.vinted.es/brand/bruin'), +(30785 , 'Brigitte Bardot' , 'https://www.vinted.es/brand/brigitte-bardot'), +(277213 , 'Brigitte' , 'https://www.vinted.es/brand/brigitte'), +(156486 , 'Brigitte Saget' , 'https://www.vinted.es/brand/brigitte-saget'), +(517633 , 'Brigitte von Boch' , 'https://www.vinted.es/brand/brigitte-von-boch'), +(2057871 , 'Brigitte Büge' , 'https://www.vinted.es/brand/brigitte-buge'), +(292974 , 'Boteli' , 'https://www.vinted.es/brand/boteli'), +(9534841 , 'Bratzillaz' , 'https://www.vinted.es/brand/bratzillaz'), +(247232 , 'Braez' , 'https://www.vinted.es/brand/braez'), +(532816 , 'Brat Star' , 'https://www.vinted.es/brand/brat-star'), +(248864 , 'Bobo Choses' , 'https://www.vinted.es/brand/bobo-choses'), +(83432 , 'Bellissima' , 'https://www.vinted.es/brand/bellissima'), +(328077 , 'Bellissimo' , 'https://www.vinted.es/brand/bellissimo'), +(196332 , 'Bonton' , 'https://www.vinted.es/brand/bonton'), +(1797124 , 'BONTONI' , 'https://www.vinted.es/brand/bontoni'), +(86096 , 'Boston' , 'https://www.vinted.es/brand/boston'), +(800295 , 'Bouton' , 'https://www.vinted.es/brand/bouton'), +(428987 , 'Botton' , 'https://www.vinted.es/brand/botton'), +(472835 , 'Boston Proper' , 'https://www.vinted.es/brand/boston-proper'), +(536105 , 'Boston Crew' , 'https://www.vinted.es/brand/boston-crew'), +(722043 , 'Boston Public' , 'https://www.vinted.es/brand/boston-public'), +(47651 , 'Brosway' , 'https://www.vinted.es/brand/brosway'), +(177594 , 'Biomecanics' , 'https://www.vinted.es/brand/biomecanics'), +(12945 , 'Barts' , 'https://www.vinted.es/brand/barts'), +(685334 , 'Bartolucci' , 'https://www.vinted.es/brand/bartolucci'), +(268947 , 'Barisal' , 'https://www.vinted.es/brand/barisal'), +(304068 , 'Barton' , 'https://www.vinted.es/brand/barton'), +(355464 , 'Bartlett' , 'https://www.vinted.es/brand/bartlett'), +(153466 , 'Barton Perreira' , 'https://www.vinted.es/brand/barton-perreira'), +(2711541 , 'Bäres' , 'https://www.vinted.es/brand/baeres'), +(8477 , 'Bien Bleu' , 'https://www.vinted.es/brand/bien-bleu'), +(894972 , 'Bien Blue' , 'https://www.vinted.es/brand/bien-blue'), +(280730 , 'Bordeaux' , 'https://www.vinted.es/brand/bordeaux'), +(186724 , 'Blancreme' , 'https://www.vinted.es/brand/blancreme'), +(1147007 , 'Blancha' , 'https://www.vinted.es/brand/blancha'), +(18269 , 'Bering' , 'https://www.vinted.es/brand/bering'), +(174276 , 'Berlingot' , 'https://www.vinted.es/brand/berlingot'), +(342787 , 'Berenguer' , 'https://www.vinted.es/brand/berenguer'), +(278868 , 'Being Human' , 'https://www.vinted.es/brand/being-human'), +(289263 , 'Being Casual' , 'https://www.vinted.es/brand/being-casual'), +(4705626 , 'Braun Büffel' , 'https://www.vinted.es/brand/braun-buffel'), +(24219 , 'Bruno Premi' , 'https://www.vinted.es/brand/bruno-premi'), +(168282 , 'BRUNOTTI' , 'https://www.vinted.es/brand/brunotti'), +(103740 , 'Brunello Cucinelli' , 'https://www.vinted.es/brand/brunello-cucinelli'), +(285292 , 'Bruno Leoni' , 'https://www.vinted.es/brand/bruno-leoni'), +(214224 , 'Boomerang' , 'https://www.vinted.es/brand/boomerang'), +(279582 , 'Bobbi Shoes' , 'https://www.vinted.es/brand/bobbi-shoes'), +(296585 , 'Banpresto' , 'https://www.vinted.es/brand/banpresto'), +(521607 , 'Babydream' , 'https://www.vinted.es/brand/babydream'), +(432637 , 'Bom' , 'https://www.vinted.es/brand/bom'), +(36403 , 'Bomboogie' , 'https://www.vinted.es/brand/bomboogie'), +(59808 , 'Bombers' , 'https://www.vinted.es/brand/bombers'), +(379765 , 'Bomaca' , 'https://www.vinted.es/brand/bomaca'), +(271366 , 'Bombers Original' , 'https://www.vinted.es/brand/bombers-original'), +(302532 , 'Bomba' , 'https://www.vinted.es/brand/bomba'), +(299091 , 'Bom Bon Chic' , 'https://www.vinted.es/brand/bom-bon-chic'), +(174520 , 'Bomb Cosmetics' , 'https://www.vinted.es/brand/bomb-cosmetics'), +(579850 , 'Bombshell' , 'https://www.vinted.es/brand/bombshell'), +(3117230 , 'Bomar' , 'https://www.vinted.es/brand/bomar'), +(72828 , 'Björn Borg' , 'https://www.vinted.es/brand/bjorn-borg'), +(114886 , 'Benefit' , 'https://www.vinted.es/brand/benefit'), +(624037 , 'Benefit Cosmetics' , 'https://www.vinted.es/brand/benefit-cosmetics'), +(400590 , 'Bebela' , 'https://www.vinted.es/brand/bebela'), +(958007 , 'Bébéar' , 'https://www.vinted.es/brand/bebear'), +(6517 , 'Betty Boop' , 'https://www.vinted.es/brand/betty-boop'), +(97566 , 'Bexleys' , 'https://www.vinted.es/brand/bexleys'), +(137996 , 'Bexley' , 'https://www.vinted.es/brand/bexley'), +(268190 , 'Bouchara' , 'https://www.vinted.es/brand/bouchara'), +(946373 , 'Babystyling' , 'https://www.vinted.es/brand/babystyling'), +(3371 , 'Bisou''s Project' , 'https://www.vinted.es/brand/bisous-project'), +(69016 , 'Bandolera' , 'https://www.vinted.es/brand/bandolera'), +(371001 , 'Bear' , 'https://www.vinted.es/brand/bear'), +(318534 , 'Bearbrick' , 'https://www.vinted.es/brand/bearbrick'), +(145754 , 'Bearpaw' , 'https://www.vinted.es/brand/bearpaw'), +(367556 , 'Bearwood' , 'https://www.vinted.es/brand/bearwood'), +(326237 , 'Bear Leader' , 'https://www.vinted.es/brand/bear-leader'), +(885379 , 'Beard Brother' , 'https://www.vinted.es/brand/beard-brother'), +(393803 , 'Bear Dance' , 'https://www.vinted.es/brand/bear-dance'), +(453368 , 'Bears Club' , 'https://www.vinted.es/brand/bears-club'), +(5994627 , 'The Bearded Bastard' , 'https://www.vinted.es/brand/the-bearded-bastard'), +(284274 , 'babidu' , 'https://www.vinted.es/brand/babidu'), +(288705 , 'babideal' , 'https://www.vinted.es/brand/babideal'), +(883999 , 'Babydump' , 'https://www.vinted.es/brand/babydump'), +(345074 , 'Baby Dutch' , 'https://www.vinted.es/brand/baby-dutch'), +(3024536 , 'Baby Dumpling' , 'https://www.vinted.es/brand/baby-dumpling'), +(173786 , 'Baker Bridge' , 'https://www.vinted.es/brand/baker-bridge'), +(127892 , 'Baker' , 'https://www.vinted.es/brand/baker'), +(26931 , 'Bakers' , 'https://www.vinted.es/brand/bakers'), +(759738 , 'Bakery Ladies' , 'https://www.vinted.es/brand/bakery-ladies'), +(727652 , 'Baker Ross' , 'https://www.vinted.es/brand/baker-ross'), +(2186001 , 'Baker by Ted Baker' , 'https://www.vinted.es/brand/baker-by-ted-baker'), +(299422 , 'Bauer' , 'https://www.vinted.es/brand/bauer'), +(29339 , 'Bakker' , 'https://www.vinted.es/brand/bakker'), +(284458 , 'BAYER' , 'https://www.vinted.es/brand/bayer'), +(668085 , 'Balleri' , 'https://www.vinted.es/brand/balleri'), +(99868 , 'Bogner' , 'https://www.vinted.es/brand/bogner'), +(1216779 , 'Bogner Fire + Ice' , 'https://www.vinted.es/brand/bogner-fire-ice'), +(1304760 , 'Börner' , 'https://www.vinted.es/brand/borner'), +(2157 , 'BnK' , 'https://www.vinted.es/brand/bnk'), +(13031 , 'Baba Nuki' , 'https://www.vinted.es/brand/baba-nuki'), +(299059 , 'Bnb Jeans' , 'https://www.vinted.es/brand/bnb-jeans'), +(619298 , 'BNYC' , 'https://www.vinted.es/brand/bnyc'), +(266913 , 'Babylove' , 'https://www.vinted.es/brand/babylove'), +(275490 , 'Borbonese' , 'https://www.vinted.es/brand/borbonese'), +(296360 , 'Blutsgeschwister' , 'https://www.vinted.es/brand/blutsgeschwister'), +(432835 , 'Bubble Gum' , 'https://www.vinted.es/brand/bubble-gum'), +(710545 , 'Bubblegummers' , 'https://www.vinted.es/brand/bubblegummers'), +(159182 , 'bama' , 'https://www.vinted.es/brand/bama'), +(265316 , 'BOBUX' , 'https://www.vinted.es/brand/bobux'), +(320819 , 'Bonux' , 'https://www.vinted.es/brand/bonux'), +(7612190 , 'Bob & Oli' , 'https://www.vinted.es/brand/bob-oli'), +(373720 , 'Bburago' , 'https://www.vinted.es/brand/bburago'), +(79092 , 'Basler' , 'https://www.vinted.es/brand/basler'), +(46199 , 'Ballerina' , 'https://www.vinted.es/brand/ballerina'), +(2585986 , 'Ballerina Closet' , 'https://www.vinted.es/brand/ballerina-closet'), +(776824 , 'Baserange' , 'https://www.vinted.es/brand/baserange'), +(3382193 , 'Bassermann' , 'https://www.vinted.es/brand/bassermann'), +(2355781 , 'Biedronka' , 'https://www.vinted.es/brand/biedronka'), +(90472 , 'Baci&Abbracci' , 'https://www.vinted.es/brand/baciabbracci'), +(251146 , 'Baci & Abbracci' , 'https://www.vinted.es/brand/baci-e-abbracci'), +(254470 , 'Baby Nat' , 'https://www.vinted.es/brand/baby-nat'), +(1356317 , 'BabyMatex' , 'https://www.vinted.es/brand/babymatex'), +(43327 , 'Blooshop' , 'https://www.vinted.es/brand/blooshop'), +(169656 , 'Billie & Blossom' , 'https://www.vinted.es/brand/billie-blossom'), +(140600 , 'Blog by Gémo' , 'https://www.vinted.es/brand/blog-by-gemo'), +(872669 , 'Blanca Valiente' , 'https://www.vinted.es/brand/blanca-valiente'), +(202578 , 'BKL Wear' , 'https://www.vinted.es/brand/bkl-wear'), +(8343 , 'Bullboxer' , 'https://www.vinted.es/brand/bullboxer'), +(825842 , 'Boyzone' , 'https://www.vinted.es/brand/boyzone'), +(290791 , 'Boys' , 'https://www.vinted.es/brand/boys'), +(319933 , 'Boys Collection' , 'https://www.vinted.es/brand/boys-collection'), +(5829 , '&Boyfriend' , 'https://www.vinted.es/brand/boyfriend'), +(278842 , 'Boysen''s' , 'https://www.vinted.es/brand/boysens'), +(3521926 , 'Boy Smells' , 'https://www.vinted.es/brand/boy-smells'), +(610708 , 'BESTies' , 'https://www.vinted.es/brand/besties'), +(2546120 , 'BESTIES BY JBC' , 'https://www.vinted.es/brand/besties-by-jbc'), +(418010 , 'Berna' , 'https://www.vinted.es/brand/berna'), +(234798 , 'Bernardi' , 'https://www.vinted.es/brand/bernardi'), +(131678 , 'BERNARDAUD' , 'https://www.vinted.es/brand/bernardaud'), +(81804 , 'Bernard' , 'https://www.vinted.es/brand/bernard'), +(82028 , 'Bernard Zins' , 'https://www.vinted.es/brand/bernard-zins'), +(181656 , 'Bernard Solfin' , 'https://www.vinted.es/brand/bernard-solfin'), +(563537 , 'Bernadette' , 'https://www.vinted.es/brand/bernadette'), +(444359 , 'Bernardo' , 'https://www.vinted.es/brand/bernardo'), +(211754 , 'Bernard Cassière' , 'https://www.vinted.es/brand/bernard-cassiere'), +(404091 , 'Bernard Delettrez' , 'https://www.vinted.es/brand/bernard-delettrez'), +(342195 , 'Blue Queen' , 'https://www.vinted.es/brand/blue-queen'), +(300675 , 'Bluebird' , 'https://www.vinted.es/brand/bluebird'), +(152500 , 'Blue Joint' , 'https://www.vinted.es/brand/blue-joint'), +(63432 , 'Bertie' , 'https://www.vinted.es/brand/bertie'), +(364450 , 'Berti' , 'https://www.vinted.es/brand/berti'), +(305986 , 'Bertinni' , 'https://www.vinted.es/brand/bertinni'), +(605182 , 'BERTI NKD' , 'https://www.vinted.es/brand/berti-nkd'), +(53367 , 'Bestini' , 'https://www.vinted.es/brand/bestini'), +(228384 , 'Berthe aux grands pieds' , 'https://www.vinted.es/brand/berthe-aux-grands-pieds'), +(168970 , 'By Clara' , 'https://www.vinted.es/brand/by-clara'), +(869239 , 'Boutique Belgique' , 'https://www.vinted.es/brand/boutique-belgique'), +(165702 , 'Beckaro' , 'https://www.vinted.es/brand/beckaro'), +(937128 , 'Blanca Martín' , 'https://www.vinted.es/brand/blanca-martin'), +(3451466 , 'Blanca Vita' , 'https://www.vinted.es/brand/blanca-vita'), +(2603 , 'Bally' , 'https://www.vinted.es/brand/bally'), +(85994 , 'Ballin' , 'https://www.vinted.es/brand/ballin'), +(290417 , 'Ballon' , 'https://www.vinted.es/brand/ballon'), +(141418 , 'Ballantyne' , 'https://www.vinted.es/brand/ballantyne'), +(163908 , 'Balloon' , 'https://www.vinted.es/brand/balloon'), +(807148 , 'Ball' , 'https://www.vinted.es/brand/ball'), +(725524 , 'Balloon Chic' , 'https://www.vinted.es/brand/balloon-chic'), +(292513 , 'Ballade' , 'https://www.vinted.es/brand/ballade'), +(361577 , 'Bing' , 'https://www.vinted.es/brand/bing'), +(1493617 , 'BingoSpa' , 'https://www.vinted.es/brand/bingospa'), +(175768 , 'Bigben' , 'https://www.vinted.es/brand/bigben'), +(290474 , 'Big Headz' , 'https://www.vinted.es/brand/big-headz'), +(1911703 , 'Bighet' , 'https://www.vinted.es/brand/bighet'), +(3277 , 'Binome' , 'https://www.vinted.es/brand/binome'), +(31477 , 'Bruno Banani' , 'https://www.vinted.es/brand/bruno-banani'), +(20451 , 'Bestelle' , 'https://www.vinted.es/brand/bestelle'), +(24457 , 'Bella' , 'https://www.vinted.es/brand/bella'), +(83454 , 'Bella Ragazza' , 'https://www.vinted.es/brand/bella-ragazza'), +(284475 , 'Bella Sara' , 'https://www.vinted.es/brand/bella-sara'), +(3479 , 'Bella Jones' , 'https://www.vinted.es/brand/bella-jones'), +(174548 , 'Bellápierre' , 'https://www.vinted.es/brand/bellapierre'), +(270904 , 'Bayard Jeunesse' , 'https://www.vinted.es/brand/bayard-jeunesse'), +(287815 , 'Bayard Poche' , 'https://www.vinted.es/brand/bayard-poche'), +(63236 , 'Bacardi' , 'https://www.vinted.es/brand/bacardi'), +(444979 , 'Bazar Deluxe' , 'https://www.vinted.es/brand/bazar-deluxe'), +(287202 , 'Bright Starts' , 'https://www.vinted.es/brand/bright-starts'), +(316649 , 'Baby Boy' , 'https://www.vinted.es/brand/baby-boy'), +(206406 , 'Babybol' , 'https://www.vinted.es/brand/babybol'), +(274507 , 'Baby Boum' , 'https://www.vinted.es/brand/baby-boum'), +(301854 , 'Babyboom' , 'https://www.vinted.es/brand/babyboom'), +(275433 , 'Baby by Veti' , 'https://www.vinted.es/brand/baby-by-veti'), +(451419 , 'baby boutique' , 'https://www.vinted.es/brand/baby-boutique'), +(285989 , 'Baby Boop' , 'https://www.vinted.es/brand/baby-boop'), +(174096 , 'BARBAPAPA' , 'https://www.vinted.es/brand/barbapapa'), +(223860 , 'Balducci' , 'https://www.vinted.es/brand/balducci'), +(1270338 , 'Baldaccini' , 'https://www.vinted.es/brand/baldaccini'), +(914577 , 'Bytom' , 'https://www.vinted.es/brand/bytom'), +(321985 , 'byTiMo' , 'https://www.vinted.es/brand/bytimo'), +(13379 , 'BLOCH' , 'https://www.vinted.es/brand/bloch'), +(568292 , 'Blocco 31' , 'https://www.vinted.es/brand/blocco-31'), +(1381030 , 'Block Eleven' , 'https://www.vinted.es/brand/block-eleven'), +(486707 , 'Blowhammer' , 'https://www.vinted.es/brand/blowhammer'), +(573593 , 'Blocki' , 'https://www.vinted.es/brand/blocki'), +(4216344 , 'Block Design' , 'https://www.vinted.es/brand/block-design'), +(721774 , 'blu Chic' , 'https://www.vinted.es/brand/blu-chic'), +(61464 , 'Baldinini' , 'https://www.vinted.es/brand/baldinini'), +(95112 , 'Brooksfield' , 'https://www.vinted.es/brand/brooksfield'), +(77512 , 'Brooks' , 'https://www.vinted.es/brand/brooks'), +(154396 , 'Brooks Brothers' , 'https://www.vinted.es/brand/brooks-brothers'), +(447907 , 'Brookshire' , 'https://www.vinted.es/brand/brookshire'), +(236294 , 'Brookstone' , 'https://www.vinted.es/brand/brookstone'), +(2339299 , 'Brooks England' , 'https://www.vinted.es/brand/brooks-england'), +(22775 , 'Brooklyn' , 'https://www.vinted.es/brand/brooklyn'), +(844811 , 'Brookville' , 'https://www.vinted.es/brand/brookville'), +(83284 , 'Brooklyn Industries' , 'https://www.vinted.es/brand/brooklyn-industries'), +(240220 , 'Brook Taverner' , 'https://www.vinted.es/brand/brook-taverner'), +(8757 , 'Bay' , 'https://www.vinted.es/brand/bay'), +(256676 , 'bayton' , 'https://www.vinted.es/brand/bayton'), +(192546 , 'Bay Line' , 'https://www.vinted.es/brand/bay-line'), +(326466 , 'Bayside' , 'https://www.vinted.es/brand/bayside'), +(854349 , 'Bayon' , 'https://www.vinted.es/brand/bayon'), +(298512 , 'THE BAY FLOWER' , 'https://www.vinted.es/brand/the-bay-flower'), +(1493565 , 'Beltissimo' , 'https://www.vinted.es/brand/beltissimo'), +(288659 , 'Bruder' , 'https://www.vinted.es/brand/bruder'), +(277057 , 'Brentiny Paris' , 'https://www.vinted.es/brand/brentiny-paris'), +(1073 , 'Belle Women' , 'https://www.vinted.es/brand/belle-women'), +(4787 , 'Bella Women' , 'https://www.vinted.es/brand/bella-women'), +(175490 , 'Babibou' , 'https://www.vinted.es/brand/babibou'), +(3369 , 'Bamboo' , 'https://www.vinted.es/brand/bamboo'), +(746300 , 'Bamboom' , 'https://www.vinted.es/brand/bamboom'), +(190886 , 'Bamboo''s Fashion' , 'https://www.vinted.es/brand/bamboos-fashion'), +(392647 , 'Bamboolik' , 'https://www.vinted.es/brand/bamboolik'), +(295430 , 'Bambola' , 'https://www.vinted.es/brand/bambola'), +(212030 , 'Bambolina' , 'https://www.vinted.es/brand/bambolina'), +(39259 , 'BAMBOU' , 'https://www.vinted.es/brand/bambou'), +(794343 , 'Bambolita' , 'https://www.vinted.es/brand/bambolita'), +(41495 , 'Bamboleo' , 'https://www.vinted.es/brand/bamboleo'), +(11425 , 'C&A' , 'https://www.vinted.es/brand/ca'), +(6513723 , 'Disney X C&A' , 'https://www.vinted.es/brand/disney-x-ca'), +(3960937 , 'Happy Girls Club by C&A' , 'https://www.vinted.es/brand/happy-girls-club-by-ca'), +(97332 , 'C&S' , 'https://www.vinted.es/brand/cs'), +(4696331 , 'C&C Fashion Collection' , 'https://www.vinted.es/brand/cc-fashion-collection'), +(938336 , 'C&S Paris' , 'https://www.vinted.es/brand/cs-paris'), +(10617 , 'C&C' , 'https://www.vinted.es/brand/cc'), +(3461 , 'C&C Confidential' , 'https://www.vinted.es/brand/cc-confidential'), +(255170 , 'C&P' , 'https://www.vinted.es/brand/cp'), +(76956 , 'c&L Paris' , 'https://www.vinted.es/brand/cl-paris'), +(26 , 'Camaïeu' , 'https://www.vinted.es/brand/camaieu'), +(57 , 'Cache Cache' , 'https://www.vinted.es/brand/cache-cache'), +(6021656 , 'Converse x Chuck Taylor' , 'https://www.vinted.es/brand/converse-x-chuck-taylor'), +(5983778 , 'Converse x Comme des Garçons' , 'https://www.vinted.es/brand/converse-x-comme-des-garcons'), +(5038623 , 'Converse x Jack Purcell' , 'https://www.vinted.es/brand/converse-x-jack-purcell'), +(3312086 , 'Converse x Chiara Ferragni' , 'https://www.vinted.es/brand/converse-x-chiara-ferragni'), +(6021655 , 'Converse x Disney' , 'https://www.vinted.es/brand/converse-x-disney'), +(7432262 , 'Converse x Carhartt WIP' , 'https://www.vinted.es/brand/converse-x-carhartt-wip'), +(5969695 , 'Converse x Golf Le Fleur' , 'https://www.vinted.es/brand/converse-x-golf-le-fleur'), +(2570378 , '​Converse x JW Anderson' , 'https://www.vinted.es/brand/converse-x-jw-anderson'), +(5309549 , 'Converse x Kim Jones' , 'https://www.vinted.es/brand/converse-x-kim-jones'), +(255 , 'Calvin Klein' , 'https://www.vinted.es/brand/calvin-klein'), +(6393106 , 'Calvin Klein Jeans' , 'https://www.vinted.es/brand/calvin-klein-jeans'), +(6098914 , 'Calvin Klein Performance' , 'https://www.vinted.es/brand/calvin-klein-performance'), +(364278 , 'Cool Club' , 'https://www.vinted.es/brand/cool-club'), +(2615 , 'Celio' , 'https://www.vinted.es/brand/celio'), +(5795074 , 'Celio Club' , 'https://www.vinted.es/brand/celio-club'), +(167726 , 'CELOP' , 'https://www.vinted.es/brand/celop'), +(1443 , 'Céline' , 'https://www.vinted.es/brand/celine'), +(809512 , 'CELOPMAN' , 'https://www.vinted.es/brand/celopman'), +(297888 , 'CelopWoman' , 'https://www.vinted.es/brand/celopwoman'), +(166180 , 'Celina' , 'https://www.vinted.es/brand/celina'), +(186720 , 'Celia' , 'https://www.vinted.es/brand/celia'), +(565290 , 'Cello' , 'https://www.vinted.es/brand/cello'), +(1131068 , 'CELLOPHANE' , 'https://www.vinted.es/brand/cellophane'), +(7835 , 'Catimini' , 'https://www.vinted.es/brand/catimini'), +(7973 , 'Champion' , 'https://www.vinted.es/brand/champion'), +(5803381 , 'Champion x NBA' , 'https://www.vinted.es/brand/champion-x-nba'), +(4875318 , 'Supreme x Champion' , 'https://www.vinted.es/brand/supreme-x-champion'), +(6671055 , 'Champion Rochester' , 'https://www.vinted.es/brand/champion-rochester'), +(6166096 , 'Champion reverse weave' , 'https://www.vinted.es/brand/champion-reverse-weave'), +(1808144 , 'Off-White x Champion' , 'https://www.vinted.es/brand/off-white-x-champion'), +(8641743 , 'Champions of the World' , 'https://www.vinted.es/brand/champions-of-the-world'), +(4607962 , 'Rick Owens X Champion' , 'https://www.vinted.es/brand/rick-owens-x-champion'), +(23141 , 'CROPP' , 'https://www.vinted.es/brand/cropp'), +(198118 , 'CROOP' , 'https://www.vinted.es/brand/croop'), +(492334 , 'Crep Protect' , 'https://www.vinted.es/brand/crep-protect'), +(184768 , 'Chicco' , 'https://www.vinted.es/brand/chicco'), +(839209 , 'Chic & Pop' , 'https://www.vinted.es/brand/chic-pop'), +(14749 , 'Chicoree' , 'https://www.vinted.es/brand/chicoree'), +(190034 , 'Chico' , 'https://www.vinted.es/brand/chico'), +(143978 , 'Chico´s' , 'https://www.vinted.es/brand/chicos'), +(155424 , 'CHICCA' , 'https://www.vinted.es/brand/chicca'), +(298784 , 'Chic & Chic' , 'https://www.vinted.es/brand/chic-chic'), +(471531 , 'Chicosoleil' , 'https://www.vinted.es/brand/chicosoleil'), +(366504 , 'CHICC' , 'https://www.vinted.es/brand/chicc'), +(174174 , 'Chick on a Mission' , 'https://www.vinted.es/brand/chick-on-a-mission'), +(262 , 'Creeks' , 'https://www.vinted.es/brand/creeks'), +(205684 , 'Creenstone' , 'https://www.vinted.es/brand/creenstone'), +(343 , 'Clockhouse' , 'https://www.vinted.es/brand/clockhouse'), +(5011 , 'Calzedonia' , 'https://www.vinted.es/brand/calzedonia'), +(362 , 'Carhartt' , 'https://www.vinted.es/brand/carhartt'), +(872289 , 'Carhartt WIP' , 'https://www.vinted.es/brand/carhartt-wip'), +(6478418 , 'Carhartt x Patta' , 'https://www.vinted.es/brand/carhartt-x-patta'), +(9743508 , 'Carhartt WIP X Stüssy' , 'https://www.vinted.es/brand/carhartt-wip-x-stussy'), +(3636251 , 'Carhartt x Neighborhood' , 'https://www.vinted.es/brand/carhartt-x-neighborhood'), +(7489656 , 'Carhartt WIP x Civilist' , 'https://www.vinted.es/brand/carhartt-wip-x-civilist'), +(5715441 , 'Nike x Carhartt' , 'https://www.vinted.es/brand/nike-x-carhartt'), +(7432266 , 'Slam Jam X Carhartt WIP' , 'https://www.vinted.es/brand/slam-jam-x-carhartt-wip'), +(461 , 'Cyrillus' , 'https://www.vinted.es/brand/cyrillus'), +(534 , 'Clarks' , 'https://www.vinted.es/brand/clarks'), +(76986 , 'Clarks Originals' , 'https://www.vinted.es/brand/clarks-originals'), +(210722 , 'Clarosa' , 'https://www.vinted.es/brand/clarosa'), +(193494 , 'Clarys' , 'https://www.vinted.es/brand/clarys'), +(174068 , 'Clarisonic' , 'https://www.vinted.es/brand/clarisonic'), +(12429 , 'Clarisse' , 'https://www.vinted.es/brand/clarisse'), +(4690232 , 'CLARIS VIROT' , 'https://www.vinted.es/brand/claris-virot'), +(1595970 , 'Claresa' , 'https://www.vinted.es/brand/claresa'), +(6292709 , 'Clarke & Clarke' , 'https://www.vinted.es/brand/clarke-clarke'), +(2383442 , 'Clarissa Hulse' , 'https://www.vinted.es/brand/clarissa-hulse'), +(238 , 'Comptoir des Cotonniers' , 'https://www.vinted.es/brand/comptoir-des-cotonniers'), +(19535 , 'Comptoir de Cotonniers' , 'https://www.vinted.es/brand/comptoir-de-cotonniers'), +(11943 , 'Crocs' , 'https://www.vinted.es/brand/crocs'), +(5788871 , 'Crocs x Beams' , 'https://www.vinted.es/brand/crocs-x-beams'), +(36125 , 'Crossby' , 'https://www.vinted.es/brand/crossby'), +(67636 , 'cross' , 'https://www.vinted.es/brand/cross'), +(659996 , 'Croci' , 'https://www.vinted.es/brand/croci'), +(48901 , 'Crossways' , 'https://www.vinted.es/brand/crossways'), +(350122 , 'Crocodile' , 'https://www.vinted.es/brand/crocodile'), +(442454 , 'Crocodile Creek' , 'https://www.vinted.es/brand/crocodile-creek'), +(270539 , 'Crosshatch' , 'https://www.vinted.es/brand/crosshatch'), +(322975 , 'Cross Jeans' , 'https://www.vinted.es/brand/cross-jeans'), +(184952 , 'Coccodrillo' , 'https://www.vinted.es/brand/coccodrillo'), +(40883 , 'Costes' , 'https://www.vinted.es/brand/costes'), +(2029 , 'COS' , 'https://www.vinted.es/brand/cos'), +(1839 , 'Cosmoparis' , 'https://www.vinted.es/brand/cosmoparis'), +(296822 , 'Costes' , 'https://www.vinted.es/brand/kostes'), +(14101 , 'Costume National' , 'https://www.vinted.es/brand/costume-national'), +(3057 , 'Cosmo' , 'https://www.vinted.es/brand/cosmo'), +(160102 , 'Cosmoda' , 'https://www.vinted.es/brand/cosmoda'), +(352307 , 'Cost:bart' , 'https://www.vinted.es/brand/costbart'), +(7851 , 'Cosmopolitan' , 'https://www.vinted.es/brand/cosmopolitan'), +(197714 , 'Costa' , 'https://www.vinted.es/brand/costa'), +(72 , 'Caroll' , 'https://www.vinted.es/brand/caroll'), +(36345 , 'Carolina Herrera' , 'https://www.vinted.es/brand/carolina-herrera'), +(46631 , 'Caroline Biss' , 'https://www.vinted.es/brand/caroline-biss'), +(2549 , 'Carol' , 'https://www.vinted.es/brand/carol'), +(40529 , 'Carolina Boix' , 'https://www.vinted.es/brand/carolina-boix'), +(6717 , 'Carole Richard' , 'https://www.vinted.es/brand/carole-richard'), +(30475 , 'Caroline Rohmer' , 'https://www.vinted.es/brand/caroline-rohmer'), +(24623 , 'Carolina' , 'https://www.vinted.es/brand/carolina'), +(1086418 , 'CH Carolina Herrera' , 'https://www.vinted.es/brand/ch-carolina-herrera'), +(291150 , 'Caroline' , 'https://www.vinted.es/brand/caroline'), +(7009 , 'CUIR' , 'https://www.vinted.es/brand/cuir'), +(17441 , 'Cuiropolis' , 'https://www.vinted.es/brand/cuiropolis'), +(2380444 , 'Cuir Du Monde' , 'https://www.vinted.es/brand/cuir-du-monde'), +(349309 , 'Cuero' , 'https://www.vinted.es/brand/cuero'), +(1108545 , 'Cuore Matto' , 'https://www.vinted.es/brand/cuore-matto'), +(459067 , 'Curve' , 'https://www.vinted.es/brand/curve'), +(1255076 , 'Curvy' , 'https://www.vinted.es/brand/curvy'), +(569396 , 'Cuore' , 'https://www.vinted.es/brand/cuore'), +(714046 , 'Current/Elliott' , 'https://www.vinted.es/brand/currentelliott'), +(109328 , 'Curling Collection' , 'https://www.vinted.es/brand/curling-collection'), +(91930 , 'Crivit' , 'https://www.vinted.es/brand/crivit'), +(7161146 , 'Crivit PRO' , 'https://www.vinted.es/brand/crivit-pro'), +(67 , 'Cop Copine' , 'https://www.vinted.es/brand/cop-copine'), +(39049 , 'Calliope' , 'https://www.vinted.es/brand/calliope'), +(5879 , 'Cortefiel' , 'https://www.vinted.es/brand/cortefiel'), +(183798 , 'Carter''s' , 'https://www.vinted.es/brand/carters'), +(2383 , 'CoolCat' , 'https://www.vinted.es/brand/coolcat'), +(16905 , 'Cool Attitude' , 'https://www.vinted.es/brand/cool-attitude'), +(434092 , 'COOLWATER' , 'https://www.vinted.es/brand/coolwater'), +(2027 , 'Chaussea' , 'https://www.vinted.es/brand/chaussea'), +(14453 , 'Chauss''expo' , 'https://www.vinted.es/brand/chaussexpo'), +(67518 , 'Chauss et Vous' , 'https://www.vinted.es/brand/chauss-et-vous'), +(42 , 'Claire''s' , 'https://www.vinted.es/brand/claires'), +(71296 , 'Coast' , 'https://www.vinted.es/brand/coast'), +(324470 , 'Coast To Coast' , 'https://www.vinted.es/brand/coast-to-coast'), +(167294 , 'Coast Weber & Ahaus' , 'https://www.vinted.es/brand/coast-weber-ahaus'), +(284953 , 'Coastland' , 'https://www.vinted.es/brand/coastland'), +(1088744 , 'Coastguard' , 'https://www.vinted.es/brand/coastguard'), +(178382 , 'Coastal Scents' , 'https://www.vinted.es/brand/coastal-scents'), +(679740 , 'Coastal' , 'https://www.vinted.es/brand/coastal'), +(19539 , 'carpisa' , 'https://www.vinted.es/brand/carpisa'), +(2271845 , 'CARPISA VERA PELLE' , 'https://www.vinted.es/brand/carpisa-vera-pelle'), +(304326 , 'Carisal Fashion' , 'https://www.vinted.es/brand/carisal-fashion'), +(529133 , 'Coster Copenhagen' , 'https://www.vinted.es/brand/coster-copenhagen'), +(6059 , 'Costello' , 'https://www.vinted.es/brand/costello'), +(288473 , 'Contessa' , 'https://www.vinted.es/brand/contessa'), +(1283289 , 'Comtessa' , 'https://www.vinted.es/brand/comtessa'), +(452870 , 'Cosies' , 'https://www.vinted.es/brand/cosies'), +(12685 , 'Canda' , 'https://www.vinted.es/brand/canda'), +(300186 , 'Canda Premium' , 'https://www.vinted.es/brand/canda-premium'), +(765 , 'Zadig & Voltaire' , 'https://www.vinted.es/brand/zadig-voltaire'), +(163888 , 'Candida' , 'https://www.vinted.es/brand/candida'), +(284869 , 'Canada House' , 'https://www.vinted.es/brand/canada-house'), +(2878348 , 'Candide Baby' , 'https://www.vinted.es/brand/candide-baby'), +(176440 , 'Canari Baby' , 'https://www.vinted.es/brand/canari-baby'), +(17161 , 'Columbia' , 'https://www.vinted.es/brand/columbia'), +(538065 , 'Columbia Pictures' , 'https://www.vinted.es/brand/columbia-pictures'), +(389546 , 'Columbia TriStar' , 'https://www.vinted.es/brand/columbia-tristar'), +(9801 , 'Colombia' , 'https://www.vinted.es/brand/colombia'), +(337002 , 'Columbine' , 'https://www.vinted.es/brand/columbine'), +(481 , 'Chanel' , 'https://www.vinted.es/brand/chanel'), +(8865975 , 'Chanel boutique' , 'https://www.vinted.es/brand/chanel-boutique'), +(49653 , 'Chantelle' , 'https://www.vinted.es/brand/chantelle'), +(151328 , 'Chatelles' , 'https://www.vinted.es/brand/chatelles'), +(185828 , 'Chan Luu' , 'https://www.vinted.es/brand/chan-luu'), +(803149 , 'chanex' , 'https://www.vinted.es/brand/chanex'), +(4111390 , 'Chantelle Tungatt' , 'https://www.vinted.es/brand/chantelle-tungatt'), +(117 , 'Claudie Pierlot' , 'https://www.vinted.es/brand/claudie-pierlot'), +(1111781 , 'Claudie Perlot' , 'https://www.vinted.es/brand/claudie-perlot'), +(22847 , 'Conbipel' , 'https://www.vinted.es/brand/conbipel'), +(2749 , 'Cecil' , 'https://www.vinted.es/brand/cecil'), +(67522 , 'Cecilia Classics' , 'https://www.vinted.es/brand/cecilia-classics'), +(202332 , 'Cecilia Fashion' , 'https://www.vinted.es/brand/cecilia-fashion'), +(328199 , 'Cécilia Girl Style' , 'https://www.vinted.es/brand/cecilia-girl-style'), +(41617 , 'CECILE' , 'https://www.vinted.es/brand/cecile'), +(1004132 , 'Cecilia Benetti' , 'https://www.vinted.es/brand/cecilia-benetti'), +(6023455 , 'Cecilia' , 'https://www.vinted.es/brand/cecilia'), +(288971 , 'Cécile D''orges' , 'https://www.vinted.es/brand/cecile-dorges'), +(482539 , 'Cécile WANG' , 'https://www.vinted.es/brand/cecile-wang'), +(23003 , 'Cécile & Jeanne' , 'https://www.vinted.es/brand/cecile-jeanne'), +(6151 , 'Captain Tortue' , 'https://www.vinted.es/brand/captain-tortue'), +(369 , 'Chipie' , 'https://www.vinted.es/brand/chipie'), +(246132 , 'Chips & Cheps' , 'https://www.vinted.es/brand/chips-cheps'), +(269800 , 'Chippewa' , 'https://www.vinted.es/brand/chippewa'), +(588724 , 'chip and pepper' , 'https://www.vinted.es/brand/chip-and-pepper'), +(13053 , 'cks' , 'https://www.vinted.es/brand/cks'), +(113716 , 'CKH' , 'https://www.vinted.es/brand/ckh'), +(846199 , 'CKH Clockhouse' , 'https://www.vinted.es/brand/ckh-clockhouse'), +(271997 , 'CKF' , 'https://www.vinted.es/brand/ckf'), +(157470 , 'CKM' , 'https://www.vinted.es/brand/ckm'), +(174998 , 'Cadet Rousselle' , 'https://www.vinted.es/brand/cadet-rousselle'), +(1537 , 'Complices' , 'https://www.vinted.es/brand/complices'), +(46109 , 'Complices Eagle' , 'https://www.vinted.es/brand/complices-eagle'), +(4115 , 'Complice' , 'https://www.vinted.es/brand/complice'), +(3399 , 'Cubus' , 'https://www.vinted.es/brand/cubus'), +(39793 , 'Cedar Wood State' , 'https://www.vinted.es/brand/cedar-wood-state'), +(3 , 'Pimkie' , 'https://www.vinted.es/brand/pimkie'), +(24491 , 'Collection' , 'https://www.vinted.es/brand/collection'), +(49731 , 'Collection U' , 'https://www.vinted.es/brand/collection-u'), +(3481 , 'Miss RJ' , 'https://www.vinted.es/brand/miss-rj'), +(318286 , 'Collection IRL' , 'https://www.vinted.es/brand/collection-irl'), +(135766 , 'Collection Privée' , 'https://www.vinted.es/brand/collection-privee'), +(54509 , 'Collection Limitee' , 'https://www.vinted.es/brand/collection-limitee'), +(473305 , 'Collections' , 'https://www.vinted.es/brand/collections'), +(338923 , 'Collection L' , 'https://www.vinted.es/brand/collection-l'), +(300735 , 'Collection Chalice' , 'https://www.vinted.es/brand/collection-chalice'), +(681578 , 'Collusion' , 'https://www.vinted.es/brand/collusion'), +(178698 , 'Coque' , 'https://www.vinted.es/brand/coque'), +(112784 , 'COQUETTE' , 'https://www.vinted.es/brand/coquette'), +(95720 , 'Coquelicot' , 'https://www.vinted.es/brand/coquelicot'), +(168434 , 'Coque Terra' , 'https://www.vinted.es/brand/coque-terra'), +(178 , 'Miss coquine' , 'https://www.vinted.es/brand/miss-coquine'), +(316027 , 'Coq En Pate' , 'https://www.vinted.es/brand/coq-en-pate'), +(433698 , 'Conquerant' , 'https://www.vinted.es/brand/conquerant'), +(530671 , 'Coqui' , 'https://www.vinted.es/brand/coqui'), +(7371 , 'Colours of the World' , 'https://www.vinted.es/brand/colours-of-the-world'), +(265637 , 'CARRY' , 'https://www.vinted.es/brand/carry'), +(540047 , 'Carryboo' , 'https://www.vinted.es/brand/carryboo'), +(186802 , 'Carry Allen' , 'https://www.vinted.es/brand/carry-allen'), +(822959 , 'CARRY KIDS' , 'https://www.vinted.es/brand/carry-kids'), +(840535 , 'Carry Formal' , 'https://www.vinted.es/brand/carry-formal'), +(1932435 , 'Carry Casual' , 'https://www.vinted.es/brand/carry-casual'), +(821618 , 'Carry Young' , 'https://www.vinted.es/brand/carry-young'), +(3727 , 'Carrefour' , 'https://www.vinted.es/brand/carrefour'), +(669 , 'Carrera' , 'https://www.vinted.es/brand/carrera'), +(265079 , 'Carrement Beau' , 'https://www.vinted.es/brand/carrement-beau'), +(95158 , 'Comma' , 'https://www.vinted.es/brand/comma'), +(238310 , 'Commander' , 'https://www.vinted.es/brand/commander'), +(270318 , 'Commando' , 'https://www.vinted.es/brand/commando'), +(5807896 , 'comma casual Identity' , 'https://www.vinted.es/brand/comma-casual-identity'), +(139808 , 'COLMAR' , 'https://www.vinted.es/brand/colmar'), +(16327 , 'Compania Fantastica' , 'https://www.vinted.es/brand/compania-fantastica'), +(209548 , 'Compagnia Italiana' , 'https://www.vinted.es/brand/compagnia-italiana'), +(56974 , 'Comme des Garçons' , 'https://www.vinted.es/brand/comme-des-garcons'), +(27215 , 'COMME des FUCKDOWN®' , 'https://www.vinted.es/brand/comme-des-fuckdown'), +(53919 , 'Compagnie des Aventures' , 'https://www.vinted.es/brand/compagnie-des-aventures'), +(387432 , 'Carrefour Home' , 'https://www.vinted.es/brand/carrefour-home'), +(311091 , 'Cover' , 'https://www.vinted.es/brand/cover'), +(103448 , 'Coveri' , 'https://www.vinted.es/brand/coveri'), +(174254 , 'Coverguard' , 'https://www.vinted.es/brand/coverguard'), +(625408 , 'Coveri Collection' , 'https://www.vinted.es/brand/coveri-collection'), +(556264 , 'Coveri World' , 'https://www.vinted.es/brand/coveri-world'), +(505531 , 'Cover Store' , 'https://www.vinted.es/brand/cover-store'), +(174134 , 'Covergirl' , 'https://www.vinted.es/brand/covergirl'), +(545689 , 'Covert' , 'https://www.vinted.es/brand/covert'), +(6902314 , 'Covert Underwear' , 'https://www.vinted.es/brand/covert-underwear'), +(2787 , 'Cherokee' , 'https://www.vinted.es/brand/cherokee'), +(183294 , 'CC Collection' , 'https://www.vinted.es/brand/cc-collection'), +(336690 , 'C&C California' , 'https://www.vinted.es/brand/cc-california'), +(402862 , 'CCC' , 'https://www.vinted.es/brand/ccc'), +(18595 , 'CC Fashion' , 'https://www.vinted.es/brand/cc-fashion'), +(268595 , 'CCNT' , 'https://www.vinted.es/brand/ccnt'), +(158174 , 'CCM' , 'https://www.vinted.es/brand/ccm'), +(105192 , 'CCDK' , 'https://www.vinted.es/brand/ccdk'), +(143390 , 'Colloseum' , 'https://www.vinted.es/brand/colloseum'), +(40967 , 'Cath Kidston' , 'https://www.vinted.es/brand/cath-kidston'), +(5531077 , 'Cath Kidston x Disney' , 'https://www.vinted.es/brand/cath-kidston-x-disney'), +(12205 , 'Chevignon' , 'https://www.vinted.es/brand/chevignon'), +(25057 , 'Cargo' , 'https://www.vinted.es/brand/cargo'), +(315748 , 'Carlo Pignatelli' , 'https://www.vinted.es/brand/carlo-pignatelli'), +(10299 , 'Carbone' , 'https://www.vinted.es/brand/carbone'), +(80038 , 'Cartoon' , 'https://www.vinted.es/brand/cartoon'), +(6815 , 'Christine Laure' , 'https://www.vinted.es/brand/christine-laure'), +(15139 , 'Coca-Cola' , 'https://www.vinted.es/brand/coca-cola'), +(66000 , 'Camomilla' , 'https://www.vinted.es/brand/camomilla'), +(536 , 'Camomilla Milano' , 'https://www.vinted.es/brand/camomilla-milano'), +(787316 , 'Camomilla Italia' , 'https://www.vinted.es/brand/camomilla-italia'), +(2113 , 'Chloé' , 'https://www.vinted.es/brand/chloe'), +(290597 , 'Chloé Stora' , 'https://www.vinted.es/brand/chloe-stora'), +(30859 , 'Cameo Rose' , 'https://www.vinted.es/brand/cameo-rose'), +(271930 , 'crane' , 'https://www.vinted.es/brand/crane'), +(5827146 , 'Crane Sports' , 'https://www.vinted.es/brand/crane-sports'), +(333527 , 'Cranium' , 'https://www.vinted.es/brand/cranium'), +(179358 , 'Craie' , 'https://www.vinted.es/brand/craie'), +(219714 , 'Cranberry' , 'https://www.vinted.es/brand/cranberry'), +(1780969 , 'Cranio Creations' , 'https://www.vinted.es/brand/cranio-creations'), +(959660 , 'Cratex' , 'https://www.vinted.es/brand/cratex'), +(1493474 , 'Crämer & Co' , 'https://www.vinted.es/brand/cramer-co'), +(30609 , 'CMP' , 'https://www.vinted.es/brand/cmp'), +(427 , 'C''M Paris' , 'https://www.vinted.es/brand/cm-paris'), +(49969 , 'C.M.P.55' , 'https://www.vinted.es/brand/cmp55'), +(3001 , 'CM' , 'https://www.vinted.es/brand/cm'), +(277182 , 'C''Mélodie' , 'https://www.vinted.es/brand/cmelodie'), +(266166 , 'CM Mode' , 'https://www.vinted.es/brand/cm-mode'), +(311355 , 'CMS' , 'https://www.vinted.es/brand/cms'), +(235594 , 'CMF' , 'https://www.vinted.es/brand/cmf'), +(302917 , 'CMD' , 'https://www.vinted.es/brand/cmd'), +(858423 , 'CMMN SWDN' , 'https://www.vinted.es/brand/cmmn-swdn'), +(365723 , 'Cars Jeans' , 'https://www.vinted.es/brand/cars-jeans'), +(6045 , 'Carvela' , 'https://www.vinted.es/brand/carvela'), +(322392 , 'Carmela' , 'https://www.vinted.es/brand/carmela'), +(325407 , 'Care Label' , 'https://www.vinted.es/brand/care-label'), +(683441 , 'Carmela Rosso' , 'https://www.vinted.es/brand/carmela-rosso'), +(330028 , 'Carverace' , 'https://www.vinted.es/brand/carverace'), +(6721 , 'Coach' , 'https://www.vinted.es/brand/coach'), +(5886555 , 'H&M x Coachella' , 'https://www.vinted.es/brand/hm-x-coachella'), +(2231219 , 'Coach and Four' , 'https://www.vinted.es/brand/coach-and-four'), +(7489644 , 'BAPE x Coach' , 'https://www.vinted.es/brand/bape-x-coach'), +(301994 , 'Couchel' , 'https://www.vinted.es/brand/couchel'), +(413899 , 'Cochonou' , 'https://www.vinted.es/brand/cochonou'), +(425141 , 'Conchisa' , 'https://www.vinted.es/brand/conchisa'), +(466379 , 'Couche Tot' , 'https://www.vinted.es/brand/couche-tot'), +(2995199 , 'Cocho' , 'https://www.vinted.es/brand/cocho'), +(63482 , 'Chi Chi London' , 'https://www.vinted.es/brand/chi-chi-london'), +(2575 , 'CASIO' , 'https://www.vinted.es/brand/casio'), +(5920301 , 'CASIO G-SHOCK' , 'https://www.vinted.es/brand/casio-g-shock'), +(8843787 , 'BEAMS x CASIO' , 'https://www.vinted.es/brand/beams-x-casio'), +(345705 , 'CASCO' , 'https://www.vinted.es/brand/casco'), +(4773 , 'Casino' , 'https://www.vinted.es/brand/casino'), +(337574 , 'Castorland' , 'https://www.vinted.es/brand/castorland'), +(188274 , 'Castorama' , 'https://www.vinted.es/brand/castorama'), +(288098 , 'Carioca' , 'https://www.vinted.es/brand/carioca'), +(152674 , 'Cassiopee' , 'https://www.vinted.es/brand/cassiopee'), +(845504 , 'Casilda y Jimena' , 'https://www.vinted.es/brand/casilda-y-jimena'), +(46345 , 'CASA' , 'https://www.vinted.es/brand/casa'), +(2349 , 'Casadei' , 'https://www.vinted.es/brand/casadei'), +(46009 , 'Casablanca' , 'https://www.vinted.es/brand/casablanca'), +(185152 , 'Casa Moda' , 'https://www.vinted.es/brand/casa-moda'), +(5827718 , 'Casa das Peles' , 'https://www.vinted.es/brand/casa-das-peles'), +(157232 , 'CASANOVA' , 'https://www.vinted.es/brand/casanova'), +(47107 , 'CASAGRANDE' , 'https://www.vinted.es/brand/casagrande'), +(212016 , 'Casall' , 'https://www.vinted.es/brand/casall'), +(349935 , 'CASAS' , 'https://www.vinted.es/brand/casas'), +(341051 , 'Casamia' , 'https://www.vinted.es/brand/casamia'), +(7088403 , 'Carolina Herrera New York' , 'https://www.vinted.es/brand/carolina-herrera-new-york'), +(8833911 , 'Carolina Herrera Beauty' , 'https://www.vinted.es/brand/carolina-herrera-beauty'), +(493833 , 'Cardigan' , 'https://www.vinted.es/brand/cardigan'), +(6661 , 'CASSIS' , 'https://www.vinted.es/brand/cassis'), +(22333 , 'Cassis Collection' , 'https://www.vinted.es/brand/cassis-collection'), +(28357 , 'Cassis Côte D''azur' , 'https://www.vinted.es/brand/cassis-cote-dazur'), +(58858 , 'Cassina' , 'https://www.vinted.es/brand/cassina'), +(357894 , 'Cassini' , 'https://www.vinted.es/brand/cassini'), +(1649602 , 'Cassi' , 'https://www.vinted.es/brand/cassi'), +(6607 , 'Camper' , 'https://www.vinted.es/brand/camper'), +(2054651 , 'CamperLab' , 'https://www.vinted.es/brand/camperlab'), +(233280 , 'Campri' , 'https://www.vinted.es/brand/campri'), +(204834 , 'Cambérabéro' , 'https://www.vinted.es/brand/camberabero'), +(385787 , 'Camera' , 'https://www.vinted.es/brand/camera'), +(837825 , 'Campari' , 'https://www.vinted.es/brand/campari'), +(240592 , 'Cape Robbin' , 'https://www.vinted.es/brand/cape-robbin'), +(346861 , 'Caperlan' , 'https://www.vinted.es/brand/caperlan'), +(6107068 , 'Carrera Jeans' , 'https://www.vinted.es/brand/carrera-jeans'), +(906548 , 'Carrera y Carrera' , 'https://www.vinted.es/brand/carrera-y-carrera'), +(72124 , 'Carre Rouge' , 'https://www.vinted.es/brand/carre-rouge'), +(378804 , 'Carrere' , 'https://www.vinted.es/brand/carrere'), +(979808 , 'Cider' , 'https://www.vinted.es/brand/cider'), +(280364 , 'Cicerone' , 'https://www.vinted.es/brand/cicerone'), +(33723 , 'Cicero' , 'https://www.vinted.es/brand/cicero'), +(44861 , 'Cinderella' , 'https://www.vinted.es/brand/cinderella'), +(5201871 , 'Colmar Originals' , 'https://www.vinted.es/brand/colmar-originals'), +(928202 , 'COLLAR' , 'https://www.vinted.es/brand/collar'), +(73952 , 'C.P. Company' , 'https://www.vinted.es/brand/cp-company'), +(173434 , 'Cotton Club' , 'https://www.vinted.es/brand/cotton-club'), +(6033 , 'Catwalk' , 'https://www.vinted.es/brand/catwalk'), +(2795113 , 'Catwalk Junkie' , 'https://www.vinted.es/brand/catwalk-junkie'), +(449 , 'Coccinelle' , 'https://www.vinted.es/brand/coccinelle'), +(322903 , 'Cococinelle' , 'https://www.vinted.es/brand/cococinelle'), +(6553 , 'CafèNoir' , 'https://www.vinted.es/brand/cafenoir'), +(6219505 , 'C.F.K. Country For Kids' , 'https://www.vinted.es/brand/cfk-country-for-kids'), +(146 , 'Cheap Monday' , 'https://www.vinted.es/brand/cheap-monday'), +(4269 , 'Christian Louboutin' , 'https://www.vinted.es/brand/christian-louboutin'), +(17919 , 'Closed' , 'https://www.vinted.es/brand/closed'), +(4071 , 'Closer By Chaussea' , 'https://www.vinted.es/brand/closer-by-chaussea'), +(31017 , 'Closet' , 'https://www.vinted.es/brand/closet'), +(22925 , 'CLO&SE' , 'https://www.vinted.es/brand/close'), +(309218 , 'Closet London' , 'https://www.vinted.es/brand/closet-london'), +(347612 , 'Close-Up' , 'https://www.vinted.es/brand/close-up'), +(347035 , 'Close Parent' , 'https://www.vinted.es/brand/close-parent'), +(391044 , 'CLOSET BY LO' , 'https://www.vinted.es/brand/closet-by-lo'), +(2858857 , 'closet shop' , 'https://www.vinted.es/brand/closet-shop'), +(3036449 , 'Corteiz' , 'https://www.vinted.es/brand/corteiz'), +(7488898 , 'Corteiz x Central Cee' , 'https://www.vinted.es/brand/corteiz-x-central-cee'), +(14663 , 'El Corte Inglés' , 'https://www.vinted.es/brand/el-corte-ingles'), +(3133 , 'Caprice de Fille' , 'https://www.vinted.es/brand/caprice-de-fille'), +(9473 , 'Caprice de Filles' , 'https://www.vinted.es/brand/caprice-de-filles'), +(37833 , 'Caprices De Filles' , 'https://www.vinted.es/brand/caprices-de-filles'), +(174192 , 'Cars' , 'https://www.vinted.es/brand/cars'), +(361500 , 'Car Shoe' , 'https://www.vinted.es/brand/car-shoe'), +(6847310 , 'Carsicko' , 'https://www.vinted.es/brand/carsicko'), +(290838 , 'Cybex' , 'https://www.vinted.es/brand/cybex'), +(1421 , 'Cyberdog' , 'https://www.vinted.es/brand/cyberdog'), +(57742 , 'Cyberg Wear' , 'https://www.vinted.es/brand/cyberg-wear'), +(284071 , 'Cybele' , 'https://www.vinted.es/brand/cybele'), +(54435 , 'Cyberg' , 'https://www.vinted.es/brand/cyberg'), +(1143967 , 'Cyberjammies' , 'https://www.vinted.es/brand/cyberjammies'), +(385358 , 'Chapter Young' , 'https://www.vinted.es/brand/chapter-young'), +(470 , 'Cacharel' , 'https://www.vinted.es/brand/cacharel'), +(395 , 'CHATTAWAK' , 'https://www.vinted.es/brand/chattawak'), +(4143 , 'Coton' , 'https://www.vinted.es/brand/coton'), +(464978 , 'Cotone' , 'https://www.vinted.es/brand/cotone'), +(3837 , 'Coton Du Monde' , 'https://www.vinted.es/brand/coton-du-monde'), +(320493 , 'Cotonella' , 'https://www.vinted.es/brand/cotonella'), +(92358 , 'Coton Doux' , 'https://www.vinted.es/brand/coton-doux'), +(271592 , 'COTON BLANC' , 'https://www.vinted.es/brand/coton-blanc'), +(1616592 , 'Coton Colors' , 'https://www.vinted.es/brand/coton-colors'), +(341236 , 'Cotton & Silk' , 'https://www.vinted.es/brand/cotton-silk'), +(26479 , 'Coconuda' , 'https://www.vinted.es/brand/coconuda'), +(10121 , 'Cotton On' , 'https://www.vinted.es/brand/cotton-on'), +(5839693 , 'Cotton On Body' , 'https://www.vinted.es/brand/cotton-on-body'), +(6174148 , 'Cotton on curve' , 'https://www.vinted.es/brand/cotton-on-curve'), +(5987 , 'Clarins' , 'https://www.vinted.es/brand/clarins'), +(5831075 , 'Clarin Shavien' , 'https://www.vinted.es/brand/clarin-shavien'), +(366336 , 'Clarina' , 'https://www.vinted.es/brand/clarina'), +(415584 , 'CLARINA collection' , 'https://www.vinted.es/brand/clarina-collection'), +(93690 , 'Charles Vögele' , 'https://www.vinted.es/brand/charles-vogele'), +(20557 , 'Colline' , 'https://www.vinted.es/brand/colline'), +(2271844 , 'colline by verbaudet' , 'https://www.vinted.es/brand/colline-by-verbaudet'), +(346 , 'Coline' , 'https://www.vinted.es/brand/coline'), +(113848 , 'Collins' , 'https://www.vinted.es/brand/collins'), +(1687314 , 'Collina Strada' , 'https://www.vinted.es/brand/collina-strada'), +(1493327 , 'Cosline' , 'https://www.vinted.es/brand/cosline'), +(279707 , 'charanga' , 'https://www.vinted.es/brand/charanga'), +(9947 , 'Club L' , 'https://www.vinted.es/brand/club-l'), +(426802 , 'CLUB London' , 'https://www.vinted.es/brand/club-london'), +(539916 , 'Club L London' , 'https://www.vinted.es/brand/club-l-london'), +(5405 , 'Club Med' , 'https://www.vinted.es/brand/club-med'), +(52053 , 'Club Monaco' , 'https://www.vinted.es/brand/club-monaco'), +(220868 , 'Club JU' , 'https://www.vinted.es/brand/club-ju'), +(146678 , 'Club by GEMO' , 'https://www.vinted.es/brand/club-by-gemo'), +(295065 , 'clueless' , 'https://www.vinted.es/brand/clueless'), +(818592 , 'Club Voltaire' , 'https://www.vinted.es/brand/club-voltaire'), +(268716 , 'CLUB DES SPORTS' , 'https://www.vinted.es/brand/club-des-sports'), +(454063 , 'Clayton' , 'https://www.vinted.es/brand/clayton'), +(7010390 , 'Candide Expert' , 'https://www.vinted.es/brand/candide-expert'), +(7006187 , 'Candide' , 'https://www.vinted.es/brand/candide'), +(6959759 , 'Candide Collection' , 'https://www.vinted.es/brand/candide-collection'), +(120326 , 'Craft' , 'https://www.vinted.es/brand/craft'), +(339572 , 'Craft Sensations' , 'https://www.vinted.es/brand/craft-sensations'), +(74248 , 'CRAFTED' , 'https://www.vinted.es/brand/crafted'), +(402743 , 'Crafted Goods' , 'https://www.vinted.es/brand/crafted-goods'), +(185584 , 'Croft & Barrow' , 'https://www.vinted.es/brand/croft-barrow'), +(309303 , 'Cratoni' , 'https://www.vinted.es/brand/cratoni'), +(283735 , 'Crabtree & Evelyn' , 'https://www.vinted.es/brand/crabtree-evelyn'), +(4958802 , 'Crufts' , 'https://www.vinted.es/brand/crufts'), +(25165 , 'Colin''s' , 'https://www.vinted.es/brand/colins'), +(302520 , 'Colin Colline' , 'https://www.vinted.es/brand/colin-colline'), +(6029 , 'Colisée de Sacha' , 'https://www.vinted.es/brand/colisee-de-sacha'), +(74580 , 'CORINE' , 'https://www.vinted.es/brand/corine'), +(310619 , 'COLIRES' , 'https://www.vinted.es/brand/colires'), +(178432 , 'Corine de Farme' , 'https://www.vinted.es/brand/corine-de-farme'), +(8335 , 'Colin Stuart' , 'https://www.vinted.es/brand/colin-stuart'), +(63212 , 'capsule' , 'https://www.vinted.es/brand/capsule'), +(1313528 , 'Capsule by simply be' , 'https://www.vinted.es/brand/capsule-by-simply-be'), +(4734489 , 'CAPSULE ELEVEN' , 'https://www.vinted.es/brand/capsule-eleven'), +(123380 , 'Cocoon' , 'https://www.vinted.es/brand/cocoon'), +(859533 , 'cocoon by la redoute' , 'https://www.vinted.es/brand/cocoon-by-la-redoute'), +(7168314 , 'Cocoon Secret' , 'https://www.vinted.es/brand/cocoon-secret'), +(16765 , 'Coconut' , 'https://www.vinted.es/brand/coconut'), +(21797 , 'Coco & Abricot' , 'https://www.vinted.es/brand/coco-abricot'), +(291174 , 'Cotoons' , 'https://www.vinted.es/brand/cotoons'), +(430041 , 'Coconudina' , 'https://www.vinted.es/brand/coconudina'), +(424438 , 'coconette' , 'https://www.vinted.es/brand/coconette'), +(46391 , 'Calin Kalin' , 'https://www.vinted.es/brand/calin-kalin'), +(188108 , 'Calin Caline' , 'https://www.vinted.es/brand/calin-caline'), +(298184 , 'Coronel Tapioca' , 'https://www.vinted.es/brand/coronel-tapioca'), +(252026 , 'CORONEL TAPIOCCA' , 'https://www.vinted.es/brand/coronel-tapiocca'), +(273983 , 'Charlie & Prune' , 'https://www.vinted.es/brand/charlie-prune'), +(2011 , 'Cream' , 'https://www.vinted.es/brand/cream'), +(39719 , 'Creamy Moda' , 'https://www.vinted.es/brand/creamy-moda'), +(335972 , 'Crea Mania' , 'https://www.vinted.es/brand/crea-mania'), +(512258 , 'Creamie' , 'https://www.vinted.es/brand/creamie'), +(139540 , 'Creamberry''s' , 'https://www.vinted.es/brand/creamberrys'), +(13091 , 'Creatrice' , 'https://www.vinted.es/brand/creatrice'), +(270166 , 'Création Française' , 'https://www.vinted.es/brand/creation-francaise'), +(277164 , 'Crème' , 'https://www.vinted.es/brand/creme'), +(55669 , 'Créatif Paris' , 'https://www.vinted.es/brand/creatif-paris'), +(7081 , 'Crea Concept' , 'https://www.vinted.es/brand/crea-concept'), +(52999 , 'Casual by Gémo' , 'https://www.vinted.es/brand/casual-by-gemo'), +(306659 , 'Charm' , 'https://www.vinted.es/brand/charm'), +(178514 , 'Charmmy Kitty' , 'https://www.vinted.es/brand/charmmy-kitty'), +(195858 , 'Charming Girl' , 'https://www.vinted.es/brand/charming-girl'), +(76788 , 'Charm''s' , 'https://www.vinted.es/brand/charms'), +(291702 , 'Charmance' , 'https://www.vinted.es/brand/charmance'), +(368993 , 'CHARME' , 'https://www.vinted.es/brand/charme'), +(184440 , 'Charmant' , 'https://www.vinted.es/brand/charmant'), +(343878 , 'Charmed Aroma' , 'https://www.vinted.es/brand/charmed-aroma'), +(281844 , 'Charm''s Paris' , 'https://www.vinted.es/brand/charms-paris'), +(1302008 , 'CharmkpR' , 'https://www.vinted.es/brand/charmkpr'), +(93346 , 'CHIC' , 'https://www.vinted.es/brand/chic'), +(156616 , 'CHICAPRIE' , 'https://www.vinted.es/brand/chicaprie'), +(1881 , 'Chic & Jeune' , 'https://www.vinted.es/brand/chic-jeune'), +(278972 , 'Chica Vampiro' , 'https://www.vinted.es/brand/chica-vampiro'), +(385564 , 'Chic Me' , 'https://www.vinted.es/brand/chic-me'), +(7116684 , 'Carhartt WIP x Uniform Experiment' , 'https://www.vinted.es/brand/carhartt-x-uniform-experiment'), +(7489650 , 'Carhartt WIP x BIC' , 'https://www.vinted.es/brand/carhartt-wip-x-bic'), +(7397734 , 'Carhartt WIP x END.' , 'https://www.vinted.es/brand/carhartt-wip-x-end'), +(729 , 'Caprice' , 'https://www.vinted.es/brand/caprice'), +(107646 , 'Catrice' , 'https://www.vinted.es/brand/catrice'), +(181362 , 'Capriccio' , 'https://www.vinted.es/brand/capriccio'), +(84482 , 'Clinique' , 'https://www.vinted.es/brand/clinique'), +(183206 , 'Corolle' , 'https://www.vinted.es/brand/corolle'), +(6469 , 'Custo Barcelona' , 'https://www.vinted.es/brand/custo-barcelona'), +(621303 , 'Colourful Rebel' , 'https://www.vinted.es/brand/colourful-rebel'), +(49179 , 'Collezione' , 'https://www.vinted.es/brand/collezione'), +(314 , 'CIMARRON' , 'https://www.vinted.es/brand/cimarron'), +(293203 , 'Cupshe' , 'https://www.vinted.es/brand/cupshe'), +(1134596 , 'Cuphead' , 'https://www.vinted.es/brand/cuphead'), +(2963 , 'Christian Lacroix' , 'https://www.vinted.es/brand/christian-lacroix'), +(6185 , 'Cerruti' , 'https://www.vinted.es/brand/cerruti'), +(5975 , 'Cerruti 1881' , 'https://www.vinted.es/brand/cerruti-1881'), +(388408 , 'Cupcake Couture' , 'https://www.vinted.es/brand/cupcake-couture'), +(374 , 'Cotelac' , 'https://www.vinted.es/brand/cotelac'), +(41885 , 'Côte à Côte' , 'https://www.vinted.es/brand/cote-a-cote'), +(1215 , 'Caramelo' , 'https://www.vinted.es/brand/caramelo'), +(3541 , 'Caramel' , 'https://www.vinted.es/brand/caramel'), +(540571 , 'Caramella' , 'https://www.vinted.es/brand/caramella'), +(420218 , 'Caramel & cie' , 'https://www.vinted.es/brand/caramel-cie'), +(324658 , 'Cotton Traders' , 'https://www.vinted.es/brand/cotton-traders'), +(190070 , 'CycleBand' , 'https://www.vinted.es/brand/cycleband'), +(2879 , 'Clara Vitti' , 'https://www.vinted.es/brand/clara-vitti'), +(323031 , 'Camp David' , 'https://www.vinted.es/brand/camp-david'), +(4149 , 'Cherry Koko' , 'https://www.vinted.es/brand/cherry-koko'), +(397087 , 'Canpol Babies' , 'https://www.vinted.es/brand/canpol-babies'), +(275465 , 'Charlotte Tilbury' , 'https://www.vinted.es/brand/charlotte-tilbury'), +(10621 , 'Campus' , 'https://www.vinted.es/brand/campus'), +(49305 , 'CAMPS UNITED' , 'https://www.vinted.es/brand/camps-united'), +(24665 , 'Camps' , 'https://www.vinted.es/brand/camps'), +(352618 , 'Camps Mademoiselle' , 'https://www.vinted.es/brand/camps-mademoiselle'), +(115366 , 'Canterbury' , 'https://www.vinted.es/brand/canterbury'), +(269106 , 'Cocomore' , 'https://www.vinted.es/brand/cocomore'), +(13855 , 'Confetti' , 'https://www.vinted.es/brand/confetti'), +(324285 , 'Confetti Absorba' , 'https://www.vinted.es/brand/confetti-absorba'), +(387413 , 'Crooked Tongues' , 'https://www.vinted.es/brand/crooked-tongues'), +(48527 , 'Crooks & Castles' , 'https://www.vinted.es/brand/crooks-castles'), +(449535 , 'Croozer' , 'https://www.vinted.es/brand/croozer'), +(929240 , 'Comme Des Garçons Play' , 'https://www.vinted.es/brand/comme-des-garcons-play'), +(492730 , 'Comme des Garçons SHIRT' , 'https://www.vinted.es/brand/comme-des-garcons-shirt'), +(3753069 , 'Supreme x Comme des Garçons' , 'https://www.vinted.es/brand/supreme-x-comme-des-garcons'), +(5589958 , 'Comme Des Garçons Homme' , 'https://www.vinted.es/brand/comme-des-garcons-homme'), +(5986331 , 'H&M x Comme des Garçons' , 'https://www.vinted.es/brand/hm-x-comme-des-garcons'), +(6224502 , 'Comme Des Garçons Play x The North Face' , 'https://www.vinted.es/brand/comme-des-garcons-play-x-the-north-face'), +(81784 , 'Clayeux' , 'https://www.vinted.es/brand/clayeux'), +(156076 , 'Chasin''' , 'https://www.vinted.es/brand/chasin'), +(1593348 , 'Chasing Unicorns' , 'https://www.vinted.es/brand/chasing-unicorns'), +(5251570 , 'Chasing Paper' , 'https://www.vinted.es/brand/chasing-paper'), +(249052 , 'Cloothes' , 'https://www.vinted.es/brand/cloothes'), +(7448265 , 'Collectif Aucun' , 'https://www.vinted.es/brand/collectif-aucun'), +(25757 , 'Collectif' , 'https://www.vinted.es/brand/collectif'), +(69818 , 'Corina' , 'https://www.vinted.es/brand/corina'), +(11629317 , 'Corina Vladescu' , 'https://www.vinted.es/brand/corina-vladescu'), +(229148 , 'Corona' , 'https://www.vinted.es/brand/corona'), +(359533 , 'Cortina' , 'https://www.vinted.es/brand/cortina'), +(34379 , 'Corinne Sarrut' , 'https://www.vinted.es/brand/corinne-sarrut'), +(187544 , 'Corinne' , 'https://www.vinted.es/brand/corinne'), +(759378 , 'Corinthian' , 'https://www.vinted.es/brand/corinthian'), +(1493245 , 'Cosi Nails' , 'https://www.vinted.es/brand/cosi-nails'), +(288358 , 'Chantecler' , 'https://www.vinted.es/brand/chantecler'), +(168840 , 'Carré Blanc' , 'https://www.vinted.es/brand/carre-blanc'), +(196658 , 'Chicappie' , 'https://www.vinted.es/brand/chicappie'), +(8993 , 'Coolway' , 'https://www.vinted.es/brand/coolway'), +(79100 , 'Caudalie' , 'https://www.vinted.es/brand/caudalie'), +(3091 , 'C''est beau la vie' , 'https://www.vinted.es/brand/cest-beau-la-vie'), +(8825 , 'Cashmere' , 'https://www.vinted.es/brand/cashmere'), +(3969295 , 'Cashmere in Love' , 'https://www.vinted.es/brand/cashmere-in-love'), +(292033 , 'Craghoppers' , 'https://www.vinted.es/brand/craghoppers'), +(216384 , 'Cerise Blue' , 'https://www.vinted.es/brand/cerise-blue'), +(314334 , 'cerise bleue' , 'https://www.vinted.es/brand/cerise-bleue'), +(169998 , 'Christian Berg' , 'https://www.vinted.es/brand/christian-berg'), +(360010 , 'Christian Bernard' , 'https://www.vinted.es/brand/christian-bernard'), +(4155 , 'Charlotte Russe' , 'https://www.vinted.es/brand/charlotte-russe'), +(2889327 , 'Charlotte Rasse' , 'https://www.vinted.es/brand/charlotte-rasse'), +(33333 , 'Carlsberg' , 'https://www.vinted.es/brand/carlsberg'), +(169406 , 'Classic' , 'https://www.vinted.es/brand/classic'), +(2405 , 'Classic Tricot' , 'https://www.vinted.es/brand/classic-tricot'), +(267897 , 'Classics' , 'https://www.vinted.es/brand/classics'), +(371977 , 'CLASSIC ALL BLACKS' , 'https://www.vinted.es/brand/classic-all-blacks'), +(377027 , 'Classic World' , 'https://www.vinted.es/brand/classic-world'), +(451885 , 'Classic Collection' , 'https://www.vinted.es/brand/classic-collection'), +(269621 , 'Classic Woman' , 'https://www.vinted.es/brand/classic-woman'), +(182880 , 'Classic Elements' , 'https://www.vinted.es/brand/classic-elements'), +(3489719 , 'Classic Touch' , 'https://www.vinted.es/brand/classic-touch'), +(3742701 , 'classics77' , 'https://www.vinted.es/brand/classics77'), +(14825 , 'Cartier' , 'https://www.vinted.es/brand/cartier'), +(416144 , 'CARTER' , 'https://www.vinted.es/brand/carter'), +(357450 , 'Cattier Paris' , 'https://www.vinted.es/brand/cattier-paris'), +(158176 , 'CAMBIO' , 'https://www.vinted.es/brand/cambio'), +(307184 , 'CODE' , 'https://www.vinted.es/brand/code'), +(295857 , 'Code Baby' , 'https://www.vinted.es/brand/code-baby'), +(79486 , 'Codello' , 'https://www.vinted.es/brand/codello'), +(496105 , 'Codemasters' , 'https://www.vinted.es/brand/codemasters'), +(507263 , 'Code Woman' , 'https://www.vinted.es/brand/code-woman'), +(444515 , 'CODE Girls' , 'https://www.vinted.es/brand/code-girls'), +(316673 , 'Code Collection' , 'https://www.vinted.es/brand/code-collection'), +(449568 , 'Code Boys' , 'https://www.vinted.es/brand/code-boys'), +(429373 , 'Codentry' , 'https://www.vinted.es/brand/codentry'), +(57460 , 'Cartoon Network' , 'https://www.vinted.es/brand/cartoon-network'), +(383995 , 'Cartonnier' , 'https://www.vinted.es/brand/cartonnier'), +(31 , 'Crazy Factory' , 'https://www.vinted.es/brand/crazy-factory'), +(4170482 , 'CHIC Metisse' , 'https://www.vinted.es/brand/chic-metisse'), +(447744 , 'Chicmuse' , 'https://www.vinted.es/brand/chicmuse'), +(924097 , 'Chic & Mit' , 'https://www.vinted.es/brand/chic-mit'), +(207766 , 'Camel' , 'https://www.vinted.es/brand/camel'), +(44979 , 'Camel Active' , 'https://www.vinted.es/brand/camel-active'), +(189412 , 'Camelot' , 'https://www.vinted.es/brand/camelot'), +(119502 , 'Cameleon' , 'https://www.vinted.es/brand/cameleon'), +(269175 , 'Camelia' , 'https://www.vinted.es/brand/camelia'), +(324467 , 'CamelBak' , 'https://www.vinted.es/brand/camelbak'), +(283209 , 'Cannella' , 'https://www.vinted.es/brand/cannella'), +(312368 , 'Capelli' , 'https://www.vinted.es/brand/capelli'), +(93416 , 'Camila''s' , 'https://www.vinted.es/brand/camilas'), +(174518 , 'Case Logic' , 'https://www.vinted.es/brand/case-logic'), +(433257 , 'CrossFit' , 'https://www.vinted.es/brand/crossfit'), +(203348 , 'Crossfield' , 'https://www.vinted.es/brand/crossfield'), +(304952 , 'Crossfire' , 'https://www.vinted.es/brand/crossfire'), +(375249 , 'Crosswind' , 'https://www.vinted.es/brand/crosswind'), +(46091 , 'Crossroads' , 'https://www.vinted.es/brand/crossroads'), +(366 , 'Custo' , 'https://www.vinted.es/brand/custo'), +(132598 , 'Custommade' , 'https://www.vinted.es/brand/custommade'), +(7612184 , 'Customized Culture' , 'https://www.vinted.es/brand/customized-culture'), +(2488661 , 'Customcuff' , 'https://www.vinted.es/brand/customcuff'), +(304088 , 'Custer' , 'https://www.vinted.es/brand/custer'), +(809458 , 'Custi Mikelo' , 'https://www.vinted.es/brand/custi-mikelo'), +(148536 , 'CENSORED' , 'https://www.vinted.es/brand/censored'), +(433416 , 'Censured' , 'https://www.vinted.es/brand/censured'), +(28903 , 'Cycle' , 'https://www.vinted.es/brand/cycle'), +(326796 , 'Cycle Spirit' , 'https://www.vinted.es/brand/cycle-spirit'), +(296162 , 'Cycleur de Luxe' , 'https://www.vinted.es/brand/cycleur-de-luxe'), +(213602 , 'Cyclone' , 'https://www.vinted.es/brand/cyclone'), +(1216972 , 'Cyclotest' , 'https://www.vinted.es/brand/cyclotest'), +(662871 , 'Cuddles & Smiles' , 'https://www.vinted.es/brand/cuddles-smiles'), +(77854 , 'Charles Tyrwhitt' , 'https://www.vinted.es/brand/charles-tyrwhitt'), +(209160 , 'Cérémonie' , 'https://www.vinted.es/brand/ceremonie'), +(211178 , 'Cluse' , 'https://www.vinted.es/brand/cluse'), +(609 , 'Cable' , 'https://www.vinted.es/brand/cable'), +(183704 , 'Cable & Gauge' , 'https://www.vinted.es/brand/cable-gauge'), +(1126059 , 'Cable Car Clothiers' , 'https://www.vinted.es/brand/cable-car-clothiers'), +(43167 , 'Cayler & Sons' , 'https://www.vinted.es/brand/cayler-sons'), +(648292 , 'Caleffi' , 'https://www.vinted.es/brand/caleffi'), +(175478 , 'CABALEROS' , 'https://www.vinted.es/brand/cabaleros'), +(382881 , 'Caleidos' , 'https://www.vinted.es/brand/caleidos'), +(371019 , 'Caberg' , 'https://www.vinted.es/brand/caberg'), +(386688 , 'Cabela''s' , 'https://www.vinted.es/brand/cabelas'), +(1235700 , 'Carlen' , 'https://www.vinted.es/brand/carlen'), +(2785 , 'CHERRY' , 'https://www.vinted.es/brand/cherry'), +(336082 , 'Cherry Paris' , 'https://www.vinted.es/brand/cherry-paris'), +(33391 , 'Cherry Couture' , 'https://www.vinted.es/brand/cherry-couture'), +(160640 , 'CHERRY MODA' , 'https://www.vinted.es/brand/cherry-moda'), +(167974 , 'Cherry Berry' , 'https://www.vinted.es/brand/cherry-berry'), +(202376 , 'Cherry Bloom' , 'https://www.vinted.es/brand/cherry-bloom'), +(54149 , 'Cherry Beach' , 'https://www.vinted.es/brand/cherry-beach'), +(151114 , 'Cristal' , 'https://www.vinted.es/brand/cristal'), +(745102 , 'Cristallo' , 'https://www.vinted.es/brand/cristallo'), +(4695422 , 'Cristal d''Arques Paris' , 'https://www.vinted.es/brand/cristal-darques-paris'), +(51031 , 'Crystal' , 'https://www.vinted.es/brand/crystal'), +(647788 , 'Crystal Girl' , 'https://www.vinted.es/brand/crystal-girl'), +(307600 , 'Cristel' , 'https://www.vinted.es/brand/cristel'), +(1120240 , 'Crystal Doll' , 'https://www.vinted.es/brand/crystal-doll'), +(250064 , 'Charlie & Friends' , 'https://www.vinted.es/brand/charlie-friends'), +(51885 , 'Carnet de Vol' , 'https://www.vinted.es/brand/carnet-de-vol'), +(15751 , 'Castaner' , 'https://www.vinted.es/brand/castaner'), +(190088 , 'Chillin' , 'https://www.vinted.es/brand/chillin'), +(3787 , 'Chilli Pepper' , 'https://www.vinted.es/brand/chilli-pepper'), +(407911 , 'Chilli' , 'https://www.vinted.es/brand/chilli'), +(811435 , 'Chill&Buy' , 'https://www.vinted.es/brand/chillbuy'), +(242664 , 'Chillany' , 'https://www.vinted.es/brand/chillany'), +(35135 , 'Chiara Ferragni' , 'https://www.vinted.es/brand/chiara-ferragni'), +(13883 , 'Charlott'' Lingerie' , 'https://www.vinted.es/brand/charlott-lingerie'), +(79912 , 'Café Coton' , 'https://www.vinted.es/brand/cafe-coton'), +(56332 , 'Cute' , 'https://www.vinted.es/brand/cute'), +(297942 , 'Cutey Couture' , 'https://www.vinted.es/brand/cutey-couture'), +(190200 , 'Cutey Pie' , 'https://www.vinted.es/brand/cutey-pie'), +(407767 , 'cute baby' , 'https://www.vinted.es/brand/cute-baby'), +(73598 , 'Cube' , 'https://www.vinted.es/brand/cube'), +(266221 , 'cutting edge' , 'https://www.vinted.es/brand/cutting-edge'), +(91778 , 'Cutie' , 'https://www.vinted.es/brand/cutie'), +(836086 , 'CULT EDITION' , 'https://www.vinted.es/brand/cult-edition'), +(31411 , 'Caractère' , 'https://www.vinted.es/brand/caractere'), +(4633626 , 'Charlott''' , 'https://www.vinted.es/brand/charlott'), +(174498 , 'Charlotte aux Fraises' , 'https://www.vinted.es/brand/charlotte-aux-fraises'), +(23235 , 'Charlotte' , 'https://www.vinted.es/brand/charlotte'), +(158180 , 'Charlotte Olympia' , 'https://www.vinted.es/brand/charlotte-olympia'), +(201524 , 'Charlotte au Fraises' , 'https://www.vinted.es/brand/charlotte-au-fraise'), +(156472 , 'Charlotte Sparre' , 'https://www.vinted.es/brand/charlotte-sparre'), +(387029 , 'Charlotte Halton' , 'https://www.vinted.es/brand/charlotte-halton'), +(10462934 , 'Couture Candy' , 'https://www.vinted.es/brand/couture-candy'), +(2090309 , 'Cinamoon' , 'https://www.vinted.es/brand/cinamoon'), +(275125 , 'Cinamon' , 'https://www.vinted.es/brand/cinamon'), +(24013 , 'Cinque' , 'https://www.vinted.es/brand/cinque'), +(284199 , 'CIRQUE DU SOLEIL' , 'https://www.vinted.es/brand/cirque-du-soleil'), +(188908 , 'charlior' , 'https://www.vinted.es/brand/charlior'), +(197114 , 'Cóndor' , 'https://www.vinted.es/brand/condor'), +(133212 , 'Conte of Florence' , 'https://www.vinted.es/brand/conte-of-florence'), +(270312 , 'Cult' , 'https://www.vinted.es/brand/cult'), +(5149 , 'Cultura' , 'https://www.vinted.es/brand/cultura'), +(16177 , 'Culture Sud' , 'https://www.vinted.es/brand/culture-sud'), +(199808 , 'Culture' , 'https://www.vinted.es/brand/culture'), +(608247 , 'CULT COUPLE' , 'https://www.vinted.es/brand/cult-couple'), +(16823 , 'Culture Beach' , 'https://www.vinted.es/brand/culture-beach'), +(425473 , 'Cult Gaia' , 'https://www.vinted.es/brand/cult-gaia'), +(346967 , 'Culture Mix' , 'https://www.vinted.es/brand/culture-mix'), +(3299541 , 'CULTURE 28' , 'https://www.vinted.es/brand/culture-28'), +(357114 , 'Cat & Jack' , 'https://www.vinted.es/brand/cat-jack'), +(124908 , 'Cinti' , 'https://www.vinted.es/brand/cinti'), +(98254 , 'Citizen' , 'https://www.vinted.es/brand/citizen'), +(201826 , 'Cincinati' , 'https://www.vinted.es/brand/cincinati'), +(67850 , 'Citizens of Humanity' , 'https://www.vinted.es/brand/citizens-of-humanity'), +(487677 , 'Cinzia Soft' , 'https://www.vinted.es/brand/cinzia-soft'), +(194756 , 'Cintre à cintre' , 'https://www.vinted.es/brand/cintre-a-cintre'), +(694450 , 'Cinzia Valle' , 'https://www.vinted.es/brand/cinzia-valle'), +(469667 , 'Cinzia Araia' , 'https://www.vinted.es/brand/cinzia-araia'), +(162306 , 'Cinzia Rocca' , 'https://www.vinted.es/brand/cinzia-rocca'), +(6613891 , 'Cintura M' , 'https://www.vinted.es/brand/cintura-m'), +(17735 , 'Caterpillar' , 'https://www.vinted.es/brand/caterpillar'), +(383552 , 'Catbalou' , 'https://www.vinted.es/brand/catbalou'), +(87946 , 'CAT' , 'https://www.vinted.es/brand/cat'), +(3851 , 'Catisa' , 'https://www.vinted.es/brand/catisa'), +(6213 , 'Carven' , 'https://www.vinted.es/brand/carven'), +(13581 , 'Carmens' , 'https://www.vinted.es/brand/carmens'), +(164744 , 'Carmen' , 'https://www.vinted.es/brand/carmen'), +(321952 , 'Carmen Taberner' , 'https://www.vinted.es/brand/carmen-taberner'), +(6077 , 'Carmen Steffens' , 'https://www.vinted.es/brand/carmen-steffens'), +(379581 , 'Ca'' Venier' , 'https://www.vinted.es/brand/ca-venier'), +(794408 , 'Carmencitas' , 'https://www.vinted.es/brand/carmencitas'), +(96784 , 'Carmen Poveda' , 'https://www.vinted.es/brand/carmen-poveda'), +(40151 , 'CRASH ONE' , 'https://www.vinted.es/brand/crash-one'), +(290999 , 'Centrakor' , 'https://www.vinted.es/brand/centrakor'), +(14939 , 'Canada Goose' , 'https://www.vinted.es/brand/canada-goose'), +(273783 , 'Coleridge' , 'https://www.vinted.es/brand/coleridge'), +(160926 , 'Chino' , 'https://www.vinted.es/brand/chino'), +(7365 , 'Chine' , 'https://www.vinted.es/brand/chine'), +(16295 , 'Chanon' , 'https://www.vinted.es/brand/chanon'), +(15853 , 'Chinese Laundry' , 'https://www.vinted.es/brand/chinese-laundry'), +(174148 , 'China Glaze' , 'https://www.vinted.es/brand/china-glaze'), +(436986 , 'Chine Belgian Design' , 'https://www.vinted.es/brand/chine-belgian-design'), +(408327 , 'Chinatown Market' , 'https://www.vinted.es/brand/chinatown-market'), +(99758 , 'Cecilia Classic' , 'https://www.vinted.es/brand/cecilia-classic'), +(291347 , 'Carinii' , 'https://www.vinted.es/brand/carinii'), +(4690984 , 'Claudia Sträter' , 'https://www.vinted.es/brand/claudia-strater'), +(9771 , 'Cypres' , 'https://www.vinted.es/brand/cypres'), +(3151 , 'Cannelle' , 'https://www.vinted.es/brand/cannelle'), +(1972547 , 'Candellana' , 'https://www.vinted.es/brand/candellana'), +(34 , 'Disney' , 'https://www.vinted.es/brand/disney'), +(5746296 , 'Disney Baby' , 'https://www.vinted.es/brand/disney-baby'), +(6368710 , 'Disney × Pixar' , 'https://www.vinted.es/brand/disney-x-pixar'), +(10386612 , 'Disneyland Paris' , 'https://www.vinted.es/brand/disneyland-paris'), +(5751261 , 'Disney Princess' , 'https://www.vinted.es/brand/disney-princess'), +(305907 , 'Tsum tsum' , 'https://www.vinted.es/brand/tsum-tsum'), +(7456186 , 'Disney x Desigual' , 'https://www.vinted.es/brand/disney-x-desigual'), +(6139185 , 'Disney x Eleven Paris' , 'https://www.vinted.es/brand/disney-x-eleven-paris'), +(6210267 , 'adidas x Disney' , 'https://www.vinted.es/brand/adidas-x-disney'), +(386 , 'Decathlon' , 'https://www.vinted.es/brand/decathlon'), +(90 , 'Du Pareil au Même' , 'https://www.vinted.es/brand/du-pareil-au-meme'), +(491 , 'Desigual' , 'https://www.vinted.es/brand/desigual'), +(161 , 'Diesel' , 'https://www.vinted.es/brand/diesel'), +(491398 , 'Diesel Kids' , 'https://www.vinted.es/brand/diesel-kids'), +(183634 , 'Diesel Black Gold' , 'https://www.vinted.es/brand/diesel-black-gold'), +(4912182 , 'Diesel Red Tag' , 'https://www.vinted.es/brand/diesel-red-tag'), +(189 , 'Dorothy Perkins' , 'https://www.vinted.es/brand/dorothy-perkins'), +(6648263 , 'Dorothy Perkins Maternity' , 'https://www.vinted.es/brand/dorothy-perkins-maternity'), +(6785597 , 'Dorothy Perkins Petite' , 'https://www.vinted.es/brand/dorothy-perkins-petite'), +(6769251 , 'Dorothy Perkins Curve' , 'https://www.vinted.es/brand/dorothy-perkins-curve'), +(6785598 , 'Dorothy Perkins Tall' , 'https://www.vinted.es/brand/dorothy-perkins-tall'), +(42481 , 'Donna' , 'https://www.vinted.es/brand/donna'), +(1149 , 'DKNY' , 'https://www.vinted.es/brand/dkny'), +(15151 , 'Donna Piu''' , 'https://www.vinted.es/brand/donna-piu'), +(27363 , 'Donna Karan' , 'https://www.vinted.es/brand/donna-karan'), +(20581 , 'Donnay' , 'https://www.vinted.es/brand/donnay'), +(193652 , 'Donna Moda' , 'https://www.vinted.es/brand/donna-moda'), +(254776 , 'Donna''s' , 'https://www.vinted.es/brand/donnas'), +(24221 , 'Donna Loka' , 'https://www.vinted.es/brand/donna-loka'), +(1022340 , 'Donna Soft' , 'https://www.vinted.es/brand/donna-soft'), +(278555 , 'DonnaIo' , 'https://www.vinted.es/brand/donnaio'), +(357 , 'Domyos' , 'https://www.vinted.es/brand/domyos'), +(1428761 , 'Do My Self' , 'https://www.vinted.es/brand/do-my-self'), +(6719 , 'Denim Co' , 'https://www.vinted.es/brand/denim-co'), +(8363 , 'Denim Collection' , 'https://www.vinted.es/brand/denim-collection'), +(263272 , 'Denim Club' , 'https://www.vinted.es/brand/denim-club'), +(1321214 , 'Denis Colomb' , 'https://www.vinted.es/brand/denis-colomb'), +(280957 , 'DopoDopo' , 'https://www.vinted.es/brand/dopodopo'), +(22777 , 'diverse' , 'https://www.vinted.es/brand/diverse'), +(748842 , 'Diversi' , 'https://www.vinted.es/brand/diversi'), +(938848 , 'Diverso' , 'https://www.vinted.es/brand/diverso'), +(774426 , 'Diversa' , 'https://www.vinted.es/brand/diversa'), +(309 , 'Dr. Martens' , 'https://www.vinted.es/brand/dr-martens'), +(22461 , 'Denim Life' , 'https://www.vinted.es/brand/denim-life'), +(262266 , 'Denim Side' , 'https://www.vinted.es/brand/denim-side'), +(43855 , 'DENIM JEANS' , 'https://www.vinted.es/brand/denim-jeans'), +(18469 , 'Denim Studio' , 'https://www.vinted.es/brand/denim-studio'), +(328842 , 'Denim 1982' , 'https://www.vinted.es/brand/denim-1982'), +(355353 , 'Denimwear' , 'https://www.vinted.es/brand/denimwear'), +(1975660 , 'Denim Project' , 'https://www.vinted.es/brand/denim-project'), +(1043 , 'Dolce & Gabbana' , 'https://www.vinted.es/brand/dolce-gabbana'), +(4892157 , 'DKNY Intimates' , 'https://www.vinted.es/brand/dkny-intimates'), +(4711 , 'Devred' , 'https://www.vinted.es/brand/devred'), +(671 , 'Dior' , 'https://www.vinted.es/brand/dior'), +(6596333 , 'Jordan x Dior' , 'https://www.vinted.es/brand/jordan-x-dior'), +(5416919 , 'Dior x Kaws' , 'https://www.vinted.es/brand/dior-x-kaws'), +(7440267 , 'Dior x Rimowa' , 'https://www.vinted.es/brand/dior-x-rimowa'), +(293263 , 'Dirkje' , 'https://www.vinted.es/brand/dirkje'), +(318255 , 'Difrax' , 'https://www.vinted.es/brand/difrax'), +(295983 , 'Diono' , 'https://www.vinted.es/brand/diono'), +(286823 , 'Didriksons' , 'https://www.vinted.es/brand/didriksons'), +(213250 , 'Diolen' , 'https://www.vinted.es/brand/diolen'), +(918533 , 'Dirndl' , 'https://www.vinted.es/brand/dirndl'), +(1363 , 'Dsquared2' , 'https://www.vinted.es/brand/dsquared2'), +(3303 , 'Damart' , 'https://www.vinted.es/brand/damart'), +(1048175 , 'Damaris' , 'https://www.vinted.es/brand/damaris'), +(287254 , 'DJECO' , 'https://www.vinted.es/brand/djeco'), +(5397027 , 'DJ & Co.' , 'https://www.vinted.es/brand/dj-co'), +(145 , 'DDP' , 'https://www.vinted.es/brand/ddp'), +(53717 , 'D&D' , 'https://www.vinted.es/brand/dd'), +(175408 , 'D´Donna' , 'https://www.vinted.es/brand/ddonna'), +(449084 , 'D-due' , 'https://www.vinted.es/brand/d-due'), +(350196 , 'D.D. Step' , 'https://www.vinted.es/brand/dd-step'), +(899099 , 'Duke + Dexter' , 'https://www.vinted.es/brand/duke-dexter'), +(2864986 , 'DDG Sport' , 'https://www.vinted.es/brand/ddg-sport'), +(37325 , 'Debenhams' , 'https://www.vinted.es/brand/debenhams'), +(65 , 'Dickies' , 'https://www.vinted.es/brand/dickies'), +(5251614 , 'Dickies Construct' , 'https://www.vinted.es/brand/dickies-construct'), +(288736 , 'Dickie Toys' , 'https://www.vinted.es/brand/dickie-toys'), +(521614 , 'Dickins & Jones' , 'https://www.vinted.es/brand/dickins-jones'), +(13649 , 'Deichmann' , 'https://www.vinted.es/brand/deichmann'), +(46923 , 'Diadora' , 'https://www.vinted.es/brand/diadora'), +(782206 , 'DeeZee' , 'https://www.vinted.es/brand/deezee'), +(13155 , 'DC' , 'https://www.vinted.es/brand/dc'), +(518 , 'DC Shoes' , 'https://www.vinted.es/brand/dc-shoes'), +(15661 , 'DC Comics' , 'https://www.vinted.es/brand/dc-comics'), +(1797 , 'D''Chicas' , 'https://www.vinted.es/brand/dchicas'), +(130936 , 'D&Co.' , 'https://www.vinted.es/brand/dco'), +(564577 , 'DCK' , 'https://www.vinted.es/brand/dck'), +(51613 , 'd.co copenhagen' , 'https://www.vinted.es/brand/dco-copenhagen'), +(7256065 , 'DC Shoes x Ben Davis' , 'https://www.vinted.es/brand/dc-shoes-x-ben-davis'), +(7456173 , 'PUMA x DC Justice League' , 'https://www.vinted.es/brand/puma-x-dc-justice-league'), +(57046 , 'Denny Rose' , 'https://www.vinted.es/brand/denny-rose'), +(5331 , 'Diddl' , 'https://www.vinted.es/brand/diddl'), +(163602 , 'DESTINATION' , 'https://www.vinted.es/brand/destination'), +(350491 , 'Dragon Ball' , 'https://www.vinted.es/brand/dragon-ball'), +(5835135 , 'Dragon Ball Z' , 'https://www.vinted.es/brand/dragon-ball-z'), +(7432257 , 'adidas x Dragon Ball Z' , 'https://www.vinted.es/brand/adidas-x-dragon-ball-z'), +(911428 , 'Dragon Alliance' , 'https://www.vinted.es/brand/dragon-alliance'), +(111050 , 'Dunnes Stores' , 'https://www.vinted.es/brand/dunnes-stores'), +(6033030 , 'Disney x Primark' , 'https://www.vinted.es/brand/disney-x-primark'), +(3025 , 'Des Petits Hauts' , 'https://www.vinted.es/brand/des-petits-hauts'), +(342 , 'DIM' , 'https://www.vinted.es/brand/dim'), +(93302 , 'Dimensione Danza' , 'https://www.vinted.es/brand/dimensione-danza'), +(575 , 'Dimension' , 'https://www.vinted.es/brand/dimension'), +(428403 , 'Dimensions' , 'https://www.vinted.es/brand/dimensions'), +(303501 , 'Dimo' , 'https://www.vinted.es/brand/dimo'), +(326479 , 'Dime' , 'https://www.vinted.es/brand/dime'), +(838796 , 'Dimo-tex' , 'https://www.vinted.es/brand/dimo-tex'), +(179998 , 'Dimacci' , 'https://www.vinted.es/brand/dimacci'), +(342623 , 'Dima' , 'https://www.vinted.es/brand/dima'), +(124116 , 'Dimepiece' , 'https://www.vinted.es/brand/dimepiece'), +(50335 , 'Dockers' , 'https://www.vinted.es/brand/dockers'), +(345579 , 'Dockers by Gerli' , 'https://www.vinted.es/brand/dockers-by-gerli'), +(54183 , 'DONDUP' , 'https://www.vinted.es/brand/dondup'), +(20651 , 'Dixie' , 'https://www.vinted.es/brand/dixie'), +(58604 , 'Didier Parakian' , 'https://www.vinted.es/brand/didier-parakian'), +(23101 , 'Dixit' , 'https://www.vinted.es/brand/dixit'), +(23523 , 'DIDIER LAMARTHE' , 'https://www.vinted.es/brand/didier-lamarthe'), +(323746 , 'Didier' , 'https://www.vinted.es/brand/didier'), +(480 , 'DIDIER GUERIN' , 'https://www.vinted.es/brand/didier-guerin'), +(5988099 , 'D&G' , 'https://www.vinted.es/brand/dg'), +(167456 , 'DM' , 'https://www.vinted.es/brand/dm'), +(222654 , 'D&S Fashion' , 'https://www.vinted.es/brand/ds-fashion'), +(55221 , 'D&S' , 'https://www.vinted.es/brand/ds'), +(272812 , 'DK' , 'https://www.vinted.es/brand/dk'), +(198764 , 'D&Z Fashion' , 'https://www.vinted.es/brand/dz-fashion'), +(233674 , 'D&P' , 'https://www.vinted.es/brand/dp'), +(2583550 , 'Don''t Call Me Jennyfer' , 'https://www.vinted.es/brand/dont-call-me-jennyfer'), +(333 , 'Darjeeling' , 'https://www.vinted.es/brand/darjeeling'), +(53035 , 'Defacto' , 'https://www.vinted.es/brand/defacto'), +(6113516 , 'defacto fit' , 'https://www.vinted.es/brand/defacto-fit'), +(164274 , 'Dune London' , 'https://www.vinted.es/brand/dune-london'), +(9773121 , 'Dune' , 'https://www.vinted.es/brand/dune'), +(7713 , 'Deeluxe' , 'https://www.vinted.es/brand/deeluxe'), +(266251 , 'Deeluxe 74' , 'https://www.vinted.es/brand/deeluxe-74'), +(55063 , 'Deluxe' , 'https://www.vinted.es/brand/deluxe'), +(2055 , 'David Jones' , 'https://www.vinted.es/brand/david-jones'), +(5874972 , 'Dunnes' , 'https://www.vinted.es/brand/dunnes'), +(46265 , 'DUNEA' , 'https://www.vinted.es/brand/dunea'), +(524707 , 'Dunelm' , 'https://www.vinted.es/brand/dunelm'), +(18299 , 'Dunlop' , 'https://www.vinted.es/brand/dunlop'), +(13959 , 'Double Agent' , 'https://www.vinted.es/brand/double-agent'), +(100952 , 'Didi' , 'https://www.vinted.es/brand/didi'), +(725 , 'H&M Divided' , 'https://www.vinted.es/brand/hm-divided'), +(190990 , 'Divine Follie' , 'https://www.vinted.es/brand/divine-follie'), +(1855 , 'Derhy' , 'https://www.vinted.es/brand/derhy'), +(317090 , 'Derhy Kids' , 'https://www.vinted.es/brand/derhy-kids'), +(16307 , 'Derby' , 'https://www.vinted.es/brand/derby'), +(324914 , 'Deryan' , 'https://www.vinted.es/brand/deryan'), +(336053 , 'Derbystar' , 'https://www.vinted.es/brand/derbystar'), +(3371590 , 'der Hörverlag' , 'https://www.vinted.es/brand/der-horverlag'), +(190458 , 'Daily paper' , 'https://www.vinted.es/brand/daily-paper'), +(6249895 , 'Puma × Daily Paper' , 'https://www.vinted.es/brand/puma-x-daily-paper'), +(317 , 'Daniel Hechter' , 'https://www.vinted.es/brand/daniel-hechter'), +(36949 , 'Dare2B' , 'https://www.vinted.es/brand/dare2b'), +(45111 , 'Drykorn' , 'https://www.vinted.es/brand/drykorn'), +(207940 , 'Doudou et Compagnie' , 'https://www.vinted.es/brand/doudou-et-compagnie'), +(6955 , 'Dainese' , 'https://www.vinted.es/brand/dainese'), +(41091 , 'Drôle de Copine' , 'https://www.vinted.es/brand/drole-de-copine'), +(287455 , 'Dujardin' , 'https://www.vinted.es/brand/dujardin'), +(73802 , 'Daniel Wellington' , 'https://www.vinted.es/brand/daniel-wellington'), +(4695843 , 'Despicable Me Minion Made' , 'https://www.vinted.es/brand/despicable-me-minion-made'), +(35981 , 'Dept' , 'https://www.vinted.es/brand/dept'), +(159860 , 'De Paris' , 'https://www.vinted.es/brand/de-paris'), +(500775 , 'Dettagli' , 'https://www.vinted.es/brand/dettagli'), +(820103 , 'Department 5' , 'https://www.vinted.es/brand/department-5'), +(4927 , 'Daphnea' , 'https://www.vinted.es/brand/daphnea'), +(70506 , 'Daphne' , 'https://www.vinted.es/brand/daphne'), +(7569 , 'Daxon' , 'https://www.vinted.es/brand/daxon'), +(317503 , 'DANONE' , 'https://www.vinted.es/brand/danone'), +(926643 , 'Dagon' , 'https://www.vinted.es/brand/dagon'), +(104730 , 'DPM By Depech Mod' , 'https://www.vinted.es/brand/dpm-by-depech-mod'), +(86508 , 'Daisy Street' , 'https://www.vinted.es/brand/daisy-street'), +(335909 , 'DMB' , 'https://www.vinted.es/brand/dmb'), +(135426 , 'DMP' , 'https://www.vinted.es/brand/dmp'), +(269880 , 'DMG' , 'https://www.vinted.es/brand/dmg'), +(291064 , 'DMC' , 'https://www.vinted.es/brand/dmc'), +(295340 , 'DMJ' , 'https://www.vinted.es/brand/dmj'), +(1896554 , 'Dmail' , 'https://www.vinted.es/brand/dmail'), +(389142 , 'DMT' , 'https://www.vinted.es/brand/dmt'), +(3283 , 'DMN' , 'https://www.vinted.es/brand/dmn'), +(306099 , 'DMD' , 'https://www.vinted.es/brand/dmd'), +(83258 , 'Debut' , 'https://www.vinted.es/brand/debut'), +(581163 , 'Debutto Donna' , 'https://www.vinted.es/brand/debutto-donna'), +(1844448 , 'Deruta' , 'https://www.vinted.es/brand/deruta'), +(64236 , 'De Puta Madre' , 'https://www.vinted.es/brand/de-puta-madre'), +(290481 , 'Deuter' , 'https://www.vinted.es/brand/deuter'), +(331540 , 'Daniele Alessandrini' , 'https://www.vinted.es/brand/daniele-alessandrini'), +(19455 , 'Douglas' , 'https://www.vinted.es/brand/douglas'), +(322931 , 'Dulces' , 'https://www.vinted.es/brand/dulces'), +(14733 , 'Dulce Rubio' , 'https://www.vinted.es/brand/dulce-rubio'), +(533161 , 'Dulceida' , 'https://www.vinted.es/brand/dulceida'), +(912295 , 'Dulce de Fresa' , 'https://www.vinted.es/brand/dulce-de-fresa'), +(509 , 'Dorotennis' , 'https://www.vinted.es/brand/dorotennis'), +(281085 , 'Dreamworks' , 'https://www.vinted.es/brand/dreamworks'), +(2263804 , 'Copenhagen Studios' , 'https://www.vinted.es/brand/copenhagen-studios'), +(27223 , 'DEVERNOIS' , 'https://www.vinted.es/brand/devernois'), +(894242 , 'Diamond Painting' , 'https://www.vinted.es/brand/diamond-painting'), +(287512 , 'Dodie' , 'https://www.vinted.es/brand/dodie'), +(287926 , 'Dodipetto' , 'https://www.vinted.es/brand/dodipetto'), +(214326 , 'Dodge' , 'https://www.vinted.es/brand/dodge'), +(4105 , 'Dakine' , 'https://www.vinted.es/brand/dakine'), +(200832 , 'Davines' , 'https://www.vinted.es/brand/davines'), +(98148 , 'Dodo' , 'https://www.vinted.es/brand/dodo'), +(306487 , 'DODOT' , 'https://www.vinted.es/brand/dodot'), +(320699 , 'Dodo d''amour' , 'https://www.vinted.es/brand/dodo-damour'), +(1048945 , 'Dodo Bar Or' , 'https://www.vinted.es/brand/dodo-bar-or'), +(291992 , 'Dyson' , 'https://www.vinted.es/brand/dyson'), +(1599298 , 'Dykon' , 'https://www.vinted.es/brand/dykon'), +(349832 , 'Dolce Petit' , 'https://www.vinted.es/brand/dolce-petit'), +(658322 , 'DISTRIKT NØRREBRO' , 'https://www.vinted.es/brand/distrikt-norrebro'), +(6375 , 'Diane von Fürstenberg' , 'https://www.vinted.es/brand/diane-von-furstenberg'), +(367339 , 'Dustin' , 'https://www.vinted.es/brand/dustin'), +(7749 , 'Daysie' , 'https://www.vinted.es/brand/daysie'), +(17077 , 'Dolce' , 'https://www.vinted.es/brand/dolce'), +(12909 , 'Dolce Vita' , 'https://www.vinted.es/brand/dolce-vita'), +(2901 , 'Dolce & Rosa' , 'https://www.vinted.es/brand/dolce-rosa'), +(323545 , 'Dolce Bella' , 'https://www.vinted.es/brand/dolce-bella'), +(392404 , 'Dolce C' , 'https://www.vinted.es/brand/dolce-c'), +(4619 , 'DOLCE ET ROSA' , 'https://www.vinted.es/brand/dolce-et-rosa'), +(386022 , 'Dolce Ribelle' , 'https://www.vinted.es/brand/dolce-ribelle'), +(882394 , 'Dolcezza' , 'https://www.vinted.es/brand/dolcezza'), +(375422 , 'Dora the Explorer' , 'https://www.vinted.es/brand/dora-the-explorer'), +(275988 , 'DATCH' , 'https://www.vinted.es/brand/datch'), +(468642 , 'Dachstein' , 'https://www.vinted.es/brand/dachstein'), +(2974715 , 'Dimo Organic' , 'https://www.vinted.es/brand/dimo-organic'), +(61776 , 'DI FONTANA' , 'https://www.vinted.es/brand/di-fontana'), +(294821 , 'Dino' , 'https://www.vinted.es/brand/dino'), +(36005 , 'Diamond' , 'https://www.vinted.es/brand/diamond'), +(315444 , 'DANI' , 'https://www.vinted.es/brand/dani'), +(1975 , 'Danity' , 'https://www.vinted.es/brand/danity'), +(31259 , 'Danic' , 'https://www.vinted.es/brand/danic'), +(24603 , 'Daniela' , 'https://www.vinted.es/brand/daniela'), +(401260 , 'Daniel & Mayer' , 'https://www.vinted.es/brand/daniel-mayer'), +(249296 , 'DANIELA VEGA' , 'https://www.vinted.es/brand/daniela-vega'), +(288854 , 'Daniele Fiesoli' , 'https://www.vinted.es/brand/daniele-fiesoli'), +(319552 , 'Dr. Scholl''s' , 'https://www.vinted.es/brand/dr-scholls'), +(280535 , 'Décimas' , 'https://www.vinted.es/brand/decimas'), +(1493458 , 'Dainty Doll' , 'https://www.vinted.es/brand/dainty-doll'), +(1358571 , 'Dinosaur' , 'https://www.vinted.es/brand/dinosaur'), +(34135 , 'Dino e Lucia' , 'https://www.vinted.es/brand/dino-e-lucia'), +(783660 , 'Dinova' , 'https://www.vinted.es/brand/dinova'), +(4261854 , 'Dinosaur Designs' , 'https://www.vinted.es/brand/dinosaur-designs'), +(614624 , 'DINOMODA' , 'https://www.vinted.es/brand/dinomoda'), +(288793 , 'Dino''z' , 'https://www.vinted.es/brand/dinoz'), +(1144675 , 'Dino Bikes' , 'https://www.vinted.es/brand/dino-bikes'), +(4261424 , 'Dino Salvani' , 'https://www.vinted.es/brand/dino-salvani'), +(3218932 , 'Dino Dini' , 'https://www.vinted.es/brand/dino-dini'), +(4694324 , 'Döll' , 'https://www.vinted.es/brand/doll'), +(305047 , 'Deco' , 'https://www.vinted.es/brand/deco'), +(349438 , 'DécoTime' , 'https://www.vinted.es/brand/decotime'), +(11589 , 'Decontract' , 'https://www.vinted.es/brand/decontract'), +(462436 , 'Decoration' , 'https://www.vinted.es/brand/decoration'), +(275175 , 'De Corp' , 'https://www.vinted.es/brand/de-corp'), +(5325 , 'Decodelire' , 'https://www.vinted.es/brand/decodelire'), +(323001 , 'Décopatch' , 'https://www.vinted.es/brand/decopatch'), +(357668 , 'Decoded' , 'https://www.vinted.es/brand/decoded'), +(459953 , 'Decoy' , 'https://www.vinted.es/brand/decoy'), +(642392 , 'Deconovo' , 'https://www.vinted.es/brand/deconovo'), +(12059 , 'Diva' , 'https://www.vinted.es/brand/diva'), +(344767 , 'DIVAS' , 'https://www.vinted.es/brand/divas'), +(729759 , 'Diva Trend' , 'https://www.vinted.es/brand/diva-trend'), +(153754 , 'Diva Fashion' , 'https://www.vinted.es/brand/diva-fashion'), +(381255 , 'DiVarese' , 'https://www.vinted.es/brand/divarese'), +(900846 , 'Divain' , 'https://www.vinted.es/brand/divain'), +(240006 , 'Diana Gallesi' , 'https://www.vinted.es/brand/diana-gallesi'), +(287459 , 'Doomoo' , 'https://www.vinted.es/brand/doomoo'), +(752343 , 'Dooboo' , 'https://www.vinted.es/brand/dooboo'), +(338244 , 'Dolores Promesas' , 'https://www.vinted.es/brand/dolores-promesas'), +(508668 , 'D-zine' , 'https://www.vinted.es/brand/d-zine'), +(959904 , 'D-zine jeans' , 'https://www.vinted.es/brand/d-zine-jeans'), +(417074 , 'Doña Carmen' , 'https://www.vinted.es/brand/dona-carmen'), +(4694823 , 'Dolls Kill' , 'https://www.vinted.es/brand/dolls-kill'), +(2717 , 'Dayaday' , 'https://www.vinted.es/brand/dayaday'), +(4620790 , 'Dolly Wears' , 'https://www.vinted.es/brand/dolly-wears'), +(21741 , 'Dorking' , 'https://www.vinted.es/brand/dorking'), +(332479 , 'Dorling Kindersley' , 'https://www.vinted.es/brand/dorling-kindersley'), +(748479 , 'Dopo Mini' , 'https://www.vinted.es/brand/dopo-mini'), +(102502 , 'Denham' , 'https://www.vinted.es/brand/denham'), +(4601 , 'DEHA' , 'https://www.vinted.es/brand/deha'), +(464678 , 'Dehavilland' , 'https://www.vinted.es/brand/dehavilland'), +(20441 , 'DECA' , 'https://www.vinted.es/brand/deca'), +(741158 , 'DeAgostini' , 'https://www.vinted.es/brand/deagostini'), +(19293 , 'Delaveine' , 'https://www.vinted.es/brand/delaveine'), +(168968 , 'Dance' , 'https://www.vinted.es/brand/dance'), +(1493461 , 'Danceries' , 'https://www.vinted.es/brand/danceries'), +(848605 , 'Dante6' , 'https://www.vinted.es/brand/dante6'), +(53695 , 'Ducati' , 'https://www.vinted.es/brand/ducati'), +(319624 , 'Ducatillon' , 'https://www.vinted.es/brand/ducatillon'), +(6295573 , 'Puma x Ducati' , 'https://www.vinted.es/brand/puma-x-ducati'), +(329114 , 'Disana' , 'https://www.vinted.es/brand/disana'), +(43371 , 'DIANA' , 'https://www.vinted.es/brand/diana'), +(217786 , 'Diana&Co' , 'https://www.vinted.es/brand/dianaco'), +(2837089 , 'Diana Orving' , 'https://www.vinted.es/brand/diana-orving'), +(1322262 , 'Diana Paukštytė' , 'https://www.vinted.es/brand/diana-paukstyte'), +(3085798 , 'Diana Vapsvė' , 'https://www.vinted.es/brand/diana-vapsve'), +(211690 , 'Daim' , 'https://www.vinted.es/brand/daim'), +(292686 , 'Dame Rose' , 'https://www.vinted.es/brand/dame-rose'), +(45703 , 'DAISY' , 'https://www.vinted.es/brand/daisy'), +(2620860 , 'Daily Aesthetikz' , 'https://www.vinted.es/brand/daily-aesthetikz'), +(345535 , 'Daily' , 'https://www.vinted.es/brand/daily'), +(495696 , 'Dame Blanche' , 'https://www.vinted.es/brand/dame-blanche'), +(341663 , 'Demar' , 'https://www.vinted.es/brand/demar'), +(801712 , 'Del Mare 1911' , 'https://www.vinted.es/brand/del-mare-1911'), +(404080 , 'DEMAX' , 'https://www.vinted.es/brand/demax'), +(498060 , 'Dear Tee' , 'https://www.vinted.es/brand/dear-tee'), +(365685 , 'De Paris & Five Paris' , 'https://www.vinted.es/brand/de-paris-five-paris'), +(819527 , 'Dear Sophie' , 'https://www.vinted.es/brand/dear-sophie'), +(658988 , 'DELMAR' , 'https://www.vinted.es/brand/delmar'), +(553678 , 'dear cashmere' , 'https://www.vinted.es/brand/dear-cashmere'), +(439768 , 'Dancing Leopard' , 'https://www.vinted.es/brand/dancing-leopard'), +(3985 , 'Diplodocus' , 'https://www.vinted.es/brand/diplodocus'), +(305983 , 'Dadati' , 'https://www.vinted.es/brand/dadati'), +(136842 , 'DADA' , 'https://www.vinted.es/brand/dada'), +(316083 , 'Dandara' , 'https://www.vinted.es/brand/dandara'), +(9921 , 'Dag Adom' , 'https://www.vinted.es/brand/dag-adom'), +(46147 , 'Dana' , 'https://www.vinted.es/brand/dana'), +(736435 , 'Dama' , 'https://www.vinted.es/brand/dama'), +(2244073 , 'Daddy & Son' , 'https://www.vinted.es/brand/daddy-son'), +(320787 , 'Dados' , 'https://www.vinted.es/brand/dados'), +(1907 , 'Deby Debo' , 'https://www.vinted.es/brand/deby-debo'), +(175036 , 'Debby' , 'https://www.vinted.es/brand/debby'), +(744869 , 'Derbe' , 'https://www.vinted.es/brand/derbe'), +(955283 , 'Denby' , 'https://www.vinted.es/brand/denby'), +(2493233 , 'Der Bücherbär' , 'https://www.vinted.es/brand/der-bucherbar'), +(330927 , 'Die Spiegelburg' , 'https://www.vinted.es/brand/die-spiegelburg'), +(457484 , 'Distrikt' , 'https://www.vinted.es/brand/distrikt'), +(100102 , 'District' , 'https://www.vinted.es/brand/district'), +(2576308 , 'DISTRICT VISION' , 'https://www.vinted.es/brand/district-vision'), +(6659681 , 'District 70' , 'https://www.vinted.es/brand/district-70'), +(4912165 , 'District Threads' , 'https://www.vinted.es/brand/district-threads'), +(292762 , 'diset' , 'https://www.vinted.es/brand/diset'), +(431659 , 'DISEÑO' , 'https://www.vinted.es/brand/diseno'), +(6766274 , 'M.DIA' , 'https://www.vinted.es/brand/mdia'), +(52185 , 'Distinct' , 'https://www.vinted.es/brand/distinct'), +(13233 , 'Disturbia' , 'https://www.vinted.es/brand/disturbia'), +(868462 , 'Distroller' , 'https://www.vinted.es/brand/distroller'), +(11655 , 'Darling' , 'https://www.vinted.es/brand/darling'), +(365297 , 'Darling Harbour' , 'https://www.vinted.es/brand/darling-harbour'), +(664537 , 'Däumling' , 'https://www.vinted.es/brand/daumling'), +(54235 , 'Dragon' , 'https://www.vinted.es/brand/dragon'), +(275032 , 'Dragon d''Or' , 'https://www.vinted.es/brand/dragon-dor'), +(193804 , 'Dragonfly' , 'https://www.vinted.es/brand/dragonfly'), +(1180224 , 'Dragon Sport' , 'https://www.vinted.es/brand/dragon-sport'), +(114192 , 'Drago' , 'https://www.vinted.es/brand/drago'), +(5339389 , 'Dazy' , 'https://www.vinted.es/brand/dazy'), +(333861 , 'Day-Vine' , 'https://www.vinted.es/brand/day-vine'), +(387856 , 'Dany Kids' , 'https://www.vinted.es/brand/dany-kids'), +(27981 , 'DAY' , 'https://www.vinted.es/brand/day'), +(84334 , 'Daytona' , 'https://www.vinted.es/brand/daytona'), +(360621 , 'DAZZLING' , 'https://www.vinted.es/brand/dazzling'), +(175590 , 'Danyberd' , 'https://www.vinted.es/brand/danyberd'), +(105810 , 'Diamantique' , 'https://www.vinted.es/brand/diamantique'), +(346729 , 'Done by Deer' , 'https://www.vinted.es/brand/done-by-deer'), +(861939 , 'Dandelion' , 'https://www.vinted.es/brand/dandelion'), +(1359738 , 'dilling' , 'https://www.vinted.es/brand/dilling'), +(400413 , 'Dreambaby' , 'https://www.vinted.es/brand/dreambaby'), +(203866 , 'DREAM' , 'https://www.vinted.es/brand/dream'), +(332551 , 'Dreambee' , 'https://www.vinted.es/brand/dreambee'), +(298311 , 'Dreamstar' , 'https://www.vinted.es/brand/dreamstar'), +(328328 , 'Dreamland' , 'https://www.vinted.es/brand/dreamland'), +(368654 , 'Dreamcast' , 'https://www.vinted.es/brand/dreamcast'), +(277904 , 'Dreams' , 'https://www.vinted.es/brand/dreams'), +(553004 , 'DreamCatcher' , 'https://www.vinted.es/brand/dreamcatcher'), +(187260 , 'DREAMERS' , 'https://www.vinted.es/brand/dreamers'), +(118762 , 'DIFFERENT' , 'https://www.vinted.es/brand/different'), +(251304 , 'The Different Company' , 'https://www.vinted.es/brand/the-different-company'), +(1849823 , 'Dedoles' , 'https://www.vinted.es/brand/dedoles'), +(28035 , 'Danza' , 'https://www.vinted.es/brand/danza'), +(431310 , 'Dansaert' , 'https://www.vinted.es/brand/dansaert'), +(450384 , 'Dansaert Blue' , 'https://www.vinted.es/brand/dansaert-blue'), +(75170 , 'dazawa' , 'https://www.vinted.es/brand/dazawa'), +(821797 , 'Dansaert Black' , 'https://www.vinted.es/brand/dansaert-black'), +(104666 , 'D&A' , 'https://www.vinted.es/brand/da'), +(743268 , 'D+AF' , 'https://www.vinted.es/brand/daf'), +(298202 , 'Dana Buchman' , 'https://www.vinted.es/brand/dana-buchman'), +(1687291 , 'Duet A&M' , 'https://www.vinted.es/brand/duet-am'), +(273231 , 'Domino' , 'https://www.vinted.es/brand/domino'), +(353009 , 'Domina' , 'https://www.vinted.es/brand/domina'), +(932435 , 'Dominique Ver Eecke' , 'https://www.vinted.es/brand/dominique-ver-eecke'), +(359377 , 'Dominique' , 'https://www.vinted.es/brand/dominique'), +(619768 , 'Donino' , 'https://www.vinted.es/brand/donino'), +(1270779 , 'Dominga' , 'https://www.vinted.es/brand/dominga'), +(14181 , 'Diamant' , 'https://www.vinted.es/brand/diamant'), +(403505 , 'Diamante' , 'https://www.vinted.es/brand/diamante'), +(225896 , 'DIAMANTINE' , 'https://www.vinted.es/brand/diamantine'), +(376825 , 'Diamante Blu' , 'https://www.vinted.es/brand/diamante-blu'), +(978656 , 'Diamantino' , 'https://www.vinted.es/brand/diamantino'), +(54113 , 'Diamantor' , 'https://www.vinted.es/brand/diamantor'), +(195348 , 'Diamant Angel' , 'https://www.vinted.es/brand/diamant-angel'), +(1001247 , 'DIAMANTE WEAR' , 'https://www.vinted.es/brand/diamante-wear'), +(1493664 , 'Diamentowe' , 'https://www.vinted.es/brand/diamentowe'), +(40215 , 'DEEPLY' , 'https://www.vinted.es/brand/deeply'), +(275748 , 'DORINA' , 'https://www.vinted.es/brand/dorina'), +(344236 , 'Doriani' , 'https://www.vinted.es/brand/doriani'), +(76808 , 'Doria' , 'https://www.vinted.es/brand/doria'), +(215898 , 'DORIANE' , 'https://www.vinted.es/brand/doriane'), +(4696265 , 'Doriane Bijoux' , 'https://www.vinted.es/brand/doriane-bijoux'), +(3959950 , 'Doriani cashmere' , 'https://www.vinted.es/brand/doriani-cashmere'), +(381874 , 'Doppelgänger' , 'https://www.vinted.es/brand/doppelganger'), +(5235 , 'Donaldson' , 'https://www.vinted.es/brand/donaldson'), +(181850 , 'Diptyque' , 'https://www.vinted.es/brand/diptyque'), +(628598 , 'DJ DUTCHJEANS' , 'https://www.vinted.es/brand/dj-dutchjeans'), +(601995 , 'DEUX' , 'https://www.vinted.es/brand/deux'), +(300733 , 'Deux coqs d''or' , 'https://www.vinted.es/brand/deux-coqs-dor'), +(196832 , 'Deux Two' , 'https://www.vinted.es/brand/deux-two'), +(297536 , 'Deux mois de vacances' , 'https://www.vinted.es/brand/deux-mois-de-vacances'), +(266860 , 'deux par deux' , 'https://www.vinted.es/brand/deux-par-deux'), +(95102 , 'deux lux' , 'https://www.vinted.es/brand/deux-lux'), +(252906 , 'D.Exterior' , 'https://www.vinted.es/brand/dexterior'), +(86028 , 'Dexter' , 'https://www.vinted.es/brand/dexter'), +(172514 , 'Deus' , 'https://www.vinted.es/brand/deus'), +(18301 , 'Dove' , 'https://www.vinted.es/brand/dove'), +(63116 , 'Dovely & Jo' , 'https://www.vinted.es/brand/dovely-jo'), +(7271603 , 'Palace x Dover Street Market' , 'https://www.vinted.es/brand/palace-x-dover-street-market'), +(320850 , 'Doremi' , 'https://www.vinted.es/brand/doremi'), +(34273 , 'Dope' , 'https://www.vinted.es/brand/dope'), +(132996 , 'Doré Doré' , 'https://www.vinted.es/brand/dore-dore'), +(573074 , 'Do Rego & Novoa' , 'https://www.vinted.es/brand/do-rego-novoa'), +(427708 , 'Doerak' , 'https://www.vinted.es/brand/doerak'), +(106976 , 'Dissident' , 'https://www.vinted.es/brand/dissident'), +(78920 , 'Diamond Supply Co.' , 'https://www.vinted.es/brand/diamond-supply-co'), +(227126 , 'Diamonds' , 'https://www.vinted.es/brand/diamonds'), +(6479583 , 'DiamondGroup' , 'https://www.vinted.es/brand/diamondgroup'), +(344324 , 'Diamonique' , 'https://www.vinted.es/brand/diamonique'), +(795260 , 'DOU DOU' , 'https://www.vinted.es/brand/dou-dou'), +(225902 , 'doudoussimo' , 'https://www.vinted.es/brand/doudoussimo'), +(227206 , 'DIGEL' , 'https://www.vinted.es/brand/digel'), +(417013 , 'Diele & Co' , 'https://www.vinted.es/brand/diele-co'), +(494140 , 'Dielmar' , 'https://www.vinted.es/brand/dielmar'), +(244200 , 'Diele Figo' , 'https://www.vinted.es/brand/diele-figo'), +(609258 , 'Die Lieben Sieben' , 'https://www.vinted.es/brand/die-lieben-sieben'), +(1493285 , 'Dielmann' , 'https://www.vinted.es/brand/dielmann'), +(459779 , 'Dexters' , 'https://www.vinted.es/brand/dexters'), +(1515873 , 'Deiters' , 'https://www.vinted.es/brand/deiters'), +(837893 , 'DUNS Sweden' , 'https://www.vinted.es/brand/duns-sweden'), +(72138 , 'Dries van Noten' , 'https://www.vinted.es/brand/dries-van-noten'), +(101718 , 'Danskin' , 'https://www.vinted.es/brand/danskin'), +(111484 , 'Dorado' , 'https://www.vinted.es/brand/dorado'), +(47391 , 'Dorndorf' , 'https://www.vinted.es/brand/dorndorf'), +(60602 , 'Remonte Dorndorf' , 'https://www.vinted.es/brand/remonte-dorndorf'), +(218008 , 'Doridorca' , 'https://www.vinted.es/brand/doridorca'), +(7450746 , 'Dora Cocker' , 'https://www.vinted.es/brand/dora-cocker'), +(178164 , 'De Fursac' , 'https://www.vinted.es/brand/de-fursac'), +(131444 , 'D.A.T.E.' , 'https://www.vinted.es/brand/date'), +(96296 , 'Diane Laury' , 'https://www.vinted.es/brand/diane-laury'), +(245396 , 'Definitions' , 'https://www.vinted.es/brand/definitions'), +(437861 , 'DEFINITION' , 'https://www.vinted.es/brand/definition'), +(64294 , 'DeCade' , 'https://www.vinted.es/brand/decade'), +(88392 , 'Deca De Vous À Nous' , 'https://www.vinted.es/brand/deca-de-vous-a-nous'), +(758912 , 'Decay' , 'https://www.vinted.es/brand/decay'), +(413674 , 'Decenio' , 'https://www.vinted.es/brand/decenio'), +(188084 , 'Devil Child' , 'https://www.vinted.es/brand/devil-child'), +(260104 , 'Designer`s' , 'https://www.vinted.es/brand/designers'), +(272283 , 'Designer''s Remix' , 'https://www.vinted.es/brand/designers-remix'), +(576358 , 'DESIGNERS SOCIETY' , 'https://www.vinted.es/brand/designers-society'), +(1863845 , 'Designers Originals' , 'https://www.vinted.es/brand/designers-originals'), +(583431 , 'Designers Guild' , 'https://www.vinted.es/brand/designers-guild'), +(7471 , 'Dolls' , 'https://www.vinted.es/brand/dolls'), +(42787 , 'Dolls Paris' , 'https://www.vinted.es/brand/dolls-paris'), +(1787090 , 'Dolly Noire' , 'https://www.vinted.es/brand/dolly-noire'), +(39773 , 'Dollhouse' , 'https://www.vinted.es/brand/dollhouse'), +(423365 , 'Dolssaci' , 'https://www.vinted.es/brand/dolssaci'), +(46907 , 'Dolly' , 'https://www.vinted.es/brand/dolly'), +(371555 , 'Dolly and Dotty' , 'https://www.vinted.es/brand/dolly-and-dotty'), +(52161 , 'Dolly Do' , 'https://www.vinted.es/brand/dolly-do'), +(162782 , 'Desires' , 'https://www.vinted.es/brand/desires'), +(911004 , 'The Desire Shop' , 'https://www.vinted.es/brand/the-desire-shop'), +(192160 , 'desirée' , 'https://www.vinted.es/brand/desiree'), +(277151 , 'Dombi' , 'https://www.vinted.es/brand/dombi'), +(302346 , 'domiva' , 'https://www.vinted.es/brand/domiva'), +(185166 , 'Domaine' , 'https://www.vinted.es/brand/domaine'), +(3178799 , 'Dom Bow Ties' , 'https://www.vinted.es/brand/dom-bow-ties'), +(217194 , 'Dorabella' , 'https://www.vinted.es/brand/dorabella'), +(455076 , 'DaWanda' , 'https://www.vinted.es/brand/dawanda'), +(313185 , 'Douceur d''interieur' , 'https://www.vinted.es/brand/douceur-dinterieur'), +(278481 , 'David Emanuel' , 'https://www.vinted.es/brand/david-emanuel'), +(2478854 , 'DLSB' , 'https://www.vinted.es/brand/dlsb'), +(356925 , 'DL Sport' , 'https://www.vinted.es/brand/dl-sport'), +(447283 , 'Dressmann' , 'https://www.vinted.es/brand/dressmann'), +(1389673 , 'Danhen' , 'https://www.vinted.es/brand/danhen'), +(533861 , 'Danefae' , 'https://www.vinted.es/brand/danefae'), +(7492761 , 'Dr. Denim' , 'https://www.vinted.es/brand/dr-denim'), +(171990 , 'DOC' , 'https://www.vinted.es/brand/doc'), +(337643 , 'Docksteps' , 'https://www.vinted.es/brand/docksteps'), +(155192 , 'DOCA' , 'https://www.vinted.es/brand/doca'), +(256106 , 'Doctor Cutillas' , 'https://www.vinted.es/brand/doctor-cutillas'), +(287263 , 'Docteur La Peluche' , 'https://www.vinted.es/brand/docteur-la-peluche'), +(578361 , 'Docayro' , 'https://www.vinted.es/brand/docayro'), +(572401 , 'Double Face' , 'https://www.vinted.es/brand/double-face'), +(177008 , 'Deborah Milano' , 'https://www.vinted.es/brand/deborah-milano'), +(172104 , 'Defonseca' , 'https://www.vinted.es/brand/defonseca'), +(169340 , 'd´Auvry' , 'https://www.vinted.es/brand/dauvry'), +(4514214 , 'd´Auvry Fundamentals' , 'https://www.vinted.es/brand/dauvry-fundamentals'), +(349985 , 'Down Up' , 'https://www.vinted.es/brand/down-up'), +(504771 , 'Desenio' , 'https://www.vinted.es/brand/desenio'), +(8433 , 'Derek Heart' , 'https://www.vinted.es/brand/derek-heart'), +(247428 , 'Dr. Kid' , 'https://www.vinted.es/brand/dr-kid'), +(84138 , 'Dreimaster' , 'https://www.vinted.es/brand/dreimaster'), +(72928 , 'DELSEY' , 'https://www.vinted.es/brand/delsey'), +(433415 , 'Devergo' , 'https://www.vinted.es/brand/devergo'), +(297669 , 'DOGNOSE' , 'https://www.vinted.es/brand/dognose'), +(457311 , 'Dospies' , 'https://www.vinted.es/brand/dospies'), +(3893 , 'Defi Mode' , 'https://www.vinted.es/brand/defi-mode'), +(435216 , 'Dr Brown''s' , 'https://www.vinted.es/brand/dr-browns'), +(182948 , 'Degré 7' , 'https://www.vinted.es/brand/degre-7'), +(303325 , 'Dutchy' , 'https://www.vinted.es/brand/dutchy'), +(1107805 , 'Dutch Dream Denim' , 'https://www.vinted.es/brand/dutch-dream-denim'), +(761609 , 'the dutch design bakery' , 'https://www.vinted.es/brand/the-dutch-design-bakery'), +(607407 , 'Dan John' , 'https://www.vinted.es/brand/dan-john'), +(424685 , 'DONSJE' , 'https://www.vinted.es/brand/donsje'), +(442420 , 'Donsje Amsterdam' , 'https://www.vinted.es/brand/donsje-amsterdam'), +(339738 , 'Daisy Fuentes' , 'https://www.vinted.es/brand/daisy-fuentes'), +(1500461 , 'DAILY BRAT' , 'https://www.vinted.es/brand/daily-brat'), +(6157529 , 'Daily7' , 'https://www.vinted.es/brand/daily7'), +(271746 , 'DASSY' , 'https://www.vinted.es/brand/dassy'), +(296091 , 'Daily Concepts' , 'https://www.vinted.es/brand/daily-concepts'), +(1289493 , 'Dormia' , 'https://www.vinted.es/brand/dormia'), +(160404 , 'D.Franklin' , 'https://www.vinted.es/brand/dfranklin'), +(11135 , 'Des Filles à la Vanillé' , 'https://www.vinted.es/brand/des-filles-a-la-vanille'), +(399017 , 'Dumbo' , 'https://www.vinted.es/brand/dumbo'), +(4805 , 'Dumond' , 'https://www.vinted.es/brand/dumond'), +(17 , 'Esprit' , 'https://www.vinted.es/brand/esprit'), +(375 , 'EDC by Esprit' , 'https://www.vinted.es/brand/edc-by-esprit'), +(5757947 , 'Esprit Collection' , 'https://www.vinted.es/brand/esprit-collection'), +(163288 , 'Esprit de la Mer' , 'https://www.vinted.es/brand/esprit-de-la-mer'), +(5751318 , 'Esprit Sport' , 'https://www.vinted.es/brand/esprit-sport'), +(1788867 , 'Esprit Home' , 'https://www.vinted.es/brand/esprit-home'), +(5764497 , 'Esprit Maternity' , 'https://www.vinted.es/brand/esprit-maternity'), +(5755140 , 'Esprit Shonen' , 'https://www.vinted.es/brand/esprit-shonen'), +(101 , 'Etam' , 'https://www.vinted.es/brand/etam'), +(271429 , 'ETQ Amsterdam' , 'https://www.vinted.es/brand/etq-amsterdam'), +(206986 , 'Etage' , 'https://www.vinted.es/brand/etage'), +(19899 , 'ETA' , 'https://www.vinted.es/brand/eta'), +(316850 , 'Etat libre d''Orange' , 'https://www.vinted.es/brand/etat-libre-dorange'), +(2761234 , 'Etape' , 'https://www.vinted.es/brand/etape'), +(13227 , 'Esmara' , 'https://www.vinted.es/brand/esmara'), +(289795 , 'Esmeralda' , 'https://www.vinted.es/brand/esmeralda'), +(304653 , 'Ergee' , 'https://www.vinted.es/brand/ergee'), +(1056919 , 'Ergeenomixx' , 'https://www.vinted.es/brand/ergeenomixx'), +(787 , 'Ellesse' , 'https://www.vinted.es/brand/ellesse'), +(6483 , 'Even&Odd' , 'https://www.vinted.es/brand/evenodd'), +(1146309 , 'Even&Odd Active' , 'https://www.vinted.es/brand/evenodd-active'), +(1921571 , 'Even&Odd Curvy' , 'https://www.vinted.es/brand/evenodd-curvy'), +(64618 , 'Easy Wear' , 'https://www.vinted.es/brand/easy-wear'), +(1441 , 'Emporio Armani' , 'https://www.vinted.es/brand/emporio-armani'), +(7440265 , 'Emporio Armani & C. P. Company' , 'https://www.vinted.es/brand/emporio-armani-c-p-company'), +(78 , 'éram' , 'https://www.vinted.es/brand/eram'), +(642737 , 'Ernsting''s family' , 'https://www.vinted.es/brand/ernstings-family'), +(184842 , 'Elisabetta Franchi' , 'https://www.vinted.es/brand/elisabetta-franchi'), +(179448 , 'Elefanten' , 'https://www.vinted.es/brand/elefanten'), +(178454 , 'Early Days' , 'https://www.vinted.es/brand/early-days'), +(225208 , 'Early day' , 'https://www.vinted.es/brand/early-day'), +(23717 , 'Energetics' , 'https://www.vinted.es/brand/energetics'), +(2037 , 'Element' , 'https://www.vinted.es/brand/element'), +(273594 , 'ELEMENTS' , 'https://www.vinted.es/brand/elements'), +(212042 , 'ÉlémenTerre' , 'https://www.vinted.es/brand/elementerre'), +(354821 , 'Elemente Clemente' , 'https://www.vinted.es/brand/elemente-clemente'), +(260188 , 'Elementz' , 'https://www.vinted.es/brand/elementz'), +(1561165 , 'Elementy' , 'https://www.vinted.es/brand/elementy'), +(2295130 , 'Elemental Herbology' , 'https://www.vinted.es/brand/elemental-herbology'), +(1389373 , 'Elementy Wear' , 'https://www.vinted.es/brand/elementy-wear'), +(379507 , 'Eleventy' , 'https://www.vinted.es/brand/eleventy'), +(561 , 'ECCO' , 'https://www.vinted.es/brand/ecco'), +(2006331 , 'eccomum' , 'https://www.vinted.es/brand/eccomum'), +(905837 , 'Eccolo' , 'https://www.vinted.es/brand/eccolo'), +(290404 , 'Ecoiffier' , 'https://www.vinted.es/brand/ecoiffier'), +(69326 , 'Eco' , 'https://www.vinted.es/brand/eco'), +(287794 , 'L''École des loisirs' , 'https://www.vinted.es/brand/lecole-des-loisirs'), +(30575 , 'ECKO UNLTD.' , 'https://www.vinted.es/brand/ecko-unltd'), +(721 , 'Eckö' , 'https://www.vinted.es/brand/ecko'), +(215334 , 'ECHO' , 'https://www.vinted.es/brand/echo'), +(531283 , 'Ecoalf' , 'https://www.vinted.es/brand/ecoalf'), +(489 , 'Eden Park' , 'https://www.vinted.es/brand/eden-park'), +(6169935 , 'adidas X Eden Park' , 'https://www.vinted.es/brand/adidas-x-eden-park'), +(303 , 'Eastpak' , 'https://www.vinted.es/brand/eastpak'), +(1135 , 'Essentiel' , 'https://www.vinted.es/brand/essentiel'), +(61428 , 'Essentiel Antwerp' , 'https://www.vinted.es/brand/essentiel-antwerp'), +(308786 , 'Essentiel B' , 'https://www.vinted.es/brand/essentiel-b'), +(99288 , 'Essentials' , 'https://www.vinted.es/brand/essentials'), +(177972 , 'Essential' , 'https://www.vinted.es/brand/essential'), +(233300 , 'The Essential One' , 'https://www.vinted.es/brand/the-essential-one'), +(687742 , 'essential garden' , 'https://www.vinted.es/brand/essential-garden'), +(13645 , 'Etirel' , 'https://www.vinted.es/brand/etirel'), +(12535 , 'EGO' , 'https://www.vinted.es/brand/ego'), +(449939 , 'Egon Von Furstenberg' , 'https://www.vinted.es/brand/egon-von-furstenberg'), +(89996 , 'Egon Furstenberg' , 'https://www.vinted.es/brand/egon-furstenberg'), +(3547358 , 'Ego Man' , 'https://www.vinted.es/brand/ego-man'), +(1493306 , 'Egoistin' , 'https://www.vinted.es/brand/egoistin'), +(514903 , 'Egg Family' , 'https://www.vinted.es/brand/egg-family'), +(621309 , 'Egan' , 'https://www.vinted.es/brand/egan'), +(15851 , 'EGERIE' , 'https://www.vinted.es/brand/egerie'), +(296282 , 'Eglantine' , 'https://www.vinted.es/brand/eglantine'), +(156846 , 'Egatex' , 'https://www.vinted.es/brand/egatex'), +(4694147 , 'Envie de Fraise' , 'https://www.vinted.es/brand/envie-de-fraise'), +(2187 , 'Everlast' , 'https://www.vinted.es/brand/everlast'), +(706416 , 'Engelbert Strauss' , 'https://www.vinted.es/brand/engelbert-strauss'), +(2317 , 'Eldys' , 'https://www.vinted.es/brand/eldys'), +(44249 , 'ELYSTON' , 'https://www.vinted.es/brand/elyston'), +(218778 , 'Elysee' , 'https://www.vinted.es/brand/elysee'), +(123676 , 'Eksept' , 'https://www.vinted.es/brand/eksept'), +(917644 , 'Eksept by Shoeby' , 'https://www.vinted.es/brand/eksept-by-shoeby'), +(687292 , 'Ekseption' , 'https://www.vinted.es/brand/ekseption'), +(186 , 'ELLE' , 'https://www.vinted.es/brand/elle'), +(311680 , 'ellepi' , 'https://www.vinted.es/brand/ellepi'), +(177146 , 'Elle est où la Mer' , 'https://www.vinted.es/brand/elle-est-ou-la-mer'), +(282912 , 'Ellen Rose' , 'https://www.vinted.es/brand/ellen-rose'), +(44955 , 'Ellen Blake' , 'https://www.vinted.es/brand/ellen-blake'), +(835563 , 'Ellemilla' , 'https://www.vinted.es/brand/ellemilla'), +(70262 , 'Ellebeline' , 'https://www.vinted.es/brand/ellebeline'), +(307633 , 'Ellenor' , 'https://www.vinted.es/brand/ellenor'), +(137064 , 'Ellen Amber' , 'https://www.vinted.es/brand/ellen-amber'), +(23199 , 'Evans' , 'https://www.vinted.es/brand/evans'), +(3300370 , 'Evans Lichfield' , 'https://www.vinted.es/brand/evans-lichfield'), +(184054 , 'EVANNA' , 'https://www.vinted.es/brand/evanna'), +(313158 , 'Eva Negri' , 'https://www.vinted.es/brand/eva-negri'), +(214282 , 'Eva Secret' , 'https://www.vinted.es/brand/eva-secret'), +(194122 , 'Evan Picone' , 'https://www.vinted.es/brand/evan-picone'), +(173690 , 'Evasion' , 'https://www.vinted.es/brand/evasion'), +(5251554 , 'Evangelisti World' , 'https://www.vinted.es/brand/evangelisti-world'), +(5204470 , 'evan kinori' , 'https://www.vinted.es/brand/evan-kinori'), +(287300 , 'Educa' , 'https://www.vinted.es/brand/educa'), +(306083 , 'Educo' , 'https://www.vinted.es/brand/educo'), +(866018 , 'Eduard Dressler' , 'https://www.vinted.es/brand/eduard-dressler'), +(5135 , 'Estée Lauder' , 'https://www.vinted.es/brand/estee-lauder'), +(2035 , 'Escada' , 'https://www.vinted.es/brand/escada'), +(47299 , 'Escada Sport' , 'https://www.vinted.es/brand/escada-sport'), +(344955 , 'Espada' , 'https://www.vinted.es/brand/espada'), +(9255853 , 'Elevenparis' , 'https://www.vinted.es/brand/elevenparis'), +(388676 , 'ELEGANTE' , 'https://www.vinted.es/brand/elegante'), +(53325 , 'EL GANSO' , 'https://www.vinted.es/brand/el-ganso'), +(416 , 'Elite' , 'https://www.vinted.es/brand/elite'), +(260776 , 'Easy Clothes' , 'https://www.vinted.es/brand/easy-clothes'), +(19369 , 'Elégance' , 'https://www.vinted.es/brand/elegance'), +(139220 , 'Elegant''s Deluxe' , 'https://www.vinted.es/brand/elegants-deluxe'), +(120306 , 'Elegant' , 'https://www.vinted.es/brand/elegant'), +(333608 , 'Elégance Paris' , 'https://www.vinted.es/brand/elegance-paris'), +(109468 , 'Elegant''s' , 'https://www.vinted.es/brand/elegants'), +(268705 , 'ELEGANT PARK' , 'https://www.vinted.es/brand/elegant-park'), +(174606 , 'Elegant Touch' , 'https://www.vinted.es/brand/elegant-touch'), +(204984 , 'Elegant Moments' , 'https://www.vinted.es/brand/elegant-moments'), +(8545 , 'Extenso' , 'https://www.vinted.es/brand/extenso'), +(80624 , 'Extenzo Paris' , 'https://www.vinted.es/brand/extenzo-paris'), +(285078 , 'Ergobaby' , 'https://www.vinted.es/brand/ergobaby'), +(109248 , 'Essence' , 'https://www.vinted.es/brand/essence'), +(279771 , 'Elite99' , 'https://www.vinted.es/brand/elite99'), +(6918026 , 'Elite Home' , 'https://www.vinted.es/brand/elite-home'), +(34407 , 'Elise Ryan' , 'https://www.vinted.es/brand/elise-ryan'), +(1127 , 'Elie Saab' , 'https://www.vinted.es/brand/elie-saab'), +(274025 , 'Elie Tahari' , 'https://www.vinted.es/brand/elie-tahari'), +(206346 , 'Eliot et Capucine' , 'https://www.vinted.es/brand/eliot-et-capucine'), +(1696496 , 'Elie MiGeer' , 'https://www.vinted.es/brand/elie-migeer'), +(827832 , 'Elise Store' , 'https://www.vinted.es/brand/elise-store'), +(275531 , 'Elise' , 'https://www.vinted.es/brand/elise'), +(17997 , 'ELORA' , 'https://www.vinted.es/brand/elora'), +(331832 , 'Elara' , 'https://www.vinted.es/brand/elara'), +(316561 , 'Eldorado' , 'https://www.vinted.es/brand/eldorado'), +(55239 , 'Expresso' , 'https://www.vinted.es/brand/expresso'), +(8515 , 'Express' , 'https://www.vinted.es/brand/express'), +(96080 , 'Express Design Studio' , 'https://www.vinted.es/brand/express-design-studio'), +(392250 , 'Expressions' , 'https://www.vinted.es/brand/expressions'), +(2032427 , 'Express Publishing' , 'https://www.vinted.es/brand/express-publishing'), +(45347 , 'Excellent' , 'https://www.vinted.es/brand/excellent'), +(1799200 , 'Excellent Houseware' , 'https://www.vinted.es/brand/excellent-houseware'), +(152028 , 'Excellence' , 'https://www.vinted.es/brand/excellence'), +(303894 , 'Europe Kids' , 'https://www.vinted.es/brand/europe-kids'), +(22291 , 'Encuentro' , 'https://www.vinted.es/brand/encuentro'), +(28877 , 'Enrico Coveri' , 'https://www.vinted.es/brand/enrico-coveri'), +(243604 , 'Emoji' , 'https://www.vinted.es/brand/emoji'), +(49327 , 'Emoi by Emonite' , 'https://www.vinted.es/brand/emoi-by-emonite'), +(11511 , 'Emotion' , 'https://www.vinted.es/brand/emotion'), +(125546 , 'Emotion Lingerie' , 'https://www.vinted.es/brand/emotion-lingerie'), +(295360 , 'émoi émoi' , 'https://www.vinted.es/brand/emoi-emoi'), +(214424 , 'Emozioni' , 'https://www.vinted.es/brand/emozioni'), +(7020357 , 'Emoi En Plus' , 'https://www.vinted.es/brand/emoi-en-plus'), +(15985 , 'Energie' , 'https://www.vinted.es/brand/energie'), +(684359 , 'Energiers' , 'https://www.vinted.es/brand/energiers'), +(186008 , 'Energie Fruit' , 'https://www.vinted.es/brand/energie-fruit'), +(10357 , 'Energetix' , 'https://www.vinted.es/brand/energetix'), +(363694 , 'Energiapura' , 'https://www.vinted.es/brand/energiapura'), +(328833 , 'Emidio Tucci' , 'https://www.vinted.es/brand/emidio-tucci'), +(12723 , 'ETRO' , 'https://www.vinted.es/brand/etro'), +(4766757 , 'Etro Home' , 'https://www.vinted.es/brand/etro-home'), +(6319 , 'Et Compagnie' , 'https://www.vinted.es/brand/et-compagnie'), +(7083 , 'Et Vous' , 'https://www.vinted.es/brand/et-vous'), +(127532 , 'Etoile' , 'https://www.vinted.es/brand/etoile'), +(68234 , 'Etoile Du Monde' , 'https://www.vinted.es/brand/etoile-du-monde'), +(49843 , 'Etrier' , 'https://www.vinted.es/brand/etrier'), +(262760 , 'Etoile D''Orient' , 'https://www.vinted.es/brand/etoile-dorient'), +(53207 , 'E-vie' , 'https://www.vinted.es/brand/e-vie'), +(456663 , 'E-vie Angel' , 'https://www.vinted.es/brand/e-vie-angel'), +(70286 , 'Evis' , 'https://www.vinted.es/brand/evis'), +(30759 , 'EMP' , 'https://www.vinted.es/brand/emp'), +(49501 , 'Emporio' , 'https://www.vinted.es/brand/emporio'), +(722119 , 'Emporio 88' , 'https://www.vinted.es/brand/emporio-88'), +(140810 , 'Empreinte' , 'https://www.vinted.es/brand/empreinte'), +(49349 , 'Emporium' , 'https://www.vinted.es/brand/emporium'), +(51485 , 'Empire' , 'https://www.vinted.es/brand/empire'), +(84194 , 'Empyre' , 'https://www.vinted.es/brand/empyre'), +(599917 , 'Empathie' , 'https://www.vinted.es/brand/empathie'), +(312701 , 'Emporio Junior' , 'https://www.vinted.es/brand/emporio-junior'), +(280742 , 'Easy' , 'https://www.vinted.es/brand/easy'), +(182412 , 'easy peasy' , 'https://www.vinted.es/brand/easy-peasy'), +(118360 , 'Easy Comfort' , 'https://www.vinted.es/brand/easy-comfort'), +(510076 , 'Easy Life' , 'https://www.vinted.es/brand/easy-life'), +(345192 , 'EASY LINE' , 'https://www.vinted.es/brand/easy-line'), +(175652 , 'Easy Paris' , 'https://www.vinted.es/brand/easy-paris'), +(326347 , 'Easywalker' , 'https://www.vinted.es/brand/easywalker'), +(519387 , 'EASYWALK' , 'https://www.vinted.es/brand/easywalk'), +(1761 , 'Ed Hardy' , 'https://www.vinted.es/brand/ed-hardy'), +(4696295 , 'EDHARDRY' , 'https://www.vinted.es/brand/edhardry'), +(368471 , 'ET' , 'https://www.vinted.es/brand/et'), +(13083 , 'Eternel' , 'https://www.vinted.es/brand/eternel'), +(163734 , 'Etxart & Panno' , 'https://www.vinted.es/brand/etxart-panno'), +(1391 , 'Etnies' , 'https://www.vinted.es/brand/etnies'), +(661418 , 'Etnica' , 'https://www.vinted.es/brand/etnica'), +(361327 , 'Esotiq' , 'https://www.vinted.es/brand/esotiq'), +(392725 , 'Enchantimals' , 'https://www.vinted.es/brand/enchantimals'), +(31903 , 'Elena Miro' , 'https://www.vinted.es/brand/elena-miro'), +(4208149 , 'ever.me' , 'https://www.vinted.es/brand/everme'), +(658795 , 'Edited' , 'https://www.vinted.es/brand/edited'), +(4186814 , 'edikted' , 'https://www.vinted.es/brand/edikted'), +(12289 , 'Emma & Ella' , 'https://www.vinted.es/brand/emma-ella'), +(419232 , 'endo.' , 'https://www.vinted.es/brand/endo'), +(447850 , 'ENDORFINA' , 'https://www.vinted.es/brand/endorfina'), +(2474395 , 'Empik' , 'https://www.vinted.es/brand/empik'), +(134354 , 'Empire du Mariage' , 'https://www.vinted.es/brand/empire-du-mariage'), +(349487 , 'EMO' , 'https://www.vinted.es/brand/emo'), +(512775 , 'Emory Park' , 'https://www.vinted.es/brand/emory-park'), +(103684 , 'Erreà' , 'https://www.vinted.es/brand/errea'), +(29993 , 'Espadrilles' , 'https://www.vinted.es/brand/espadrilles'), +(55133 , 'Enjoy' , 'https://www.vinted.es/brand/enjoy'), +(9874099 , 'EnjoyBase' , 'https://www.vinted.es/brand/enjoybase'), +(35657 , 'Enjoi' , 'https://www.vinted.es/brand/enjoi'), +(4417 , 'Eva & Lola' , 'https://www.vinted.es/brand/eva-lola'), +(1289 , 'és' , 'https://www.vinted.es/brand/es'), +(301659 , 'EA' , 'https://www.vinted.es/brand/ea'), +(192784 , 'El' , 'https://www.vinted.es/brand/el'), +(6036597 , 'EA7 Emporio Armani' , 'https://www.vinted.es/brand/ea7-emporio-armani'), +(302921 , 'Ea Games' , 'https://www.vinted.es/brand/ea-games'), +(343442 , 'EA Sports' , 'https://www.vinted.es/brand/ea-sports'), +(493618 , 'Emel' , 'https://www.vinted.es/brand/emel'), +(3946886 , 'Emery Rose' , 'https://www.vinted.es/brand/emery-rose'), +(10831 , 'Emilio Pucci' , 'https://www.vinted.es/brand/emilio-pucci'), +(194208 , 'Emile et Ida' , 'https://www.vinted.es/brand/emile-et-ida'), +(273722 , 'Emilio Luca' , 'https://www.vinted.es/brand/emilio-luca'), +(48107 , 'Emerica' , 'https://www.vinted.es/brand/emerica'), +(17971 , 'Emily' , 'https://www.vinted.es/brand/emily'), +(3275 , 'Emily The Strange' , 'https://www.vinted.es/brand/emily-the-strange'), +(1226449 , 'EMILIE KARSTON' , 'https://www.vinted.es/brand/emilie-karston'), +(56654 , 'Erima' , 'https://www.vinted.es/brand/erima'), +(164326 , 'Ermanno Scervino' , 'https://www.vinted.es/brand/ermanno-scervino'), +(220782 , 'Erika Cavallini' , 'https://www.vinted.es/brand/erika-cavallini'), +(1842577 , 'Erica Bellucci' , 'https://www.vinted.es/brand/erica-bellucci'), +(343547 , 'ERIKA' , 'https://www.vinted.es/brand/erika'), +(386678 , 'Erika Dance' , 'https://www.vinted.es/brand/erika-dance'), +(335618 , 'ERMANNO SCERVINO JUNIOR' , 'https://www.vinted.es/brand/ermanno-scervino-junior'), +(4685566 , 'Ermanno Ermanno' , 'https://www.vinted.es/brand/ermanno-ermanno'), +(1294822 , 'Erica Lyons' , 'https://www.vinted.es/brand/erica-lyons'), +(3674052 , 'Ermanno Gallamini' , 'https://www.vinted.es/brand/ermanno-gallamini'), +(252144 , 'Eat Ants' , 'https://www.vinted.es/brand/eat-ants'), +(54485 , 'Envy' , 'https://www.vinted.es/brand/envy'), +(100878 , 'Envog' , 'https://www.vinted.es/brand/envog'), +(31637 , 'ENVIE' , 'https://www.vinted.es/brand/envie'), +(48517 , 'Envii' , 'https://www.vinted.es/brand/envii'), +(565074 , 'Enval Soft' , 'https://www.vinted.es/brand/enval-soft'), +(3089404 , 'Enhypen' , 'https://www.vinted.es/brand/enhypen'), +(76428 , 'Enyce' , 'https://www.vinted.es/brand/enyce'), +(325417 , 'Envogue' , 'https://www.vinted.es/brand/envogue'), +(531642 , 'Enval' , 'https://www.vinted.es/brand/enval'), +(609865 , 'Egree' , 'https://www.vinted.es/brand/egree'), +(2939700 , 'EGREY' , 'https://www.vinted.es/brand/egrey'), +(20831 , 'Equi Théme' , 'https://www.vinted.es/brand/equi-theme'), +(157226 , 'Énfasis' , 'https://www.vinted.es/brand/enfasis'), +(6787 , 'Evita' , 'https://www.vinted.es/brand/evita'), +(278506 , 'Enos' , 'https://www.vinted.es/brand/enos'), +(289065 , 'Éditions Fleurus' , 'https://www.vinted.es/brand/editions-fleurus'), +(293766 , 'Editions Lito' , 'https://www.vinted.es/brand/editions-lito'), +(235 , 'Ellos' , 'https://www.vinted.es/brand/ellos'), +(40589 , 'Elios' , 'https://www.vinted.es/brand/elios'), +(324495 , 'Elfos' , 'https://www.vinted.es/brand/elfos'), +(26543 , 'Elle Sport' , 'https://www.vinted.es/brand/elle-sport'), +(1408388 , 'Ella Singh' , 'https://www.vinted.es/brand/ella-singh'), +(879832 , 'Ellis Faas' , 'https://www.vinted.es/brand/ellis-faas'), +(5251622 , 'Ellis Mhairi Cameron' , 'https://www.vinted.es/brand/ellis-mhairi-cameron'), +(4624238 , 'Elle Sasson' , 'https://www.vinted.es/brand/elle-sasson'), +(6827 , 'Extyn' , 'https://www.vinted.es/brand/extyn'), +(415702 , 'Exton' , 'https://www.vinted.es/brand/exton'), +(340932 , 'Extend' , 'https://www.vinted.es/brand/extend'), +(135164 , 'Eterna' , 'https://www.vinted.es/brand/eterna'), +(327491 , 'ETERNAL love' , 'https://www.vinted.es/brand/eternal-love'), +(57746 , 'Elogy' , 'https://www.vinted.es/brand/elogy'), +(870687 , 'Eloy' , 'https://www.vinted.es/brand/eloy'), +(20697 , 'Eliane et Lena' , 'https://www.vinted.es/brand/eliane-et-lena'), +(3063 , 'ENGLAND' , 'https://www.vinted.es/brand/england'), +(661754 , 'England Rugby' , 'https://www.vinted.es/brand/england-rugby'), +(167116 , 'Ever Pretty' , 'https://www.vinted.es/brand/ever-pretty'), +(351017 , 'Elemis' , 'https://www.vinted.es/brand/elemis'), +(379755 , 'Engel' , 'https://www.vinted.es/brand/engel'), +(351521 , 'Engelsrufer' , 'https://www.vinted.es/brand/engelsrufer'), +(328697 , '&Golf' , 'https://www.vinted.es/brand/golf'), +(312878 , 'English Factory' , 'https://www.vinted.es/brand/english-factory'), +(333256 , 'English Laundry' , 'https://www.vinted.es/brand/english-laundry'), +(367173 , 'English Home' , 'https://www.vinted.es/brand/english-home'), +(1041284 , 'English Tea Shop' , 'https://www.vinted.es/brand/english-tea-shop'), +(47643 , 'EDJI' , 'https://www.vinted.es/brand/edji'), +(175922 , 'Editions Atlas' , 'https://www.vinted.es/brand/editions-atlas'), +(391 , 'EDEIS.' , 'https://www.vinted.es/brand/edeis'), +(4471 , 'Edwin' , 'https://www.vinted.es/brand/edwin'), +(437436 , 'Eddie Pen' , 'https://www.vinted.es/brand/eddie-pen'), +(171596 , 'EDEIS by LA REDOUTE' , 'https://www.vinted.es/brand/edeis-by-la-redoute'), +(295089 , 'Glénat' , 'https://www.vinted.es/brand/glenat'), +(2160795 , 'Editrice Giochi' , 'https://www.vinted.es/brand/editrice-giochi'), +(1339 , 'Edisac' , 'https://www.vinted.es/brand/edisac'), +(4690935 , 'Eseoese' , 'https://www.vinted.es/brand/eseoese'), +(167350 , 'ERYNN' , 'https://www.vinted.es/brand/erynn'), +(130608 , 'Elsa' , 'https://www.vinted.es/brand/elsa'), +(498474 , 'Elsa Ducci' , 'https://www.vinted.es/brand/elsa-ducci'), +(88410 , 'Elsa Lee' , 'https://www.vinted.es/brand/elsa-lee'), +(3229345 , 'Elsa Barreto' , 'https://www.vinted.es/brand/elsa-barreto'), +(344621 , 'Elsa Esturgie' , 'https://www.vinted.es/brand/elsa-esturgie'), +(687 , 'L''Oréal' , 'https://www.vinted.es/brand/loreal'), +(212192 , 'Elsy' , 'https://www.vinted.es/brand/elsy'), +(220590 , 'EIGHT PARIS' , 'https://www.vinted.es/brand/eight-paris'), +(357957 , 'Eight2Nine' , 'https://www.vinted.es/brand/eight2nine'), +(2935 , 'Elizabeth Stuart' , 'https://www.vinted.es/brand/elizabeth-stuart'), +(475 , 'Elisabeth Stuart' , 'https://www.vinted.es/brand/elisabeth-stuart'), +(4923 , 'Ecote' , 'https://www.vinted.es/brand/ecote'), +(333212 , 'Ecosusi' , 'https://www.vinted.es/brand/ecosusi'), +(1191065 , 'Ecooking' , 'https://www.vinted.es/brand/ecooking'), +(175850 , 'ecotools' , 'https://www.vinted.es/brand/ecotools'), +(361992 , 'Eco by NATY' , 'https://www.vinted.es/brand/eco-by-naty'), +(808337 , 'ecowish' , 'https://www.vinted.es/brand/ecowish'), +(351433 , 'Evima' , 'https://www.vinted.es/brand/evima'), +(174610 , 'Evetane' , 'https://www.vinted.es/brand/evetane'), +(3339 , 'Evian' , 'https://www.vinted.es/brand/evian'), +(2801866 , 'Edwin Jagger' , 'https://www.vinted.es/brand/edwin-jagger'), +(135778 , 'Edwige' , 'https://www.vinted.es/brand/edwige'), +(372823 , 'Edding' , 'https://www.vinted.es/brand/edding'), +(281362 , 'EWM' , 'https://www.vinted.es/brand/ewm'), +(250296 , 'edina ronay' , 'https://www.vinted.es/brand/edina-ronay'), +(87 , 'eden' , 'https://www.vinted.es/brand/eden'), +(763599 , 'Eden & Victor' , 'https://www.vinted.es/brand/eden-victor'), +(555 , 'Eden Shoes' , 'https://www.vinted.es/brand/eden-shoes'), +(620625 , 'Eden et Victor' , 'https://www.vinted.es/brand/eden-et-victor'), +(104910 , 'Eden rock' , 'https://www.vinted.es/brand/eden-rock'), +(6088346 , 'Eden Power Corp' , 'https://www.vinted.es/brand/eden-power-corp'), +(3020488 , 'Edenberg' , 'https://www.vinted.es/brand/edenberg'), +(300619 , 'Eichhorn' , 'https://www.vinted.es/brand/eichhorn'), +(518501 , 'eichborn' , 'https://www.vinted.es/brand/eichborn'), +(110418 , 'Exclusive' , 'https://www.vinted.es/brand/exclusive'), +(15219 , 'El Naturalista' , 'https://www.vinted.es/brand/el-naturalista'), +(22269 , 'Eros' , 'https://www.vinted.es/brand/eros'), +(1905 , 'Ernest' , 'https://www.vinted.es/brand/ernest'), +(4691 , 'Eres' , 'https://www.vinted.es/brand/eres'), +(184530 , 'Ergos' , 'https://www.vinted.es/brand/ergos'), +(158596 , 'Eroke' , 'https://www.vinted.es/brand/eroke'), +(6285 , 'Erotokritos' , 'https://www.vinted.es/brand/erotokritos'), +(314497 , 'Erstwilder' , 'https://www.vinted.es/brand/erstwilder'), +(1717410 , 'Ernstes Design' , 'https://www.vinted.es/brand/ernstes-design'), +(659947 , 'Elyn.G' , 'https://www.vinted.es/brand/elyn-g'), +(331919 , 'Elly' , 'https://www.vinted.es/brand/elly'), +(295580 , 'Elsewhere' , 'https://www.vinted.es/brand/elsewhere'), +(225400 , 'Elodie Details' , 'https://www.vinted.es/brand/elodie-details'), +(206 , 'Ekyog' , 'https://www.vinted.es/brand/ekyog'), +(8299 , 'Enzoria' , 'https://www.vinted.es/brand/enzoria'), +(321077 , 'elli white' , 'https://www.vinted.es/brand/elli-white'), +(8883 , 'emo.i' , 'https://www.vinted.es/brand/emoi'), +(43717 , 'Emu' , 'https://www.vinted.es/brand/emu'), +(58698 , 'EMU Australia' , 'https://www.vinted.es/brand/emu-australia'), +(80938 , 'Ema blues' , 'https://www.vinted.es/brand/ema-blues'), +(214088 , 'Evisu' , 'https://www.vinted.es/brand/evisu'), +(7263753 , 'Palace x EVISU' , 'https://www.vinted.es/brand/palace-x-evisu'), +(49559 , 'Elisa Cavaletti' , 'https://www.vinted.es/brand/elisa-cavaletti'), +(147366 , 'East Pole' , 'https://www.vinted.es/brand/east-pole'), +(265483 , 'EAST' , 'https://www.vinted.es/brand/east'), +(328351 , 'EASTON' , 'https://www.vinted.es/brand/easton'), +(327081 , 'Eastex' , 'https://www.vinted.es/brand/eastex'), +(211276 , 'East West' , 'https://www.vinted.es/brand/east-west'), +(356918 , 'East Coast' , 'https://www.vinted.es/brand/east-coast'), +(610008 , 'East 5th' , 'https://www.vinted.es/brand/east-5th'), +(1010534 , 'The East Order' , 'https://www.vinted.es/brand/the-east-order'), +(484697 , 'Eastland' , 'https://www.vinted.es/brand/eastland'), +(174480 , 'Ermenegildo Zegna' , 'https://www.vinted.es/brand/ermenegildo-zegna'), +(40499 , 'Exquiss''s' , 'https://www.vinted.es/brand/exquisss'), +(1309 , 'Escandelle' , 'https://www.vinted.es/brand/escandelle'), +(32553 , 'Exé' , 'https://www.vinted.es/brand/exe'), +(99136 , 'Extè' , 'https://www.vinted.es/brand/exte'), +(218480 , 'Emile et Rose' , 'https://www.vinted.es/brand/emile-et-rose'), +(11765 , 'Episode' , 'https://www.vinted.es/brand/episode'), +(214004 , 'Eddie Bauer' , 'https://www.vinted.es/brand/eddie-bauer'), +(114772 , 'Eiki' , 'https://www.vinted.es/brand/eiki'), +(262610 , 'El caballo' , 'https://www.vinted.es/brand/el-caballo'), +(294433 , 'El Charro' , 'https://www.vinted.es/brand/el-charro'), +(240172 , 'El Campero' , 'https://www.vinted.es/brand/el-campero'), +(849496 , 'El Capote' , 'https://www.vinted.es/brand/el-capote'), +(488514 , 'ELC' , 'https://www.vinted.es/brand/elc'), +(850758 , 'El Cofre de la Moda' , 'https://www.vinted.es/brand/el-cofre-de-la-moda'), +(347381 , 'Elche' , 'https://www.vinted.es/brand/elche'), +(664039 , 'Early Learning Centre' , 'https://www.vinted.es/brand/early-learning-centre'), +(2201864 , 'El Casco' , 'https://www.vinted.es/brand/el-casco'), +(5791 , 'Ella' , 'https://www.vinted.es/brand/ella'), +(47325 , 'Ella Luna' , 'https://www.vinted.es/brand/ella-luna'), +(1495985 , 'ELLA italia' , 'https://www.vinted.es/brand/ella-italia'), +(404107 , 'El lagarto está llorando' , 'https://www.vinted.es/brand/el-lagarto-esta-llorando'), +(12383 , 'ella & moi' , 'https://www.vinted.es/brand/ella-moi'), +(97434 , 'Ella Lux' , 'https://www.vinted.es/brand/ella-lux'), +(360947 , 'ELL''A Paris' , 'https://www.vinted.es/brand/ella-paris'), +(265044 , 'Ella Fashion' , 'https://www.vinted.es/brand/ella-fashion'), +(176716 , 'Ella Bachè' , 'https://www.vinted.es/brand/ella-bache'), +(328373 , 'Ella Moss' , 'https://www.vinted.es/brand/ella-moss'), +(3119 , 'Emma Pernelle' , 'https://www.vinted.es/brand/emma-pernelle'), +(19477 , 'E-Bound' , 'https://www.vinted.es/brand/e-bound'), +(513704 , 'Eveline' , 'https://www.vinted.es/brand/eveline'), +(316792 , 'Evelin' , 'https://www.vinted.es/brand/evelin'), +(291531 , 'Evelin Brandt' , 'https://www.vinted.es/brand/evelin-brandt'), +(216772 , 'Encore' , 'https://www.vinted.es/brand/encore'), +(392863 , 'ENSORED' , 'https://www.vinted.es/brand/ensored'), +(377964 , 'Encor' , 'https://www.vinted.es/brand/encor'), +(380642 , 'En Créme' , 'https://www.vinted.es/brand/en-creme'), +(581569 , 'Encré' , 'https://www.vinted.es/brand/encre'), +(31197 , 'Eider' , 'https://www.vinted.es/brand/eider'), +(5251523 , 'EIDEIS BY LA REDOUTE' , 'https://www.vinted.es/brand/eideis-by-la-redoute'), +(918461 , 'ECHT' , 'https://www.vinted.es/brand/echt'), +(13369 , 'ECKO RED' , 'https://www.vinted.es/brand/ecko-red'), +(42769 , 'Emmanuelle Khanh' , 'https://www.vinted.es/brand/emmanuelle-khanh'), +(366983 , 'Emma & Ashley' , 'https://www.vinted.es/brand/emma-ashley'), +(104656 , 'Emma & Chloé' , 'https://www.vinted.es/brand/emma-chloe'), +(65904 , 'EMMA BLUE''S' , 'https://www.vinted.es/brand/emma-blues'), +(357518 , 'Emmanuel Schvili' , 'https://www.vinted.es/brand/emmanuel-schvili'), +(377120 , 'Emma & Gaia' , 'https://www.vinted.es/brand/emma-gaia'), +(312153 , 'Emma Lou' , 'https://www.vinted.es/brand/emma-lou'), +(33325 , 'Emma Rose' , 'https://www.vinted.es/brand/emma-rose'), +(289980 , 'ETUI' , 'https://www.vinted.es/brand/etui'), +(6451 , 'Et Dieu Créa La Femme' , 'https://www.vinted.es/brand/et-dieu-crea-la-femme'), +(25105 , 'Etincelle' , 'https://www.vinted.es/brand/etincelle'), +(276478 , 'Ethic' , 'https://www.vinted.es/brand/ethic'), +(348951 , 'Etiem' , 'https://www.vinted.es/brand/etiem'), +(398192 , 'EsQualo' , 'https://www.vinted.es/brand/esqualo'), +(2155 , 'Essie' , 'https://www.vinted.es/brand/essie'), +(264074 , 'Essenza' , 'https://www.vinted.es/brand/essenza'), +(60420 , 'Essensole' , 'https://www.vinted.es/brand/essensole'), +(463370 , 'Essere' , 'https://www.vinted.es/brand/essere'), +(347350 , 'elefun' , 'https://www.vinted.es/brand/elefun'), +(3116917 , 'Elefunt' , 'https://www.vinted.es/brand/elefunt'), +(18033 , 'Eric Bompard' , 'https://www.vinted.es/brand/eric-bompard'), +(10325 , 'Eleven' , 'https://www.vinted.es/brand/eleven'), +(251144 , 'Elevenses' , 'https://www.vinted.es/brand/elevenses'), +(7208312 , 'Sergio Tacchini x Elevenparis' , 'https://www.vinted.es/brand/sergio-tacchini-x-elevenparis'), +(1386230 , 'Eleven by Venus Williams' , 'https://www.vinted.es/brand/eleven-by-venus-williams'), +(15487 , 'e.l.f.' , 'https://www.vinted.es/brand/elf'), +(187142 , 'ELT' , 'https://www.vinted.es/brand/elt'), +(48683 , 'Eva Kayan' , 'https://www.vinted.es/brand/eva-kayan'), +(142720 , 'Elizabeth Arden' , 'https://www.vinted.es/brand/elizabeth-arden'), +(5334063 , 'Supreme x Emilio Pucci' , 'https://www.vinted.es/brand/supreme-x-emilio-pucci'), +(532702 , 'EMC' , 'https://www.vinted.es/brand/emc'), +(4912163 , 'EastEssence' , 'https://www.vinted.es/brand/eastessence'), +(444848 , 'Evento' , 'https://www.vinted.es/brand/evento'), +(93918 , 'Event' , 'https://www.vinted.es/brand/event'), +(401801 , 'Everton' , 'https://www.vinted.es/brand/everton'), +(39831 , 'Edge' , 'https://www.vinted.es/brand/edge'), +(748257 , 'Edge Street' , 'https://www.vinted.es/brand/edge-street'), +(4573 , 'Sam Edelman' , 'https://www.vinted.es/brand/sam-edelman'), +(361782 , 'El Nino' , 'https://www.vinted.es/brand/el-nino'), +(214038 , 'Ernesto' , 'https://www.vinted.es/brand/ernesto'), +(10623 , 'Ernest le Gamin' , 'https://www.vinted.es/brand/ernest-le-gamin'), +(146070 , 'Ernesto Esposito' , 'https://www.vinted.es/brand/ernesto-esposito'), +(1169670 , 'Ernest Leoty' , 'https://www.vinted.es/brand/ernest-leoty'), +(715924 , 'Ernest Jones' , 'https://www.vinted.es/brand/ernest-jones'), +(5862006 , 'ERNEST W. BAKER' , 'https://www.vinted.es/brand/ernest-w-baker'), +(9694756 , 'ernesta ceramics' , 'https://www.vinted.es/brand/ernesta-ceramics'), +(7643428 , 'Ernesta Statkute Jewellery' , 'https://www.vinted.es/brand/ernesta-statkute-jewellery'), +(978536 , 'Eredi Pisanò' , 'https://www.vinted.es/brand/eredi-pisano'), +(1372734 , 'Eredi del Duca' , 'https://www.vinted.es/brand/eredi-del-duca'), +(2064845 , 'Erbesi' , 'https://www.vinted.es/brand/erbesi'), +(532022 , 'En Fant' , 'https://www.vinted.es/brand/en-fant'), +(750156 , 'Enfant Terrible' , 'https://www.vinted.es/brand/enfant-terrible'), +(1885278 , 'Enfants Riches Déprimés' , 'https://www.vinted.es/brand/enfants-riches-deprimes'), +(467839 , 'Elvira' , 'https://www.vinted.es/brand/elvira'), +(179986 , 'Elvis & Jesus' , 'https://www.vinted.es/brand/elvis-jesus'), +(11265 , 'Esther' , 'https://www.vinted.es/brand/esther'), +(434081 , 'Esther.H' , 'https://www.vinted.es/brand/esther-h'), +(201140 , 'Esthederm' , 'https://www.vinted.es/brand/esthederm'), +(59758 , 'Ester Ken' , 'https://www.vinted.es/brand/ester-ken'), +(179482 , 'Estheme Cachemire' , 'https://www.vinted.es/brand/estheme-cachemire'), +(841149 , 'Estera' , 'https://www.vinted.es/brand/estera'), +(116694 , 'Everest' , 'https://www.vinted.es/brand/everest'), +(1982964 , 'EWM Pure Classics' , 'https://www.vinted.es/brand/ewm-pure-classics'), +(110702 , 'E-woman' , 'https://www.vinted.es/brand/e-woman'), +(499801 , 'Ewan' , 'https://www.vinted.es/brand/ewan'), +(406055 , 'ewers' , 'https://www.vinted.es/brand/ewers'), +(296876 , 'Ewa i Walla' , 'https://www.vinted.es/brand/ewa-i-walla'), +(46959 , 'Ewing' , 'https://www.vinted.es/brand/ewing'), +(415466 , 'Ewa' , 'https://www.vinted.es/brand/ewa'), +(895759 , 'Ew-Club' , 'https://www.vinted.es/brand/ew-club'), +(1384507 , 'Ewa Klucze' , 'https://www.vinted.es/brand/ewa-klucze'), +(16057 , 'e(x)it' , 'https://www.vinted.es/brand/exit'), +(312712 , 'Elisa Landri' , 'https://www.vinted.es/brand/elisa-landri'), +(2110985 , 'Edan' , 'https://www.vinted.es/brand/edan'), +(389418 , 'EDAS' , 'https://www.vinted.es/brand/edas'), +(174896 , 'Erborian' , 'https://www.vinted.es/brand/erborian'), +(269578 , 'Epop' , 'https://www.vinted.es/brand/epop'), +(301387 , 'Êpop Girls' , 'https://www.vinted.es/brand/epop-girls'), +(323644 , 'Êpop Boys' , 'https://www.vinted.es/brand/epop-boys'), +(336419 , 'Epop Girl' , 'https://www.vinted.es/brand/epop-girl'), +(337207 , 'Epoch' , 'https://www.vinted.es/brand/epoch'), +(327515 , 'Epoca' , 'https://www.vinted.es/brand/epoca'), +(1172128 , 'Epplejeck' , 'https://www.vinted.es/brand/epplejeck'), +(317313 , 'Epos' , 'https://www.vinted.es/brand/epos'), +(330033 , 'Eponyme' , 'https://www.vinted.es/brand/eponyme'), +(545957 , 'Emporio Time' , 'https://www.vinted.es/brand/emporio-time'), +(310801 , 'Emporio Balzani' , 'https://www.vinted.es/brand/emporio-balzani'), +(392290 , 'ELIZABETH' , 'https://www.vinted.es/brand/elizabeth'), +(429070 , 'Elizabeth Ascot' , 'https://www.vinted.es/brand/elizabeth-ascot'), +(56232 , 'elizabeth and james' , 'https://www.vinted.es/brand/elizabeth-and-james'), +(1224383 , 'Elizabeth Grant' , 'https://www.vinted.es/brand/elizabeth-grant'), +(802018 , 'Elizabeth Scott' , 'https://www.vinted.es/brand/elizabeth-scott'), +(293691 , 'Elisabeth Shannon' , 'https://www.vinted.es/brand/elisabeth-shannon'), +(1355875 , 'Elizabeth Passion' , 'https://www.vinted.es/brand/elizabeth-passion'), +(1145755 , 'Elizabeth Collection' , 'https://www.vinted.es/brand/elizabeth-collection'), +(5375 , 'Emamoda' , 'https://www.vinted.es/brand/emamoda'), +(832190 , 'Eva Minge' , 'https://www.vinted.es/brand/eva-minge'), +(38181 , 'Escorpion' , 'https://www.vinted.es/brand/escorpion'), +(98336 , 'Etnia Barcelona' , 'https://www.vinted.es/brand/etnia-barcelona'), +(2164740 , 'Ética' , 'https://www.vinted.es/brand/etica'), +(469429 , 'engbers' , 'https://www.vinted.es/brand/engbers'), +(1217 , 'Extra Me' , 'https://www.vinted.es/brand/extra-me'), +(69506 , 'Extreme' , 'https://www.vinted.es/brand/extreme'), +(408979 , 'The Extreme Collection' , 'https://www.vinted.es/brand/the-extreme-collection'), +(212406 , 'Extreme Land' , 'https://www.vinted.es/brand/extreme-land'), +(2081404 , 'Extreme Cashmere' , 'https://www.vinted.es/brand/extreme-cashmere'), +(4192356 , 'Extreme Fit' , 'https://www.vinted.es/brand/extreme-fit'), +(2165350 , 'Extreme Hobby' , 'https://www.vinted.es/brand/extreme-hobby'), +(46579 , 'Eureka' , 'https://www.vinted.es/brand/eureka'), +(328436 , 'Eureka Kids' , 'https://www.vinted.es/brand/eureka-kids'), +(1297926 , 'Emma Bridgewater' , 'https://www.vinted.es/brand/emma-bridgewater'), +(174532 , 'Eucerin' , 'https://www.vinted.es/brand/eucerin'), +(18207 , 'estrada' , 'https://www.vinted.es/brand/estrada'), +(236360 , 'Eskimo' , 'https://www.vinted.es/brand/eskimo'), +(543118 , 'ELENZA By L&L' , 'https://www.vinted.es/brand/elenza-by-ll'), +(30319 , 'Energy' , 'https://www.vinted.es/brand/energy'), +(219398 , 'EXPOSURE' , 'https://www.vinted.es/brand/exposure'), +(699430 , 'ELBRUS' , 'https://www.vinted.es/brand/elbrus'), +(6111 , 'Eva' , 'https://www.vinted.es/brand/eva'), +(43853 , 'Evalinka' , 'https://www.vinted.es/brand/evalinka'), +(800984 , 'Eva Castro' , 'https://www.vinted.es/brand/eva-castro'), +(6239 , 'Eva Tralala' , 'https://www.vinted.es/brand/eva-tralala'), +(852666 , 'Evaluna' , 'https://www.vinted.es/brand/evaluna'), +(289227 , 'Eva Fashion' , 'https://www.vinted.es/brand/eva-fashion'), +(214296 , 'Eva Rosa' , 'https://www.vinted.es/brand/eva-rosa'), +(216666 , 'EQUIPE DE FRANCE' , 'https://www.vinted.es/brand/equipe-de-france'), +(201772 , 'Elodie' , 'https://www.vinted.es/brand/elodie'), +(14775 , 'Esperance' , 'https://www.vinted.es/brand/esperance'), +(12531 , 'esperance paris' , 'https://www.vinted.es/brand/esperance-paris'), +(12191 , 'Emonite' , 'https://www.vinted.es/brand/emonite'), +(438031 , 'EUROPA' , 'https://www.vinted.es/brand/europa'), +(266141 , 'Europann' , 'https://www.vinted.es/brand/europann'), +(350945 , 'EuropaCorp' , 'https://www.vinted.es/brand/europacorp'), +(338632 , 'European Culture' , 'https://www.vinted.es/brand/european-culture'), +(2080229 , 'Ergobag' , 'https://www.vinted.es/brand/ergobag'), +(166266 , 'Este' , 'https://www.vinted.es/brand/este'), +(464339 , 'Estee Brown' , 'https://www.vinted.es/brand/estee-brown'), +(139440 , 'Estefania Marco' , 'https://www.vinted.es/brand/estefania-marco'), +(14431 , 'Estelle' , 'https://www.vinted.es/brand/estelle'), +(22343 , 'estellon' , 'https://www.vinted.es/brand/estellon'), +(15801 , 'ESTELLE FASHION' , 'https://www.vinted.es/brand/estelle-fashion'), +(233356 , 'Esteban' , 'https://www.vinted.es/brand/esteban'), +(45501 , 'Etincelle Couture' , 'https://www.vinted.es/brand/etincelle-couture'), +(7509811 , 'EnviSense' , 'https://www.vinted.es/brand/envisense'), +(1106063 , 'EAGLEMOSS COLLECTIONS' , 'https://www.vinted.es/brand/eaglemoss-collections'), +(362414 , 'Equilibre' , 'https://www.vinted.es/brand/equilibre'), +(359926 , 'Equilibra' , 'https://www.vinted.es/brand/equilibra'), +(465437 , 'Equilibrium' , 'https://www.vinted.es/brand/equilibrium'), +(844261 , 'Efteling' , 'https://www.vinted.es/brand/efteling'), +(336584 , 'Extasy' , 'https://www.vinted.es/brand/extasy'), +(553045 , 'Exxtasy' , 'https://www.vinted.es/brand/exxtasy'), +(317532 , 'Endura' , 'https://www.vinted.es/brand/endura'), +(254410 , 'Endurance' , 'https://www.vinted.es/brand/endurance'), +(200452 , 'Euro-Star' , 'https://www.vinted.es/brand/euro-star'), +(335385 , 'ERFO' , 'https://www.vinted.es/brand/erfo'), +(563520 , 'L''Erbolario' , 'https://www.vinted.es/brand/lerbolario'), +(361501 , 'ergoPouch' , 'https://www.vinted.es/brand/ergopouch'), +(166756 , 'Erfurt' , 'https://www.vinted.es/brand/erfurt'), +(187460 , 'Esisto' , 'https://www.vinted.es/brand/esisto'), +(191048 , 'Esito' , 'https://www.vinted.es/brand/esito'), +(206848 , 'Eldera' , 'https://www.vinted.es/brand/eldera'), +(2616222 , 'The Elder Statesman' , 'https://www.vinted.es/brand/the-elder-statesman'), +(44685 , 'Ethnic' , 'https://www.vinted.es/brand/ethnic'), +(8971 , 'Ethina' , 'https://www.vinted.es/brand/ethina'), +(262628 , 'Ethnic Blue' , 'https://www.vinted.es/brand/ethnic-blue'), +(1432240 , 'Ethique' , 'https://www.vinted.es/brand/ethique'), +(3650866 , 'ETHCS' , 'https://www.vinted.es/brand/ethcs'), +(2431652 , 'Emmiol' , 'https://www.vinted.es/brand/emmiol'), +(13807 , 'F&F' , 'https://www.vinted.es/brand/ff'), +(567184 , 'F&F Kids' , 'https://www.vinted.es/brand/ff-kids'), +(304369 , 'F**K' , 'https://www.vinted.es/brand/fk'), +(42167 , 'F&P' , 'https://www.vinted.es/brand/fp'), +(24733 , 'F&2' , 'https://www.vinted.es/brand/f2'), +(193018 , 'F & Co' , 'https://www.vinted.es/brand/f-co'), +(45443 , 'F&M' , 'https://www.vinted.es/brand/fm'), +(63780 , 'F&Y' , 'https://www.vinted.es/brand/fy'), +(166366 , 'F&X' , 'https://www.vinted.es/brand/fx'), +(251346 , 'F&E' , 'https://www.vinted.es/brand/fe'), +(5291 , 'FILA' , 'https://www.vinted.es/brand/fila'), +(117860 , 'fil à fil' , 'https://www.vinted.es/brand/fil-a-fil'), +(6088351 , 'Fila Kids' , 'https://www.vinted.es/brand/fila-kids'), +(218798 , 'FIFA' , 'https://www.vinted.es/brand/fifa'), +(314457 , 'Filou & Friends' , 'https://www.vinted.es/brand/filou-friends'), +(147056 , 'Filling Pieces' , 'https://www.vinted.es/brand/filling-pieces'), +(4587 , 'Fille à Suivre' , 'https://www.vinted.es/brand/fille-a-suivre'), +(79492 , 'Filippa K.' , 'https://www.vinted.es/brand/filippa-k'), +(271119 , 'Fiat' , 'https://www.vinted.es/brand/fiat'), +(187900 , 'Filorga' , 'https://www.vinted.es/brand/filorga'), +(12813 , 'Forever 21' , 'https://www.vinted.es/brand/forever-21'), +(7492755 , 'Juicy Couture X Forever 21' , 'https://www.vinted.es/brand/juicy-couture-x-forever-21'), +(27379 , 'Forever 18' , 'https://www.vinted.es/brand/forever-18'), +(295656 , 'Funko' , 'https://www.vinted.es/brand/funko'), +(506543 , 'FUNKY XS' , 'https://www.vinted.es/brand/funky-xs'), +(312366 , 'Funky' , 'https://www.vinted.es/brand/funky'), +(108078 , 'Funky Fresy' , 'https://www.vinted.es/brand/funky-fresy'), +(95268 , 'funky fish' , 'https://www.vinted.es/brand/funky-fish'), +(573896 , 'Funky Project' , 'https://www.vinted.es/brand/funky-project'), +(71842 , 'Funkydiva' , 'https://www.vinted.es/brand/funkydiva'), +(303794 , 'Funky Giraffe' , 'https://www.vinted.es/brand/funky-giraffe'), +(165834 , 'FUNKITA' , 'https://www.vinted.es/brand/funkita'), +(505415 , 'Funky Buddha' , 'https://www.vinted.es/brand/funky-buddha'), +(49455 , 'FB Sister' , 'https://www.vinted.es/brand/fb-sister'), +(236812 , 'Fisher Price' , 'https://www.vinted.es/brand/fisher-price'), +(779 , 'French Connection' , 'https://www.vinted.es/brand/french-connection'), +(2929 , 'Fred Perry' , 'https://www.vinted.es/brand/fred-perry'), +(4000998 , 'Raf Simons x Fred Perry' , 'https://www.vinted.es/brand/raf-simons-x-fred-perry'), +(4022828 , 'Fred Perry x Comme des Garçons' , 'https://www.vinted.es/brand/fred-perry-x-comme-des-garcons'), +(5015240 , 'Fred Perry x Amy Winehouse' , 'https://www.vinted.es/brand/fred-perry-x-amy-winehouse'), +(4405157 , 'Fred Perry x Stüssy' , 'https://www.vinted.es/brand/fred-perry-x-stussy'), +(6895153 , 'George Cox x Fred Perry' , 'https://www.vinted.es/brand/george-cox-x-fred-perry'), +(277699 , 'FatFace' , 'https://www.vinted.es/brand/fatface'), +(2203 , 'Fashion' , 'https://www.vinted.es/brand/fashion'), +(31657 , 'Fashion Private Company' , 'https://www.vinted.es/brand/fashion-private-company'), +(20053 , 'Fashion Jewelry' , 'https://www.vinted.es/brand/fashion-jewelry'), +(1849 , 'Fashion Express' , 'https://www.vinted.es/brand/fashion-express'), +(12411 , 'Fashion Union' , 'https://www.vinted.es/brand/fashion-union'), +(3783 , 'Fashion Studio' , 'https://www.vinted.es/brand/fashion-studio'), +(31233 , 'Fashion New York' , 'https://www.vinted.es/brand/fashion-new-york'), +(218860 , 'Fashion Jeans' , 'https://www.vinted.es/brand/fashion-jeans'), +(338479 , 'fashionova' , 'https://www.vinted.es/brand/fashionova'), +(275840 , 'Fashionelle' , 'https://www.vinted.es/brand/fashionelle'), +(305496 , 'Feetje' , 'https://www.vinted.es/brand/feetje'), +(591 , 'Fouganza' , 'https://www.vinted.es/brand/fouganza'), +(144500 , 'Fórmula Joven' , 'https://www.vinted.es/brand/formula-joven'), +(190084 , 'Fagottino' , 'https://www.vinted.es/brand/fagottino'), +(350031 , 'Femme' , 'https://www.vinted.es/brand/femme'), +(31353 , 'Femmes Je Vous Aime' , 'https://www.vinted.es/brand/femmes-je-vous-aime'), +(525559 , 'Femme Luxe' , 'https://www.vinted.es/brand/femme-luxe'), +(1123284 , 'Femestage' , 'https://www.vinted.es/brand/femestage'), +(5173 , 'Fossil' , 'https://www.vinted.es/brand/fossil'), +(1497282 , 'Fred & Flo' , 'https://www.vinted.es/brand/fred-flo'), +(5997 , 'Firefly' , 'https://www.vinted.es/brand/firefly'), +(1493440 , 'Fire and Flames' , 'https://www.vinted.es/brand/fire-and-flames'), +(280849 , 'Frozen' , 'https://www.vinted.es/brand/frozen'), +(303954 , 'froy & dind' , 'https://www.vinted.es/brand/froy-dind'), +(2077 , 'Fishbone' , 'https://www.vinted.es/brand/fishbone'), +(837254 , 'Fishbone Sister' , 'https://www.vinted.es/brand/fishbone-sister'), +(16917 , '5th Avenue' , 'https://www.vinted.es/brand/5th-avenue'), +(3995 , 'Fifilles Paris' , 'https://www.vinted.es/brand/fifilles-paris'), +(392417 , 'Fifty Four' , 'https://www.vinted.es/brand/fifty-four'), +(367886 , 'Fina Ejerique' , 'https://www.vinted.es/brand/fina-ejerique'), +(1293571 , 'Fifth House' , 'https://www.vinted.es/brand/fifth-house'), +(163156 , 'Final Fantasy' , 'https://www.vinted.es/brand/final-fantasy'), +(201220 , 'Figaret' , 'https://www.vinted.es/brand/figaret'), +(1347 , 'Fruit of the Loom' , 'https://www.vinted.es/brand/fruit-of-the-loom'), +(47713 , 'Fabrication Artisanale' , 'https://www.vinted.es/brand/fabrication-artisanale'), +(4335 , 'Fornarina' , 'https://www.vinted.es/brand/fornarina'), +(47125 , 'Formarina' , 'https://www.vinted.es/brand/formarina'), +(2707234 , 'Fox & Bunny' , 'https://www.vinted.es/brand/fox-bunny'), +(16659 , 'Furla' , 'https://www.vinted.es/brand/furla'), +(406457 , 'Furga' , 'https://www.vinted.es/brand/furga'), +(477597 , 'Furia Rossa' , 'https://www.vinted.es/brand/furia-rossa'), +(104694 , 'fullah sugah' , 'https://www.vinted.es/brand/fullah-sugah'), +(1403932 , 'Fullamoda' , 'https://www.vinted.es/brand/fullamoda'), +(347266 , 'Fulla' , 'https://www.vinted.es/brand/fulla'), +(4326236 , 'Furling by Giani' , 'https://www.vinted.es/brand/furling-by-giani'), +(7559574 , 'Fulara & Żywczyk' , 'https://www.vinted.es/brand/fulara-zywczyk'), +(1189 , 'Fendi' , 'https://www.vinted.es/brand/fendi'), +(132184 , 'Fendissime' , 'https://www.vinted.es/brand/fendissime'), +(7133919 , 'Fendi x Versace' , 'https://www.vinted.es/brand/fendi-x-versace'), +(6345830 , 'Fendi x Skims' , 'https://www.vinted.es/brand/fendi-x-skims'), +(310240 , 'Fenix' , 'https://www.vinted.es/brand/fenix'), +(292659 , 'F&D' , 'https://www.vinted.es/brand/fd'), +(541189 , 'Fendt' , 'https://www.vinted.es/brand/fendt'), +(168156 , 'F&GIRL' , 'https://www.vinted.es/brand/fgirl'), +(217442 , 'Fender' , 'https://www.vinted.es/brand/fender'), +(1034781 , 'Foenix' , 'https://www.vinted.es/brand/foenix'), +(154852 , 'FSBN' , 'https://www.vinted.es/brand/fsbn'), +(221342 , 'FS Baby' , 'https://www.vinted.es/brand/fs-baby'), +(291990 , 'Frugi' , 'https://www.vinted.es/brand/frugi'), +(185908 , 'Fruit de Ma Passion' , 'https://www.vinted.es/brand/fruit-de-ma-passion'), +(190808 , 'Fragile' , 'https://www.vinted.es/brand/fragile'), +(18209 , 'Fruit De La Passion' , 'https://www.vinted.es/brand/fruit-de-la-passion'), +(19267 , 'Fru.it' , 'https://www.vinted.es/brand/fruit'), +(1186803 , 'Frugoo' , 'https://www.vinted.es/brand/frugoo'), +(258030 , 'Fruity Fashion' , 'https://www.vinted.es/brand/fruity-fashion'), +(1034981 , 'The Fruit Company' , 'https://www.vinted.es/brand/the-fruit-company'), +(6801 , 'Firetrap' , 'https://www.vinted.es/brand/firetrap'), +(380848 , 'Fortnite' , 'https://www.vinted.es/brand/fortnite'), +(157794 , 'Fashion Nova' , 'https://www.vinted.es/brand/fashion-nova'), +(4943 , 'Fantaisie' , 'https://www.vinted.es/brand/fantaisie'), +(179886 , 'Fantasie' , 'https://www.vinted.es/brand/fantasie'), +(6973 , 'Ferrari' , 'https://www.vinted.es/brand/ferrari'), +(5845352 , 'Puma x Ferrari' , 'https://www.vinted.es/brand/puma-x-ferrari'), +(7187939 , 'Tommy Hilfiger x Ferrari' , 'https://www.vinted.es/brand/tommy-hilfiger-x-ferrari'), +(834784 , 'Ferrerias' , 'https://www.vinted.es/brand/ferrerias'), +(2227 , 'Freegun' , 'https://www.vinted.es/brand/freegun'), +(3177584 , 'Free Juniors' , 'https://www.vinted.es/brand/free-juniors'), +(4983 , 'Free People' , 'https://www.vinted.es/brand/free-people'), +(46761 , 'Fiesta' , 'https://www.vinted.es/brand/fiesta'), +(487610 , 'Fiestas Guirca' , 'https://www.vinted.es/brand/fiestas-guirca'), +(429081 , 'Firstage' , 'https://www.vinted.es/brand/firstage'), +(187424 , 'FIRST AND I' , 'https://www.vinted.es/brand/first-and-i'), +(306497 , 'First Aid Beauty' , 'https://www.vinted.es/brand/first-aid-beauty'), +(532932 , 'First Avenue' , 'https://www.vinted.es/brand/first-avenue'), +(1107792 , 'First Aid to the Injured' , 'https://www.vinted.es/brand/first-aid-to-the-injured'), +(775 , 'Franklin & Marshall' , 'https://www.vinted.es/brand/franklin-marshall'), +(14925 , 'Fait-Maison' , 'https://www.vinted.es/brand/fait-maison'), +(1805 , 'Fórmul@' , 'https://www.vinted.es/brand/formul'), +(278917 , 'Flamenca' , 'https://www.vinted.es/brand/flamenca'), +(57064 , 'Flamenco' , 'https://www.vinted.es/brand/flamenco'), +(28 , 'Freeman T. Porter' , 'https://www.vinted.es/brand/freeman-t-porter'), +(205578 , 'Freestyle' , 'https://www.vinted.es/brand/freestyle'), +(10191 , 'Freddy' , 'https://www.vinted.es/brand/freddy'), +(198296 , 'Fred de la Bretoniere' , 'https://www.vinted.es/brand/fred-de-la-bretoniere'), +(165780 , 'Freddies of Pinewood' , 'https://www.vinted.es/brand/freddies-of-pinewood'), +(189238 , 'Fay' , 'https://www.vinted.es/brand/fay'), +(393460 , 'Fayazi' , 'https://www.vinted.es/brand/fayazi'), +(510187 , 'Faye' , 'https://www.vinted.es/brand/faye'), +(2 , 'Fait Main' , 'https://www.vinted.es/brand/fait-main'), +(38843 , 'Fracomina' , 'https://www.vinted.es/brand/fracomina'), +(340682 , 'Francomina' , 'https://www.vinted.es/brand/francomina'), +(50659 , 'Fashion Jewerly' , 'https://www.vinted.es/brand/fashion-jewerly'), +(42031 , 'flame' , 'https://www.vinted.es/brand/flame'), +(5923399 , 'Flamera' , 'https://www.vinted.es/brand/flamera'), +(7811 , 'Flamant Rose' , 'https://www.vinted.es/brand/flamant-rose'), +(18355 , 'Flam Mode' , 'https://www.vinted.es/brand/flam-mode'), +(104144 , 'Flamingo' , 'https://www.vinted.es/brand/flamingo'), +(288158 , 'Flammarion' , 'https://www.vinted.es/brand/flammarion'), +(607508 , 'Flare' , 'https://www.vinted.es/brand/flare'), +(265910 , 'Flamingo''s' , 'https://www.vinted.es/brand/flamingos'), +(378906 , 'FC Barcelona' , 'https://www.vinted.es/brand/fc-barcelona'), +(147668 , 'Fabletics' , 'https://www.vinted.es/brand/fabletics'), +(13559 , 'Faith' , 'https://www.vinted.es/brand/faith'), +(14947 , 'Faith Connexion' , 'https://www.vinted.es/brand/faith-connexion'), +(434627 , 'Faithfull The Brand' , 'https://www.vinted.es/brand/faithfull-the-brand'), +(295433 , 'Faith and Joy' , 'https://www.vinted.es/brand/faith-and-joy'), +(183004 , 'Father & sons' , 'https://www.vinted.es/brand/father-sons'), +(3149 , 'Fox' , 'https://www.vinted.es/brand/fox'), +(173658 , 'Foxy Up' , 'https://www.vinted.es/brand/foxy-up'), +(395416 , 'Foxtrot' , 'https://www.vinted.es/brand/foxtrot'), +(24693 , 'Fox Racing' , 'https://www.vinted.es/brand/fox-racing'), +(84182 , 'Foxy' , 'https://www.vinted.es/brand/foxy'), +(678629 , 'FOX''S' , 'https://www.vinted.es/brand/foxs'), +(552905 , 'Foxiedox' , 'https://www.vinted.es/brand/foxiedox'), +(324444 , 'Foxhole' , 'https://www.vinted.es/brand/foxhole'), +(737494 , 'Foxcroft' , 'https://www.vinted.es/brand/foxcroft'), +(700009 , 'Fisherfield' , 'https://www.vinted.es/brand/fisherfield'), +(162400 , 'Fiorella Rubino' , 'https://www.vinted.es/brand/fiorella-rubino'), +(217828 , 'Florence + Fred' , 'https://www.vinted.es/brand/florence-fred'), +(2078366 , 'florence red' , 'https://www.vinted.es/brand/florence-red'), +(81026 , 'Fjällräven' , 'https://www.vinted.es/brand/fjallraven'), +(57542 , 'Farah' , 'https://www.vinted.es/brand/farah'), +(138688 , 'Farah Vintage' , 'https://www.vinted.es/brand/farah-vintage'), +(22407 , 'Farasion' , 'https://www.vinted.es/brand/farasion'), +(520613 , 'Farhi' , 'https://www.vinted.es/brand/farhi'), +(1257095 , 'Far Afield' , 'https://www.vinted.es/brand/far-afield'), +(6346921 , 'FPC' , 'https://www.vinted.es/brand/fpc'), +(6347939 , 'FPC Junior' , 'https://www.vinted.es/brand/fpc-junior'), +(363554 , 'FP so CITY' , 'https://www.vinted.es/brand/fp-so-city'), +(3951166 , 'FPM Milano' , 'https://www.vinted.es/brand/fpm-milano'), +(220718 , 'Freemouss' , 'https://www.vinted.es/brand/freemouss'), +(25305 , 'Fransa' , 'https://www.vinted.es/brand/fransa'), +(47129 , 'FranStyle' , 'https://www.vinted.es/brand/franstyle'), +(1237266 , 'Frans Molenaar' , 'https://www.vinted.es/brand/frans-molenaar'), +(504290 , 'Franca' , 'https://www.vinted.es/brand/franca'), +(227330 , 'Française des Jeux' , 'https://www.vinted.es/brand/francaise-des-jeux'), +(866062 , 'Franc Sarabia' , 'https://www.vinted.es/brand/franc-sarabia'), +(322955 , 'Frank and Oak' , 'https://www.vinted.es/brand/frank-and-oak'), +(376295 , 'Franca Luca' , 'https://www.vinted.es/brand/franca-luca'), +(310773 , 'Froddo' , 'https://www.vinted.es/brand/froddo'), +(3881207 , 'Fashion union petite' , 'https://www.vinted.es/brand/fashion-union-petite'), +(161876 , 'Festa' , 'https://www.vinted.es/brand/festa'), +(1024695 , 'Festa Moda' , 'https://www.vinted.es/brand/festa-moda'), +(902905 , 'Festamo' , 'https://www.vinted.es/brand/festamo'), +(13519 , 'Festina' , 'https://www.vinted.es/brand/festina'), +(275102 , 'Festissimo' , 'https://www.vinted.es/brand/festissimo'), +(2794650 , 'Forever' , 'https://www.vinted.es/brand/forever'), +(26001 , 'Forever Folie' , 'https://www.vinted.es/brand/forever-folie'), +(39969 , 'Forever New' , 'https://www.vinted.es/brand/forever-new'), +(40029 , 'Forever Unique' , 'https://www.vinted.es/brand/forever-unique'), +(159900 , 'Forever Young' , 'https://www.vinted.es/brand/forever-young'), +(335281 , 'Forever Friends' , 'https://www.vinted.es/brand/forever-friends'), +(2078364 , 'For Ever Love' , 'https://www.vinted.es/brand/for-ever-love'), +(516419 , 'forever fit' , 'https://www.vinted.es/brand/forever-fit'), +(5041 , 'FREE LANCE' , 'https://www.vinted.es/brand/free-lance'), +(233530 , 'Friboo' , 'https://www.vinted.es/brand/friboo'), +(177024 , 'falcotto' , 'https://www.vinted.es/brand/falcotto'), +(415453 , 'Fabienne Chapot' , 'https://www.vinted.es/brand/fabienne-chapot'), +(7045 , 'Fiorelli' , 'https://www.vinted.es/brand/fiorelli'), +(6731 , 'Fiorella di Verdi' , 'https://www.vinted.es/brand/fiorella-di-verdi'), +(61794 , 'Fiorella' , 'https://www.vinted.es/brand/fiorella'), +(16365 , 'Façonnable' , 'https://www.vinted.es/brand/faconnable'), +(162872 , 'Flying Tiger' , 'https://www.vinted.es/brand/flying-tiger'), +(194988 , 'Fitbit' , 'https://www.vinted.es/brand/fitbit'), +(318429 , 'Fischer' , 'https://www.vinted.es/brand/fischer'), +(1053919 , 'fischertechnik' , 'https://www.vinted.es/brand/fischertechnik'), +(405030 , 'Fishermen' , 'https://www.vinted.es/brand/fishermen'), +(7822421 , 'Fichera Clothing' , 'https://www.vinted.es/brand/fichera-clothing'), +(381270 , 'Footkorner' , 'https://www.vinted.es/brand/footkorner'), +(6901 , 'FIMO' , 'https://www.vinted.es/brand/fimo'), +(12079 , 'Fiorucci' , 'https://www.vinted.es/brand/fiorucci'), +(223330 , 'Fiore' , 'https://www.vinted.es/brand/fiore'), +(322 , 'Fionella' , 'https://www.vinted.es/brand/fionella'), +(367237 , 'Fiori & Spine' , 'https://www.vinted.es/brand/fiori-spine'), +(58136 , 'Fionina' , 'https://www.vinted.es/brand/fionina'), +(308058 , 'Fun&Fun' , 'https://www.vinted.es/brand/funfun'), +(1649 , 'F.R.I.E.N.D.S' , 'https://www.vinted.es/brand/friends'), +(309527 , 'Fred & Ginger' , 'https://www.vinted.es/brand/fred-ginger'), +(5817854 , 'adidas x Fiorucci' , 'https://www.vinted.es/brand/adidas-x-fiorucci'), +(387001 , 'Freequent' , 'https://www.vinted.es/brand/freequent'), +(1979871 , 'free quest' , 'https://www.vinted.es/brand/free-quest'), +(12997 , 'Francoise Saget' , 'https://www.vinted.es/brand/francoise-saget'), +(574482 , 'Fiorentina' , 'https://www.vinted.es/brand/fiorentina'), +(220356 , 'Fiorentini & Baker' , 'https://www.vinted.es/brand/fiorentini-baker'), +(371820 , 'FIORENTINO' , 'https://www.vinted.es/brand/fiorentino'), +(108448 , 'Fiorenti' , 'https://www.vinted.es/brand/fiorenti'), +(374751 , 'Fiore di Lucia Milano' , 'https://www.vinted.es/brand/fiore-di-lucia-milano'), +(396711 , 'Fred Mello' , 'https://www.vinted.es/brand/fred-mello'), +(8153 , 'Follow Me' , 'https://www.vinted.es/brand/follow-me'), +(698827 , 'Finkid' , 'https://www.vinted.es/brand/finkid'), +(334877 , 'Finside' , 'https://www.vinted.es/brand/finside'), +(286694 , 'Fixoni' , 'https://www.vinted.es/brand/fixoni'), +(185528 , 'Fioni' , 'https://www.vinted.es/brand/fioni'), +(246006 , 'Fioni Night' , 'https://www.vinted.es/brand/fioni-night'), +(131182 , 'FitFlop' , 'https://www.vinted.es/brand/fitflop'), +(73132 , 'Freya' , 'https://www.vinted.es/brand/freya'), +(27175 , 'Freda' , 'https://www.vinted.es/brand/freda'), +(307280 , 'Freaky Nation' , 'https://www.vinted.es/brand/freaky-nation'), +(172446 , 'Frey Wille' , 'https://www.vinted.es/brand/frey-wille'), +(405034 , 'Freaks' , 'https://www.vinted.es/brand/freaks'), +(726975 , 'Frekans' , 'https://www.vinted.es/brand/frekans'), +(2034270 , 'Freda Salvador' , 'https://www.vinted.es/brand/freda-salvador'), +(3637 , 'Freesoul' , 'https://www.vinted.es/brand/freesoul'), +(307256 , 'Famosa' , 'https://www.vinted.es/brand/famosa'), +(6884636 , 'Famosa Desconocida' , 'https://www.vinted.es/brand/famosa-desconocida'), +(203292 , 'FAMONA' , 'https://www.vinted.es/brand/famona'), +(4696249 , 'Flora & Co' , 'https://www.vinted.es/brand/flora-co'), +(4696242 , 'Fc Bayern München' , 'https://www.vinted.es/brand/fc-bayern-munchen'), +(207570 , 'FFF' , 'https://www.vinted.es/brand/fff'), +(6697332 , 'Nike x FFF' , 'https://www.vinted.es/brand/nike-x-fff'), +(304268 , 'FFR' , 'https://www.vinted.es/brand/ffr'), +(211858 , 'FFC' , 'https://www.vinted.es/brand/ffc'), +(59606 , 'FFUZZIES' , 'https://www.vinted.es/brand/ffuzzies'), +(4705979 , 'Fferrone Design' , 'https://www.vinted.es/brand/fferrone-design'), +(6689877 , 'Jordan x FFBB' , 'https://www.vinted.es/brand/jordan-x-ffbb'), +(4766759 , 'Filippa K Soft Sport' , 'https://www.vinted.es/brand/filippa-k-soft-sport'), +(317429 , 'Frendz' , 'https://www.vinted.es/brand/frendz'), +(374718 , 'Friendz' , 'https://www.vinted.es/brand/friendz'), +(79278 , 'Frenzy' , 'https://www.vinted.es/brand/frenzy'), +(2786773 , 'Frenzlauer' , 'https://www.vinted.es/brand/frenzlauer'), +(421 , 'Fosco' , 'https://www.vinted.es/brand/fosco'), +(342650 , 'Fantasia' , 'https://www.vinted.es/brand/fantasia'), +(36757 , 'Fantazia' , 'https://www.vinted.es/brand/fantazia'), +(269853 , 'Fleurus' , 'https://www.vinted.es/brand/fleurus'), +(325557 , 'Fleurus Presse' , 'https://www.vinted.es/brand/fleurus-presse'), +(136856 , 'Fleur''s' , 'https://www.vinted.es/brand/fleurs'), +(616813 , 'Fleur Du Mal' , 'https://www.vinted.es/brand/fleur-du-mal'), +(224334 , 'Fly Girl' , 'https://www.vinted.es/brand/fly-girl'), +(95678 , 'Fly' , 'https://www.vinted.es/brand/fly'), +(122886 , 'Flyfor' , 'https://www.vinted.es/brand/flyfor'), +(56172 , 'Fly London' , 'https://www.vinted.es/brand/fly-london'), +(329236 , 'Flyfoz' , 'https://www.vinted.es/brand/flyfoz'), +(376718 , 'Fly Flot' , 'https://www.vinted.es/brand/fly-flot'), +(196004 , 'Fly53' , 'https://www.vinted.es/brand/fly53'), +(780222 , 'Fly Luxury' , 'https://www.vinted.es/brand/fly-luxury'), +(462248 , 'FLY Racing' , 'https://www.vinted.es/brand/fly-racing'), +(74046 , 'Fenn Wright Manson' , 'https://www.vinted.es/brand/fenn-wright-manson'), +(338027 , 'FRAU' , 'https://www.vinted.es/brand/frau'), +(4685088 , 'Fräulein 38' , 'https://www.vinted.es/brand/fraulein-38'), +(1176331 , 'Frauenschuh' , 'https://www.vinted.es/brand/frauenschuh'), +(729687 , 'Fräulein Stachelbeere' , 'https://www.vinted.es/brand/fraulein-stachelbeere'), +(1091759 , 'Fräulein Hübsch' , 'https://www.vinted.es/brand/fraulein-hubsch'), +(3405679 , 'Frau Huegel' , 'https://www.vinted.es/brand/frau-huegel'), +(3413705 , 'Fräulein Wunder' , 'https://www.vinted.es/brand/fraulein-wunder'), +(11521 , 'Marithé + François Girbaud' , 'https://www.vinted.es/brand/marithe-francois-girbaud'), +(317971 , 'Fenty Beauty' , 'https://www.vinted.es/brand/fenty-beauty'), +(207390 , 'FRNCH' , 'https://www.vinted.es/brand/frnch'), +(155830 , 'French Terry' , 'https://www.vinted.es/brand/french-terry'), +(334650 , 'FRENCH KISS' , 'https://www.vinted.es/brand/french-kiss'), +(690504 , 'Frenchy' , 'https://www.vinted.es/brand/frenchy'), +(824576 , 'Franchi' , 'https://www.vinted.es/brand/franchi'), +(120254 , 'FRENCH DISORDER' , 'https://www.vinted.es/brand/french-disorder'), +(260076 , 'Frenchy Yummy' , 'https://www.vinted.es/brand/frenchy-yummy'), +(160292 , 'French Kick' , 'https://www.vinted.es/brand/french-kick'), +(115774 , 'FRENCH COLLECTION' , 'https://www.vinted.es/brand/french-collection'), +(348703 , 'Fehn' , 'https://www.vinted.es/brand/fehn'), +(253 , 'Fenchurch' , 'https://www.vinted.es/brand/fenchurch'), +(296813 , 'Fenty' , 'https://www.vinted.es/brand/fenty'), +(650714 , 'Fenty x Puma' , 'https://www.vinted.es/brand/fenty-x-puma'), +(18599 , 'Furygan' , 'https://www.vinted.es/brand/furygan'), +(199790 , 'Furigan' , 'https://www.vinted.es/brand/furigan'), +(14497 , 'First' , 'https://www.vinted.es/brand/first'), +(937690 , 'The First Outlet' , 'https://www.vinted.es/brand/the-first-outlet'), +(384919 , 'First Editions' , 'https://www.vinted.es/brand/first-editions'), +(341266 , 'First Lady' , 'https://www.vinted.es/brand/first-lady'), +(218476 , 'First Impressions' , 'https://www.vinted.es/brand/first-impressions'), +(895478 , 'First Outlet' , 'https://www.vinted.es/brand/first-outlet'), +(204210 , 'First Class' , 'https://www.vinted.es/brand/first-class'), +(63826 , 'Fantasy' , 'https://www.vinted.es/brand/fantasy'), +(734438 , 'FANTASY FLIGHT GAMES' , 'https://www.vinted.es/brand/fantasy-flight-games'), +(4234760 , 'Forever New Petite' , 'https://www.vinted.es/brand/forever-new-petite'), +(4070622 , 'Forever New Curve' , 'https://www.vinted.es/brand/forever-new-curve'), +(4757656 , 'Forever Sewing' , 'https://www.vinted.es/brand/forever-sewing'), +(1383346 , 'Foto' , 'https://www.vinted.es/brand/foto'), +(9653 , 'Foot Locker' , 'https://www.vinted.es/brand/foot-locker'), +(191862 , 'FootJoy' , 'https://www.vinted.es/brand/footjoy'), +(28199 , 'FOOTSIDE' , 'https://www.vinted.es/brand/footside'), +(316368 , 'Footnotes' , 'https://www.vinted.es/brand/footnotes'), +(413575 , 'FootFlexx' , 'https://www.vinted.es/brand/footflexx'), +(289586 , 'Footwear' , 'https://www.vinted.es/brand/footwear'), +(171576 , 'FootGlove' , 'https://www.vinted.es/brand/footglove'), +(355849 , 'Footprints' , 'https://www.vinted.es/brand/footprints'), +(1613 , 'Faded Glory' , 'https://www.vinted.es/brand/faded-glory'), +(8511 , 'fugitive' , 'https://www.vinted.es/brand/fugitive'), +(191492 , 'Ferrache' , 'https://www.vinted.es/brand/ferrache'), +(218940 , 'F&H' , 'https://www.vinted.es/brand/fh'), +(10151 , 'FlashLights' , 'https://www.vinted.es/brand/flashlights'), +(256450 , 'Falke' , 'https://www.vinted.es/brand/falke'), +(751656 , 'FALKEN' , 'https://www.vinted.es/brand/falken'), +(39693 , 'Fallen' , 'https://www.vinted.es/brand/fallen'), +(267752 , 'Faliero Sarti' , 'https://www.vinted.es/brand/faliero-sarti'), +(360451 , 'Falmer Heritage' , 'https://www.vinted.es/brand/falmer-heritage'), +(936105 , 'Fake lab' , 'https://www.vinted.es/brand/fake-lab'), +(339480 , 'Falmer' , 'https://www.vinted.es/brand/falmer'), +(2111401 , 'Fake Bake' , 'https://www.vinted.es/brand/fake-bake'), +(2652612 , 'Fake Heroes' , 'https://www.vinted.es/brand/fake-heroes'), +(5251558 , 'Fake Alpha Vintage' , 'https://www.vinted.es/brand/fake-alpha-vintage'), +(14247 , 'Freesia' , 'https://www.vinted.es/brand/freesia'), +(468377 , 'Frenesia' , 'https://www.vinted.es/brand/frenesia'), +(730762 , 'FairyLoot' , 'https://www.vinted.es/brand/fairyloot'), +(304757 , 'Fairy' , 'https://www.vinted.es/brand/fairy'), +(389151 , 'FAIRY TAIL' , 'https://www.vinted.es/brand/fairy-tail'), +(234822 , 'Fairy Dust' , 'https://www.vinted.es/brand/fairy-dust'), +(9713 , 'Fairly' , 'https://www.vinted.es/brand/fairly'), +(38765 , 'Fairmount' , 'https://www.vinted.es/brand/fairmount'), +(69946 , 'Fair Lady' , 'https://www.vinted.es/brand/fair-lady'), +(416602 , 'Fair Trade' , 'https://www.vinted.es/brand/fair-trade'), +(712709 , 'Fair Play' , 'https://www.vinted.es/brand/fair-play'), +(1316170 , 'Fair in style by Jbc' , 'https://www.vinted.es/brand/fair-in-style-by-jbc'), +(29329 , 'Fusalp' , 'https://www.vinted.es/brand/fusalp'), +(7013797 , 'Fusalp x Sandro' , 'https://www.vinted.es/brand/fusalp-x-sandro'), +(266579 , 'Fabiani' , 'https://www.vinted.es/brand/fabiani'), +(74118 , 'Fabiana Filippi' , 'https://www.vinted.es/brand/fabiana-filippi'), +(824202 , 'Fabiana ferri' , 'https://www.vinted.es/brand/fabiana-ferri'), +(299489 , 'Frame' , 'https://www.vinted.es/brand/frame'), +(263544 , 'Frame Denim' , 'https://www.vinted.es/brand/frame-denim'), +(4216199 , 'Frame Chain' , 'https://www.vinted.es/brand/frame-chain'), +(3713338 , 'Framed' , 'https://www.vinted.es/brand/framed'), +(13005 , 'Fratelli Rossetti' , 'https://www.vinted.es/brand/fratelli-rossetti'), +(3343 , 'Frime' , 'https://www.vinted.es/brand/frime'), +(377373 , 'Framboise' , 'https://www.vinted.es/brand/framboise'), +(2314406 , 'Fragment Design' , 'https://www.vinted.es/brand/fragment-design'), +(5706162 , 'Nike x Sacai x Fragment Design' , 'https://www.vinted.es/brand/nike-x-sacai-x-fragment-design'), +(174178 , 'FNAC' , 'https://www.vinted.es/brand/fnac'), +(362921 , 'Find' , 'https://www.vinted.es/brand/find'), +(150614 , 'Findlay' , 'https://www.vinted.es/brand/findlay'), +(94482 , 'Finders Keepers' , 'https://www.vinted.es/brand/finders-keepers'), +(832427 , 'Finding Dory' , 'https://www.vinted.es/brand/finding-dory'), +(32761 , 'Finger in the nose' , 'https://www.vinted.es/brand/finger-in-the-nose'), +(6022039 , 'Fix Design' , 'https://www.vinted.es/brand/fix-design'), +(69896 , 'Finery' , 'https://www.vinted.es/brand/finery'), +(26149 , 'Fil d''écume' , 'https://www.vinted.es/brand/fil-decume'), +(5302093 , 'Copitraje' , 'https://www.vinted.es/brand/copitraje'), +(431558 , 'Foppapedretti' , 'https://www.vinted.es/brand/foppapedretti'), +(116834 , 'floriane' , 'https://www.vinted.es/brand/floriane'), +(394139 , 'Fireman Sam' , 'https://www.vinted.es/brand/fireman-sam'), +(11793 , 'Florence' , 'https://www.vinted.es/brand/florence'), +(52537 , 'Florence Kooijman' , 'https://www.vinted.es/brand/florence-kooijman'), +(1421140 , 'florence by mills' , 'https://www.vinted.es/brand/florence-by-mills'), +(940272 , 'Florence Bridge' , 'https://www.vinted.es/brand/florence-bridge'), +(320745 , 'Florencia' , 'https://www.vinted.es/brand/florencia'), +(643527 , 'From Future' , 'https://www.vinted.es/brand/from-future'), +(323229 , 'From' , 'https://www.vinted.es/brand/from'), +(212540 , 'From by Vestebene' , 'https://www.vinted.es/brand/from-by-vestebene'), +(4786523 , 'From The Road' , 'https://www.vinted.es/brand/from-the-road'), +(2199739 , 'From Babies with Love' , 'https://www.vinted.es/brand/from-babies-with-love'), +(12197 , 'froggy' , 'https://www.vinted.es/brand/froggy'), +(289697 , 'FCB' , 'https://www.vinted.es/brand/fcb'), +(215356 , 'FC' , 'https://www.vinted.es/brand/fc'), +(103308 , 'FC Jeans' , 'https://www.vinted.es/brand/fc-jeans'), +(808536 , 'St. Pauli' , 'https://www.vinted.es/brand/st-pauli'), +(807913 , 'FC Schalke 04' , 'https://www.vinted.es/brand/schalke-04'), +(1220559 , 'FC St. Pauli' , 'https://www.vinted.es/brand/fc-st-pauli'), +(944996 , 'Fish & Chips' , 'https://www.vinted.es/brand/fish-chips'), +(6393 , 'Fresh Made' , 'https://www.vinted.es/brand/fresh-made'), +(182816 , 'Forma' , 'https://www.vinted.es/brand/forma'), +(741813 , 'Format' , 'https://www.vinted.es/brand/format'), +(1383164 , 'Formano' , 'https://www.vinted.es/brand/formano'), +(4042829 , 'FOR MAX' , 'https://www.vinted.es/brand/for-max'), +(112490 , 'FORMEN' , 'https://www.vinted.es/brand/formen'), +(287258 , 'Formula Baby' , 'https://www.vinted.es/brand/formula-baby'), +(6757 , 'Fame' , 'https://www.vinted.es/brand/fame'), +(688667 , 'Fame Istanbul' , 'https://www.vinted.es/brand/fame-istanbul'), +(346719 , 'Famelin' , 'https://www.vinted.es/brand/famelin'), +(191878 , 'Fame and Partners' , 'https://www.vinted.es/brand/fame-and-partners'), +(498371 , 'Fame on you' , 'https://www.vinted.es/brand/fame-on-you'), +(1894688 , 'Fame Fashion' , 'https://www.vinted.es/brand/fame-fashion'), +(441929 , 'Faberlic' , 'https://www.vinted.es/brand/faberlic'), +(21437 , 'Famous' , 'https://www.vinted.es/brand/famous'), +(6853 , 'Friperie' , 'https://www.vinted.es/brand/friperie'), +(11571 , 'Friis & Company' , 'https://www.vinted.es/brand/friis-company'), +(221712 , 'Friendtex' , 'https://www.vinted.es/brand/friendtex'), +(339139 , 'Frieda & Freddies' , 'https://www.vinted.es/brand/frieda-freddies'), +(485918 , 'Friendly Fire' , 'https://www.vinted.es/brand/friendly-fire'), +(187796 , 'FRIEND OR FAUX' , 'https://www.vinted.es/brand/friend-or-faux'), +(293607 , 'Floryday' , 'https://www.vinted.es/brand/floryday'), +(44677 , 'FB' , 'https://www.vinted.es/brand/fb'), +(227878 , 'Forecast' , 'https://www.vinted.es/brand/forecast'), +(279987 , 'FRUTTA' , 'https://www.vinted.es/brand/frutta'), +(274061 , 'Fruttini' , 'https://www.vinted.es/brand/fruttini'), +(344176 , 'Fritzi aus Preußen' , 'https://www.vinted.es/brand/fritzi-aus-preussen'), +(2863743 , 'F&D Kids' , 'https://www.vinted.es/brand/fd-kids'), +(46093 , 'Francesco Milano' , 'https://www.vinted.es/brand/francesco-milano'), +(12595 , 'FAGUO' , 'https://www.vinted.es/brand/faguo'), +(456949 , 'Forpen' , 'https://www.vinted.es/brand/forpen'), +(237822 , 'Formentini' , 'https://www.vinted.es/brand/formentini'), +(885078 , 'For Pets Only' , 'https://www.vinted.es/brand/for-pets-only'), +(1502153 , 'Fred & Noah' , 'https://www.vinted.es/brand/fred-noah'), +(1798161 , 'fred & friends' , 'https://www.vinted.es/brand/fred-friends'), +(53089 , 'Fred Sabatier' , 'https://www.vinted.es/brand/fred-sabatier'), +(549 , 'Fde la passion' , 'https://www.vinted.es/brand/fde-la-passion'), +(314398 , 'FurReal' , 'https://www.vinted.es/brand/furreal'), +(69606 , 'Fancyqube' , 'https://www.vinted.es/brand/fancyqube'), +(17471 , 'Fancy' , 'https://www.vinted.es/brand/fancy'), +(357684 , 'Fancyinn' , 'https://www.vinted.es/brand/fancyinn'), +(177672 , 'Fanny Look' , 'https://www.vinted.es/brand/fanny-look'), +(94010 , 'Fanny' , 'https://www.vinted.es/brand/fanny'), +(24063 , 'FANCIL' , 'https://www.vinted.es/brand/fancil'), +(339650 , 'Fanty' , 'https://www.vinted.es/brand/fanty'), +(1575004 , 'Fanco' , 'https://www.vinted.es/brand/fanco'), +(1493657 , 'Fanny Kimika' , 'https://www.vinted.es/brand/fanny-kimika'), +(157386 , 'Fever' , 'https://www.vinted.es/brand/fever'), +(886671 , 'Feversave' , 'https://www.vinted.es/brand/feversave'), +(325987 , 'Fever London' , 'https://www.vinted.es/brand/fever-london'), +(297383 , 'FeverFish' , 'https://www.vinted.es/brand/feverfish'), +(7672078 , 'Fever Smart' , 'https://www.vinted.es/brand/fever-smart'), +(76950 , 'federal vintage' , 'https://www.vinted.es/brand/federal-vintage'), +(308815 , 'Feber' , 'https://www.vinted.es/brand/feber'), +(107278 , 'Fee Red' , 'https://www.vinted.es/brand/fee-red'), +(818141 , 'Federica Erre' , 'https://www.vinted.es/brand/federica-erre'), +(268079 , 'Feu Vert' , 'https://www.vinted.es/brand/feu-vert'), +(76320 , 'Frank Walder' , 'https://www.vinted.es/brand/frank-walder'), +(1302260 , 'Frank Walker' , 'https://www.vinted.es/brand/frank-walker'), +(74112 , 'Frida' , 'https://www.vinted.es/brand/frida'), +(7121 , 'Friday''s Project' , 'https://www.vinted.es/brand/fridays-project'), +(169564 , 'Friday' , 'https://www.vinted.es/brand/friday'), +(425566 , 'Frida Kahlo' , 'https://www.vinted.es/brand/frida-kahlo'), +(740752 , 'Friday on my mind' , 'https://www.vinted.es/brand/friday-on-my-mind'), +(263276 , 'FABRIC' , 'https://www.vinted.es/brand/fabric'), +(85150 , 'Fabrice Karel' , 'https://www.vinted.es/brand/fabrice-karel'), +(408486 , 'Fabric Flavours' , 'https://www.vinted.es/brand/fabric-flavours'), +(295230 , 'Fabrizio Lenzi' , 'https://www.vinted.es/brand/fabrizio-lenzi'), +(1151962 , 'Fabriano' , 'https://www.vinted.es/brand/fabriano'), +(200496 , 'Fabrika' , 'https://www.vinted.es/brand/fabrika'), +(207756 , 'Fabrizio' , 'https://www.vinted.es/brand/fabrizio'), +(1174592 , 'Fabrizio Viti' , 'https://www.vinted.es/brand/fabrizio-viti'), +(2935665 , 'Fabris Muenchen' , 'https://www.vinted.es/brand/fabris-muenchen'), +(807376 , 'Freemans' , 'https://www.vinted.es/brand/freemans'), +(1771 , 'FREEMAN' , 'https://www.vinted.es/brand/freeman'), +(173244 , 'Free Minds' , 'https://www.vinted.es/brand/free-minds'), +(6987 , 'The Free Banana' , 'https://www.vinted.es/brand/the-free-banana'), +(399901 , 'Foque' , 'https://www.vinted.es/brand/foque'), +(115646 , 'Flavio Castellani' , 'https://www.vinted.es/brand/flavio-castellani'), +(169142 , 'Frankie Morello' , 'https://www.vinted.es/brand/frankie-morello'), +(323096 , 'Family' , 'https://www.vinted.es/brand/family'), +(6901909 , 'Family first' , 'https://www.vinted.es/brand/family-first'), +(573195 , 'Family First Milano' , 'https://www.vinted.es/brand/family-first-milano'), +(114132 , 'Family Guy' , 'https://www.vinted.es/brand/family-guy'), +(4399652 , 'Family Affair' , 'https://www.vinted.es/brand/family-affair'), +(943754 , 'Family concept' , 'https://www.vinted.es/brand/family-concept'), +(607017 , 'familiar' , 'https://www.vinted.es/brand/familiar'), +(313302 , 'Falconeri' , 'https://www.vinted.es/brand/falconeri'), +(275909 , 'Falcon' , 'https://www.vinted.es/brand/falcon'), +(939273 , 'Falcone' , 'https://www.vinted.es/brand/falcone'), +(220552 , 'Falco' , 'https://www.vinted.es/brand/falco'), +(241390 , 'FA Concept' , 'https://www.vinted.es/brand/fa-concept'), +(1769494 , 'fallon' , 'https://www.vinted.es/brand/fallon'), +(268143 , 'Floreiza' , 'https://www.vinted.es/brand/floreiza'), +(344794 , 'Frilivin' , 'https://www.vinted.es/brand/frilivin'), +(87358 , 'Feraud' , 'https://www.vinted.es/brand/feraud'), +(59348 , 'Frankie Garage' , 'https://www.vinted.es/brand/frankie-garage'), +(391549 , 'Forclaz' , 'https://www.vinted.es/brand/forclaz'), +(2877 , 'folia' , 'https://www.vinted.es/brand/folia'), +(349666 , 'Folieke' , 'https://www.vinted.es/brand/folieke'), +(287814 , 'Folio Junior' , 'https://www.vinted.es/brand/folio-junior'), +(110436 , 'Folie''s' , 'https://www.vinted.es/brand/folies'), +(4905430 , 'The Folio Society' , 'https://www.vinted.es/brand/the-folio-society'), +(104636 , 'Foli Folio' , 'https://www.vinted.es/brand/foli-folio'), +(301579 , 'Folio Cadet' , 'https://www.vinted.es/brand/folio-cadet'), +(5833080 , 'Folio' , 'https://www.vinted.es/brand/folio'), +(320949 , 'Folie Angel Paris' , 'https://www.vinted.es/brand/folie-angel-paris'), +(145948 , 'FitZ' , 'https://www.vinted.es/brand/fitz'), +(695648 , 'Fitz & Huxley' , 'https://www.vinted.es/brand/fitz-huxley'), +(309563 , 'Fizzy' , 'https://www.vinted.es/brand/fizzy'), +(42725 , 'Fittiway' , 'https://www.vinted.es/brand/fittiway'), +(15011 , 'Finzi' , 'https://www.vinted.es/brand/finzi'), +(265221 , 'Fit & Move' , 'https://www.vinted.es/brand/fit-move'), +(115844 , 'FIT' , 'https://www.vinted.es/brand/fit'), +(380947 , 'FITT' , 'https://www.vinted.es/brand/fitt'), +(4694592 , 'Felix Bühler' , 'https://www.vinted.es/brand/felix-buhler'), +(582395 , 'Fenzy' , 'https://www.vinted.es/brand/fenzy'), +(154330 , 'Farfallina' , 'https://www.vinted.es/brand/farfallina'), +(202680 , 'Fuchs Schmitt' , 'https://www.vinted.es/brand/fuchs-schmitt'), +(23283 , 'Francesco Biasia' , 'https://www.vinted.es/brand/francesco-biasia'), +(289146 , 'Folyfring' , 'https://www.vinted.es/brand/folyfring'), +(657159 , 'Farmer''s' , 'https://www.vinted.es/brand/farmers'), +(359285 , 'Folk' , 'https://www.vinted.es/brand/folk'), +(78952 , 'folli follie' , 'https://www.vinted.es/brand/folli-follie'), +(294603 , 'Follow Us' , 'https://www.vinted.es/brand/follow-us'), +(355172 , 'Fluffy' , 'https://www.vinted.es/brand/fluffy'), +(177456 , 'Fluff' , 'https://www.vinted.es/brand/fluff'), +(417155 , 'Fare' , 'https://www.vinted.es/brand/fare'), +(1286239 , 'Fare Bare' , 'https://www.vinted.es/brand/fare-bare'), +(68314 , 'Farrutx' , 'https://www.vinted.es/brand/farrutx'), +(201418 , 'Farfalla' , 'https://www.vinted.es/brand/farfalla'), +(7465 , 'Fred' , 'https://www.vinted.es/brand/fred'), +(72330 , 'Frederic M' , 'https://www.vinted.es/brand/frederic-m'), +(274266 , 'Frederic T.' , 'https://www.vinted.es/brand/frederic-t'), +(16223 , 'felmini' , 'https://www.vinted.es/brand/felmini'), +(5596988 , 'felmini wide fit' , 'https://www.vinted.es/brand/felmini-wide-fit'), +(331869 , 'Fellini' , 'https://www.vinted.es/brand/fellini'), +(12017 , 'Feminine' , 'https://www.vinted.es/brand/feminine'), +(5125 , 'Feminity' , 'https://www.vinted.es/brand/feminity'), +(696465 , 'Fortime' , 'https://www.vinted.es/brand/fortime'), +(874002 , 'Forti' , 'https://www.vinted.es/brand/forti'), +(351620 , 'Fortis' , 'https://www.vinted.es/brand/fortis'), +(236546 , 'Forte Forte' , 'https://www.vinted.es/brand/forte-forte'), +(267282 , 'Fortuna' , 'https://www.vinted.es/brand/fortuna'), +(444391 , 'FORTEZZA' , 'https://www.vinted.es/brand/fortezza'), +(814763 , 'Forte Dei Marmi Couture' , 'https://www.vinted.es/brand/forte-dei-marmi-couture'), +(375418 , 'For Girls' , 'https://www.vinted.es/brand/for-girls'), +(405915 , 'Forty' , 'https://www.vinted.es/brand/forty'), +(14951 , 'Fresh' , 'https://www.vinted.es/brand/fresh'), +(101660 , 'Fresh Brand' , 'https://www.vinted.es/brand/fresh-brand'), +(876546 , 'Freshly Cosmetics' , 'https://www.vinted.es/brand/freshly-cosmetics'), +(780889 , 'Fresh Hoods' , 'https://www.vinted.es/brand/fresh-hoods'), +(934013 , 'Freshman' , 'https://www.vinted.es/brand/freshman'), +(49783 , 'Freshtops' , 'https://www.vinted.es/brand/freshtops'), +(1539368 , 'Fresh & Rebel' , 'https://www.vinted.es/brand/fresh-rebel'), +(720843 , 'Freshlions' , 'https://www.vinted.es/brand/freshlions'), +(416673 , 'Fresh Produce' , 'https://www.vinted.es/brand/fresh-produce'), +(31581 , 'Five' , 'https://www.vinted.es/brand/five'), +(11890622 , 'Five Units' , 'https://www.vinted.es/brand/five-units'), +(451753 , 'Five Seasons' , 'https://www.vinted.es/brand/five-seasons'), +(114580 , 'Five Miles' , 'https://www.vinted.es/brand/five-miles'), +(4692664 , 'FiveFourFive' , 'https://www.vinted.es/brand/fivefourfive'), +(3810678 , '5Rue' , 'https://www.vinted.es/brand/5rue'), +(807439 , 'Fiver' , 'https://www.vinted.es/brand/fiver'), +(381621 , 'Five Ten' , 'https://www.vinted.es/brand/five-ten'), +(2650598 , 'FIVE CM' , 'https://www.vinted.es/brand/five-cm'), +(966720 , 'Fairline' , 'https://www.vinted.es/brand/fairline'), +(324803 , 'Figleaves' , 'https://www.vinted.es/brand/figleaves'), +(6965980 , 'Figleaves Curve' , 'https://www.vinted.es/brand/figleaves-curve'), +(398900 , 'Fluo' , 'https://www.vinted.es/brand/fluo'), +(36577 , 'Power Flower' , 'https://www.vinted.es/brand/power-flower'), +(15731 , 'Flo' , 'https://www.vinted.es/brand/flo'), +(88780 , 'Florentino' , 'https://www.vinted.es/brand/florentino'), +(197056 , 'Freebird' , 'https://www.vinted.es/brand/freebird'), +(21241 , 'Fuchsia Paris' , 'https://www.vinted.es/brand/fuchsia-paris'), +(7419 , 'Fleur De Sel' , 'https://www.vinted.es/brand/fleur-de-sel'), +(646473 , 'Filii' , 'https://www.vinted.es/brand/filii'), +(147116 , 'Filipine Lahoya' , 'https://www.vinted.es/brand/filipine-lahoya'), +(302685 , 'Filipe Sousa' , 'https://www.vinted.es/brand/filipe-sousa'), +(499068 , 'fillikid' , 'https://www.vinted.es/brand/fillikid'), +(851412 , 'Filibabba' , 'https://www.vinted.es/brand/filibabba'), +(675506 , 'FILIPPO' , 'https://www.vinted.es/brand/filippo'), +(149342 , 'Catarzi' , 'https://www.vinted.es/brand/catarzi'), +(816254 , 'Flamingos Life' , 'https://www.vinted.es/brand/flamingoslife'), +(564272 , 'Flaming Star' , 'https://www.vinted.es/brand/flaming-star'), +(1837 , 'Francinel' , 'https://www.vinted.es/brand/francinel'), +(177802 , 'Francine' , 'https://www.vinted.es/brand/francine'), +(112370 , 'Flormar' , 'https://www.vinted.es/brand/flormar'), +(63858 , 'Flair' , 'https://www.vinted.es/brand/flair'), +(153360 , 'Flirt' , 'https://www.vinted.es/brand/flirt'), +(2946638 , 'FLARE & BRUGG' , 'https://www.vinted.es/brand/flare-brugg'), +(5094476 , 'Flare Audio' , 'https://www.vinted.es/brand/flare-audio'), +(2280476 , 'Fairfax & Favor' , 'https://www.vinted.es/brand/fairfax-favor'), +(266011 , 'Furby' , 'https://www.vinted.es/brand/furby'), +(3912902 , 'Furbizia' , 'https://www.vinted.es/brand/furbizia'), +(484360 , 'FuRyu' , 'https://www.vinted.es/brand/furyu'), +(458002 , 'Fury' , 'https://www.vinted.es/brand/fury'), +(282950 , 'Flash' , 'https://www.vinted.es/brand/flash'), +(782033 , 'Flash Woman' , 'https://www.vinted.es/brand/flash-woman'), +(171360 , 'Franco Callegari' , 'https://www.vinted.es/brand/franco-callegari'), +(1204692 , 'Free Still' , 'https://www.vinted.es/brand/free-still'), +(1427404 , 'Femi stories' , 'https://www.vinted.es/brand/femi-stories'), +(1536825 , 'Flinq' , 'https://www.vinted.es/brand/flinq'), +(144 , 'Gémo' , 'https://www.vinted.es/brand/gemo'), +(267887 , 'Kids By Gémo' , 'https://www.vinted.es/brand/kids-by-gemo'), +(7405 , 'Georges Rech' , 'https://www.vinted.es/brand/georges-rech'), +(18005 , 'George' , 'https://www.vinted.es/brand/george'), +(41075 , 'Georges Franck' , 'https://www.vinted.es/brand/georges-franck'), +(1383 , 'George Rech' , 'https://www.vinted.es/brand/george-rech'), +(212366 , 'George Gina & Lucy' , 'https://www.vinted.es/brand/george-gina-lucy'), +(361999 , 'George J. Love' , 'https://www.vinted.es/brand/george-j-love'), +(43151 , 'Georges' , 'https://www.vinted.es/brand/georges'), +(49661 , 'George & Martha' , 'https://www.vinted.es/brand/george-martha'), +(20 , 'GUESS' , 'https://www.vinted.es/brand/guess'), +(1045 , 'Guess by Marciano' , 'https://www.vinted.es/brand/guess-by-marciano'), +(5770752 , 'Guess Jeans' , 'https://www.vinted.es/brand/guess-jeans'), +(851124 , 'Guess Kids' , 'https://www.vinted.es/brand/guess-kids'), +(339965 , 'Guess Baby' , 'https://www.vinted.es/brand/guess-baby'), +(4051 , 'gussaci' , 'https://www.vinted.es/brand/gussaci'), +(44177 , 'GUEST' , 'https://www.vinted.es/brand/guest'), +(5038774 , 'Guess x A$AP Rocky' , 'https://www.vinted.es/brand/guess-x-aap-rocky'), +(6 , 'GAP' , 'https://www.vinted.es/brand/gap'), +(291548 , 'GapKids' , 'https://www.vinted.es/brand/gapkids'), +(486472 , 'Gap Body' , 'https://www.vinted.es/brand/gap-body'), +(415986 , 'Gap Maternity' , 'https://www.vinted.es/brand/gap-maternity'), +(7440262 , 'Gap x Disney' , 'https://www.vinted.es/brand/gap-x-disney'), +(6582025 , 'Yeezy x Gap' , 'https://www.vinted.es/brand/yeezy-x-gap'), +(5792363 , 'Gap petite' , 'https://www.vinted.es/brand/gap-petite'), +(166992 , 'Gapa' , 'https://www.vinted.es/brand/gapa'), +(4955209 , 'GaPa Fashion' , 'https://www.vinted.es/brand/gapa-fashion'), +(1913 , 'Geox' , 'https://www.vinted.es/brand/geox'), +(19189 , 'Geographical Norway' , 'https://www.vinted.es/brand/geographical-norway'), +(22045 , 'Georgia Rose' , 'https://www.vinted.es/brand/georgia-rose'), +(451345 , 'Geospirit' , 'https://www.vinted.es/brand/geospirit'), +(17609 , 'Geologic' , 'https://www.vinted.es/brand/geologic'), +(90002 , 'Geonaute' , 'https://www.vinted.es/brand/geonaute'), +(258 , 'G-Star' , 'https://www.vinted.es/brand/g-star'), +(2782756 , 'G-Star RAW' , 'https://www.vinted.es/brand/g-star-raw'), +(1493516 , 'G-stage' , 'https://www.vinted.es/brand/g-stage'), +(67054 , 'Grain de Blé' , 'https://www.vinted.es/brand/grain-de-ble'), +(181576 , 'Graine de Blé' , 'https://www.vinted.es/brand/graine-de-ble'), +(565 , 'Grain de Malice' , 'https://www.vinted.es/brand/grain-de-malice'), +(8693 , 'Graine de Malice' , 'https://www.vinted.es/brand/graine-de-malice'), +(1493451 , 'Gran de Malice' , 'https://www.vinted.es/brand/gran-de-malice'), +(5553 , 'Graceland' , 'https://www.vinted.es/brand/graceland'), +(10541 , 'Grace & Mila' , 'https://www.vinted.es/brand/grace-mila'), +(98702 , 'Grace and Mila' , 'https://www.vinted.es/brand/grace-and-mila'), +(1205587 , 'Grace & Stella' , 'https://www.vinted.es/brand/grace-stella'), +(567 , 'Gucci' , 'https://www.vinted.es/brand/gucci'), +(6408486 , 'The North Face x Gucci' , 'https://www.vinted.es/brand/the-north-face-x-gucci'), +(7369981 , 'Gucci x adidas' , 'https://www.vinted.es/brand/gucci-x-adidas'), +(6096743 , 'Gucci x Disney' , 'https://www.vinted.es/brand/gucci-x-disney'), +(7492760 , 'Doraemon x Gucci' , 'https://www.vinted.es/brand/doraemon-x-gucci'), +(1739421 , 'Guscio' , 'https://www.vinted.es/brand/guscio'), +(469932 , 'Gucio' , 'https://www.vinted.es/brand/gucio'), +(188676 , 'Gymshark' , 'https://www.vinted.es/brand/gymshark'), +(6075 , 'GANT' , 'https://www.vinted.es/brand/gant'), +(173624 , 'Gantebs' , 'https://www.vinted.es/brand/gantebs'), +(313229 , 'Ganter' , 'https://www.vinted.es/brand/ganter'), +(5800952 , 'Gantos' , 'https://www.vinted.es/brand/gantos'), +(122698 , 'Gattinoni' , 'https://www.vinted.es/brand/gattinoni'), +(170650 , 'Ganni' , 'https://www.vinted.es/brand/ganni'), +(324471 , 'Gatti' , 'https://www.vinted.es/brand/gatti'), +(22271 , 'G-one' , 'https://www.vinted.es/brand/g-one'), +(5659 , 'Gat Rimon' , 'https://www.vinted.es/brand/gat-rimon'), +(224628 , 'G&G' , 'https://www.vinted.es/brand/gg'), +(280648 , 'Giacca' , 'https://www.vinted.es/brand/giacca'), +(279414 , 'Giancarlo Paoli' , 'https://www.vinted.es/brand/giancarlo-paoli'), +(171220 , 'Giancarlo' , 'https://www.vinted.es/brand/giancarlo'), +(1967019 , 'Giancarlo Petriglia' , 'https://www.vinted.es/brand/giancarlo-petriglia'), +(3813 , 'Garcia' , 'https://www.vinted.es/brand/garcia'), +(4690713 , 'Garcia Jeans' , 'https://www.vinted.es/brand/garcia-jeans'), +(274 , 'Galeries Lafayette' , 'https://www.vinted.es/brand/galeries-lafayette'), +(5527 , 'Gina Tricot' , 'https://www.vinted.es/brand/gina-tricot'), +(6285899 , 'Gina Tricot Mini' , 'https://www.vinted.es/brand/gina-tricot-mini'), +(7822422 , 'Aéryne x Gina Tricot' , 'https://www.vinted.es/brand/aeryne-x-gina-tricot'), +(18935 , 'Gildan' , 'https://www.vinted.es/brand/gildan'), +(147088 , 'Gil D''Auray' , 'https://www.vinted.es/brand/gil-dauray'), +(215510 , 'Gil Santucci' , 'https://www.vinted.es/brand/gil-santucci'), +(3505565 , 'GILDA & PEARL' , 'https://www.vinted.es/brand/gilda-pearl'), +(3113291 , 'Gilda Tohetti' , 'https://www.vinted.es/brand/gilda-tohetti'), +(179 , 'Gerard Darel' , 'https://www.vinted.es/brand/gerard-darel'), +(124558 , 'Gocco' , 'https://www.vinted.es/brand/gocco'), +(480546 , 'Goa collection' , 'https://www.vinted.es/brand/goa-collection'), +(1329830 , 'GOCCE DI ELENA' , 'https://www.vinted.es/brand/gocce-di-elena'), +(4942777 , 'GoComfy' , 'https://www.vinted.es/brand/gocomfy'), +(43457 , 'Gerry Weber' , 'https://www.vinted.es/brand/gerry-weber'), +(98268 , 'Girls' , 'https://www.vinted.es/brand/girls'), +(157460 , 'Girls Only' , 'https://www.vinted.es/brand/girls-only'), +(369964 , 'GIRLS COLLECTION' , 'https://www.vinted.es/brand/girls-collection'), +(492467 , 'Girls United' , 'https://www.vinted.es/brand/girls-united'), +(97684 , 'Girls Generation' , 'https://www.vinted.es/brand/girls-generation'), +(140874 , 'GIRLS ON FILM' , 'https://www.vinted.es/brand/girls-on-film'), +(218992 , 'Girls in Paris' , 'https://www.vinted.es/brand/girls-in-paris'), +(442691 , 'Girls Golf' , 'https://www.vinted.es/brand/girls-golf'), +(5892456 , 'Girls Without Clothes' , 'https://www.vinted.es/brand/girls-without-clothes'), +(169644 , 'GIRL' , 'https://www.vinted.es/brand/girl'), +(21571 , 'Glamorous' , 'https://www.vinted.es/brand/glamorous'), +(827311 , 'Glamorous by Strass' , 'https://www.vinted.es/brand/glamorous-by-strass'), +(5791781 , 'glamorous petite' , 'https://www.vinted.es/brand/glamorous-petite'), +(5789779 , 'Glamorous Curve' , 'https://www.vinted.es/brand/glamorous-curve'), +(5796873 , 'Glamorous Bloom' , 'https://www.vinted.es/brand/glamorous-bloom'), +(584513 , 'Glamorous Tall' , 'https://www.vinted.es/brand/glamorous-tall'), +(5833860 , 'glamorous wide fit' , 'https://www.vinted.es/brand/glamorous-wide-fit'), +(313189 , 'Glamorosa' , 'https://www.vinted.es/brand/glamorosa'), +(5949 , 'Gabor' , 'https://www.vinted.es/brand/gabor'), +(5795679 , 'gabor comfort' , 'https://www.vinted.es/brand/gabor-comfort'), +(41715 , 'gabriella vicenza' , 'https://www.vinted.es/brand/gabriella-vicenza'), +(354008 , 'Gabol' , 'https://www.vinted.es/brand/gabol'), +(493627 , 'Gabrielle' , 'https://www.vinted.es/brand/gabrielle'), +(232102 , 'Gabriella' , 'https://www.vinted.es/brand/gabriella'), +(396282 , 'Gabriel' , 'https://www.vinted.es/brand/gabriel'), +(942395 , 'Gabriel Rivaz' , 'https://www.vinted.es/brand/gabriel-rivaz'), +(1834581 , 'Gabriele Pasini' , 'https://www.vinted.es/brand/gabriele-pasini'), +(387773 , 'gabrini' , 'https://www.vinted.es/brand/gabrini'), +(24239 , 'Green Coast' , 'https://www.vinted.es/brand/green-coast'), +(1157988 , 'Gate21' , 'https://www.vinted.es/brand/gate21'), +(166350 , 'Gate' , 'https://www.vinted.es/brand/gate'), +(241386 , 'Gate Woman' , 'https://www.vinted.es/brand/gate-woman'), +(6037990 , 'Gate Home' , 'https://www.vinted.es/brand/gate-home'), +(366580 , 'GAëLLE Paris' , 'https://www.vinted.es/brand/gaelle-paris'), +(309795 , 'Gameboy' , 'https://www.vinted.es/brand/gameboy'), +(334851 , 'Game' , 'https://www.vinted.es/brand/game'), +(413604 , 'Games Workshop' , 'https://www.vinted.es/brand/games-workshop'), +(1141 , 'GAS' , 'https://www.vinted.es/brand/gas'), +(16089 , 'Gas Bijoux' , 'https://www.vinted.es/brand/gas-bijoux'), +(286695 , 'Gaspard' , 'https://www.vinted.es/brand/gaspard'), +(252630 , 'Gastone Lucioli' , 'https://www.vinted.es/brand/gastone-lucioli'), +(16131 , 'Gaspard Yurkievich' , 'https://www.vinted.es/brand/gaspard-yurkievich'), +(247122 , 'Gaston MILLE' , 'https://www.vinted.es/brand/gaston-mille'), +(59892 , 'Gaston Jaunet' , 'https://www.vinted.es/brand/gaston-jaunet'), +(706931 , 'GASOLINA' , 'https://www.vinted.es/brand/gasolina'), +(331127 , 'Gasoline' , 'https://www.vinted.es/brand/gasoline'), +(387536 , 'GASP' , 'https://www.vinted.es/brand/gasp'), +(227732 , 'Gina Benotti' , 'https://www.vinted.es/brand/gina-benotti'), +(10323 , 'Gaudi' , 'https://www.vinted.es/brand/gaudi'), +(305200 , 'GAUDI JEANS' , 'https://www.vinted.es/brand/gaudi-jeans'), +(278256 , 'Gautier' , 'https://www.vinted.es/brand/gautier'), +(289213 , 'Gautier Languereau' , 'https://www.vinted.es/brand/gautier-languereau'), +(170414 , 'Gaddis' , 'https://www.vinted.es/brand/gaddis'), +(3193 , 'Gaastra' , 'https://www.vinted.es/brand/gaastra'), +(2371 , 'Givenchy' , 'https://www.vinted.es/brand/givenchy'), +(158966 , 'Gina' , 'https://www.vinted.es/brand/gina'), +(226954 , 'Gina Bacconi' , 'https://www.vinted.es/brand/gina-bacconi'), +(236612 , 'Gina Laura' , 'https://www.vinted.es/brand/gina-laura'), +(1561075 , 'Gina Lebole' , 'https://www.vinted.es/brand/gina-lebole'), +(2443340 , 'Gina Mama' , 'https://www.vinted.es/brand/gina-mama'), +(455746 , 'Gina Piacci' , 'https://www.vinted.es/brand/gina-piacci'), +(4599 , 'Go Sport' , 'https://www.vinted.es/brand/go-sport'), +(16627 , 'Geisha' , 'https://www.vinted.es/brand/geisha'), +(315933 , 'GE SHAN PIN YUE' , 'https://www.vinted.es/brand/ge-shan-pin-yue'), +(88312 , 'Goliath' , 'https://www.vinted.es/brand/goliath'), +(51907 , 'GYMP' , 'https://www.vinted.es/brand/gymp'), +(186718 , 'Gymboree' , 'https://www.vinted.es/brand/gymboree'), +(266474 , 'GYM' , 'https://www.vinted.es/brand/gym'), +(306999 , 'Gymnasium' , 'https://www.vinted.es/brand/gymnasium'), +(378278 , 'Gym King' , 'https://www.vinted.es/brand/gym-king'), +(340137 , 'Gypsy' , 'https://www.vinted.es/brand/gypsy'), +(314276 , 'GYMWAY' , 'https://www.vinted.es/brand/gymway'), +(3383690 , 'Gypsy Soul' , 'https://www.vinted.es/brand/gypsy-soul'), +(1564912 , 'Gymeltics' , 'https://www.vinted.es/brand/gymeltics'), +(952390 , 'Greenpoint' , 'https://www.vinted.es/brand/greenpoint'), +(31559 , 'Gioseppo' , 'https://www.vinted.es/brand/gioseppo'), +(39941 , 'GiFi' , 'https://www.vinted.es/brand/gifi'), +(474992 , 'Gioielli' , 'https://www.vinted.es/brand/gioielli'), +(354497 , 'Givi' , 'https://www.vinted.es/brand/givi'), +(85784 , 'Gigi' , 'https://www.vinted.es/brand/gigi'), +(464034 , 'Gioia' , 'https://www.vinted.es/brand/gioia'), +(129814 , 'Gisicode' , 'https://www.vinted.es/brand/gisicode'), +(2038825 , 'Tommy Hilfiger x Gigi Hadid' , 'https://www.vinted.es/brand/tommy-hilfiger-x-gigi-hadid'), +(266765 , 'Gigi Clozeau' , 'https://www.vinted.es/brand/gigi-clozeau'), +(354759 , 'Gizia' , 'https://www.vinted.es/brand/gizia'), +(1578583 , 'Gigi Studios' , 'https://www.vinted.es/brand/gigi-studios'), +(174412 , 'Gino Rossi' , 'https://www.vinted.es/brand/gino-rossi'), +(38923 , 'Golden Goose' , 'https://www.vinted.es/brand/golden-goose'), +(344945 , 'GAMECUBE' , 'https://www.vinted.es/brand/gamecube'), +(285980 , 'Game of Thrones' , 'https://www.vinted.es/brand/game-of-thrones'), +(688321 , 'Games Hub' , 'https://www.vinted.es/brand/games-hub'), +(324305 , 'Gamet' , 'https://www.vinted.es/brand/gamet'), +(1409169 , 'Gamex' , 'https://www.vinted.es/brand/gamex'), +(5791771 , 'Gameday Couture' , 'https://www.vinted.es/brand/gameday-couture'), +(1667 , 'Guerlain' , 'https://www.vinted.es/brand/guerlain'), +(174180 , 'Garnier' , 'https://www.vinted.es/brand/garnier'), +(526800 , 'Garnier Thiebaut' , 'https://www.vinted.es/brand/garnier-thiebaut'), +(2843742 , 'Garnitex' , 'https://www.vinted.es/brand/garnitex'), +(125090 , 'GRANDS BOULEVARDS' , 'https://www.vinted.es/brand/grands-boulevards'), +(1933 , 'Gianfranco Ferre' , 'https://www.vinted.es/brand/gianfranco-ferre'), +(3067 , 'Guru' , 'https://www.vinted.es/brand/guru'), +(1547 , 'G Urban' , 'https://www.vinted.es/brand/g-urban'), +(4691067 , 'Gudrun Sjödén' , 'https://www.vinted.es/brand/gudrun-sjoden'), +(4745891 , 'Gurhan' , 'https://www.vinted.es/brand/gurhan'), +(1940447 , 'GUR' , 'https://www.vinted.es/brand/gur'), +(3218281 , 'Super-G' , 'https://www.vinted.es/brand/super-g'), +(10775 , 'Giuseppe Zanotti' , 'https://www.vinted.es/brand/giuseppe-zanotti'), +(287872 , 'Giochi Preziosi' , 'https://www.vinted.es/brand/giochi-preziosi'), +(5489 , 'Goa' , 'https://www.vinted.es/brand/goa'), +(237064 , 'GOGO' , 'https://www.vinted.es/brand/gogo'), +(224076 , 'Goa Goa' , 'https://www.vinted.es/brand/goa-goa'), +(133942 , 'Go Athli-Tech' , 'https://www.vinted.es/brand/go-athli-tech'), +(5227877 , 'Goa Woman' , 'https://www.vinted.es/brand/goa-woman'), +(865267 , 'Goat' , 'https://www.vinted.es/brand/goat'), +(3114754 , 'Go as u.r' , 'https://www.vinted.es/brand/go-as-ur'), +(109512 , 'GHD' , 'https://www.vinted.es/brand/ghd'), +(228440 , 'Gherardini' , 'https://www.vinted.es/brand/gherardini'), +(48919 , 'Ghost' , 'https://www.vinted.es/brand/ghost'), +(353456 , 'Ghostbusters' , 'https://www.vinted.es/brand/ghostbusters'), +(543888 , 'GHIACCIO & LIMONE' , 'https://www.vinted.es/brand/ghiaccio-limone'), +(219304 , 'Gosha Rubchinskiy' , 'https://www.vinted.es/brand/gosha-rubchinskiy'), +(967077 , 'Ghoud' , 'https://www.vinted.es/brand/ghoud'), +(266862 , 'G.H. Bass & Co' , 'https://www.vinted.es/brand/gh-bass-co'), +(194766 , 'Ghungroo' , 'https://www.vinted.es/brand/ghungroo'), +(18597 , 'G&H' , 'https://www.vinted.es/brand/gh'), +(1817 , 'Gilly Hicks' , 'https://www.vinted.es/brand/gilly-hicks'), +(765612 , 'Guts & Gusto' , 'https://www.vinted.es/brand/guts-gusto'), +(383 , 'Gerard Pasquier' , 'https://www.vinted.es/brand/gerard-pasquier'), +(104720 , 'GBB' , 'https://www.vinted.es/brand/gbb'), +(107406 , 'GB' , 'https://www.vinted.es/brand/gb'), +(175632 , 'G Baby' , 'https://www.vinted.es/brand/g-baby'), +(1649842 , 'GB. Pedrini' , 'https://www.vinted.es/brand/gb-pedrini'), +(8745466 , 'G&B' , 'https://www.vinted.es/brand/g-b'), +(362230 , 'G-BOY' , 'https://www.vinted.es/brand/g-boy'), +(308442 , 'G-Brand' , 'https://www.vinted.es/brand/g-brand'), +(204102 , 'G by Guess' , 'https://www.vinted.es/brand/g-by-guess'), +(2685214 , 'GBG Los Angeles' , 'https://www.vinted.es/brand/gbg-los-angeles'), +(352574 , 'GBX' , 'https://www.vinted.es/brand/gbx'), +(545462 , 'Gym Glamour' , 'https://www.vinted.es/brand/gym-glamour'), +(1235 , 'Gola' , 'https://www.vinted.es/brand/gola'), +(7593951 , 'GOLAZO.TEE' , 'https://www.vinted.es/brand/golazotee'), +(499010 , 'Goldenpoint' , 'https://www.vinted.es/brand/goldenpoint'), +(8201 , 'Golden Days' , 'https://www.vinted.es/brand/golden-days'), +(38699 , 'Golden Lady' , 'https://www.vinted.es/brand/golden-lady'), +(7523591 , 'Gold & Gold' , 'https://www.vinted.es/brand/gold-gold'), +(8821 , 'Gold & Silver' , 'https://www.vinted.es/brand/gold-silver'), +(64984 , 'Gipsy' , 'https://www.vinted.es/brand/gipsy'), +(594084 , 'GIUSY' , 'https://www.vinted.es/brand/giusy'), +(100212 , 'Giorgia & Johns' , 'https://www.vinted.es/brand/giorgia-johns'), +(12859 , 'Giorgia' , 'https://www.vinted.es/brand/giorgia'), +(721465 , 'Giorgia Gori' , 'https://www.vinted.es/brand/giorgia-gori'), +(222868 , 'Giorgia Netti' , 'https://www.vinted.es/brand/giorgia-netti'), +(5585 , 'Giorgio' , 'https://www.vinted.es/brand/giorgio'), +(97306 , 'Giorgio Di Mare' , 'https://www.vinted.es/brand/giorgio-di-mare'), +(122482 , 'Giorgio Kauten' , 'https://www.vinted.es/brand/giorgio-kauten'), +(174440 , 'Giorgio Morello' , 'https://www.vinted.es/brand/giorgio-morello'), +(671203 , 'Giorgio Grati' , 'https://www.vinted.es/brand/giorgio-grati'), +(16315 , 'Gentleman Farmer' , 'https://www.vinted.es/brand/gentleman-farmer'), +(99516 , 'Girl Tribu' , 'https://www.vinted.es/brand/girl-tribu'), +(7030564 , 'Girl Vivi' , 'https://www.vinted.es/brand/girl-vivi'), +(33697 , 'Girlhood' , 'https://www.vinted.es/brand/girlhood'), +(268770 , 'Girl2Girl' , 'https://www.vinted.es/brand/girl2girl'), +(225008 , 'Girl Time' , 'https://www.vinted.es/brand/girl-time'), +(312903 , 'Girl''s Wear' , 'https://www.vinted.es/brand/girls-wear'), +(161764 , 'Garmin' , 'https://www.vinted.es/brand/garmin'), +(297384 , 'Garmont' , 'https://www.vinted.es/brand/garmont'), +(314774 , 'Gamin Gamine' , 'https://www.vinted.es/brand/gamin-gamine'), +(25813 , 'Gamino' , 'https://www.vinted.es/brand/gamino'), +(718233 , 'Garment Project' , 'https://www.vinted.es/brand/garment-project'), +(3391642 , 'Garmisch' , 'https://www.vinted.es/brand/garmisch'), +(3315582 , 'Garmoniya' , 'https://www.vinted.es/brand/garmoniya'), +(3487 , 'Globe' , 'https://www.vinted.es/brand/globe'), +(449117 , 'Globetrotter' , 'https://www.vinted.es/brand/globetrotter'), +(452842 , 'GLOBO' , 'https://www.vinted.es/brand/globo'), +(330683 , 'Global' , 'https://www.vinted.es/brand/global'), +(118760 , 'Globus' , 'https://www.vinted.es/brand/globus'), +(40397 , 'Gloverall' , 'https://www.vinted.es/brand/gloverall'), +(345553 , 'Globber' , 'https://www.vinted.es/brand/globber'), +(375583 , 'Global Funk' , 'https://www.vinted.es/brand/global-funk'), +(703530 , 'Anna Glover x H&M' , 'https://www.vinted.es/brand/anna-glover-x-hm'), +(5069284 , 'Glowe' , 'https://www.vinted.es/brand/glowe'), +(272424 , 'Givova' , 'https://www.vinted.es/brand/givova'), +(361400 , 'Giovanni Galli' , 'https://www.vinted.es/brand/giovanni-galli'), +(3195 , 'Giovanni' , 'https://www.vinted.es/brand/giovanni'), +(348376 , 'Giovane' , 'https://www.vinted.es/brand/giovane'), +(26837 , 'Gino Vaello' , 'https://www.vinted.es/brand/gino-vaello'), +(1224189 , 'Giovanni Raspini' , 'https://www.vinted.es/brand/giovanni-raspini'), +(392823 , 'Ginova' , 'https://www.vinted.es/brand/ginova'), +(84188 , 'Giovani' , 'https://www.vinted.es/brand/giovani'), +(268800 , 'Gormiti' , 'https://www.vinted.es/brand/gormiti'), +(8425 , 'Gallantry' , 'https://www.vinted.es/brand/gallantry'), +(105236 , 'Gloria Ortiz' , 'https://www.vinted.es/brand/gloria-ortiz'), +(405145 , 'Girl in Mind' , 'https://www.vinted.es/brand/girl-in-mind'), +(122670 , 'Gian Marco Venturi' , 'https://www.vinted.es/brand/gian-marco-venturi'), +(57674 , 'Goodies' , 'https://www.vinted.es/brand/goodies'), +(184652 , 'Goodies Jeans' , 'https://www.vinted.es/brand/goodies-jeans'), +(438239 , 'GOODNESS GANG' , 'https://www.vinted.es/brand/goodness-gang'), +(1128909 , 'Goodiebox' , 'https://www.vinted.es/brand/goodiebox'), +(296951 , 'Goki' , 'https://www.vinted.es/brand/goki'), +(781920 , 'Go Kids' , 'https://www.vinted.es/brand/go-kids'), +(265602 , 'Gorila' , 'https://www.vinted.es/brand/gorila'), +(1340924 , 'Gobik' , 'https://www.vinted.es/brand/gobik'), +(451088 , 'Gorilla Wear' , 'https://www.vinted.es/brand/gorilla-wear'), +(1073209 , 'GOI' , 'https://www.vinted.es/brand/goi'), +(232854 , 'Godiva' , 'https://www.vinted.es/brand/godiva'), +(627738 , 'GOBI Cashmere' , 'https://www.vinted.es/brand/gobi-cashmere'), +(379695 , 'GO IN' , 'https://www.vinted.es/brand/go-in'), +(123332 , 'Giorgio Barbara' , 'https://www.vinted.es/brand/giorgio-barbara'), +(169882 , 'Giorgio Brato' , 'https://www.vinted.es/brand/giorgio-brato'), +(291985 , 'Giorgio BEVERLY HILLS' , 'https://www.vinted.es/brand/giorgio-beverly-hills'), +(700784 , 'Giorgio martello' , 'https://www.vinted.es/brand/giorgio-martello'), +(302773 , 'Gigamic' , 'https://www.vinted.es/brand/gigamic'), +(3095 , 'Glamour' , 'https://www.vinted.es/brand/glamour'), +(388080 , 'Glamour Babe' , 'https://www.vinted.es/brand/glamour-babe'), +(150790 , 'Glamour Bunny' , 'https://www.vinted.es/brand/glamour-bunny'), +(36799 , 'Glamour Kills' , 'https://www.vinted.es/brand/glamour-kills'), +(184944 , 'Gatta' , 'https://www.vinted.es/brand/gatta'), +(697322 , 'Gattino' , 'https://www.vinted.es/brand/gattino'), +(149020 , 'Gottex' , 'https://www.vinted.es/brand/gottex'), +(224156 , 'Gaetano Navarra' , 'https://www.vinted.es/brand/gaetano-navarra'), +(1961 , 'Guy Laroche' , 'https://www.vinted.es/brand/guy-laroche'), +(1184488 , 'Glowrias' , 'https://www.vinted.es/brand/glowrias'), +(20705 , 'Gorgeous' , 'https://www.vinted.es/brand/gorgeous'), +(337820 , 'Ghospell' , 'https://www.vinted.es/brand/ghospell'), +(304502 , 'Grobag' , 'https://www.vinted.es/brand/grobag'), +(433904 , 'GCDS' , 'https://www.vinted.es/brand/gcds'), +(507848 , 'GC Shoes' , 'https://www.vinted.es/brand/gc-shoes'), +(333585 , 'Gutteridge' , 'https://www.vinted.es/brand/gutteridge'), +(98930 , 'Great Plains' , 'https://www.vinted.es/brand/great-plains'), +(18087 , 'Giesswein' , 'https://www.vinted.es/brand/giesswein'), +(262678 , 'Grey Wolf' , 'https://www.vinted.es/brand/grey-wolf'), +(188898 , 'Gallery' , 'https://www.vinted.es/brand/gallery'), +(2929083 , 'Gallery Dept.' , 'https://www.vinted.es/brand/gallery-dept'), +(175586 , 'Garancia' , 'https://www.vinted.es/brand/garancia'), +(333992 , 'Grünland' , 'https://www.vinted.es/brand/grunland'), +(151980 , 'Gang' , 'https://www.vinted.es/brand/gang'), +(41511 , 'Gangster Unit' , 'https://www.vinted.es/brand/gangster-unit'), +(1644530 , 'Gangs' , 'https://www.vinted.es/brand/gangs'), +(79150 , 'GD' , 'https://www.vinted.es/brand/gd'), +(27641 , 'G&L' , 'https://www.vinted.es/brand/gl'), +(29101 , 'Garage' , 'https://www.vinted.es/brand/garage'), +(5550444 , 'Garbage Tv' , 'https://www.vinted.es/brand/garbage-tv'), +(329635 , 'Gelert' , 'https://www.vinted.es/brand/gelert'), +(39653 , 'G-Shock' , 'https://www.vinted.es/brand/g-shock'), +(6763601 , 'Glööckler' , 'https://www.vinted.es/brand/gloockler'), +(420838 , 'Gloop' , 'https://www.vinted.es/brand/gloop'), +(4081452 , 'Glow On 5th' , 'https://www.vinted.es/brand/glow-on-5th'), +(33699 , 'Grace' , 'https://www.vinted.es/brand/grace'), +(183434 , 'Grace Karin' , 'https://www.vinted.es/brand/grace-karin'), +(199392 , 'Grace Cole' , 'https://www.vinted.es/brand/grace-cole'), +(786064 , 'Grace in LA' , 'https://www.vinted.es/brand/grace-in-la'), +(287705 , 'Graco' , 'https://www.vinted.es/brand/graco'), +(326219 , 'Gracia' , 'https://www.vinted.es/brand/gracia'), +(2855 , 'Golddigga' , 'https://www.vinted.es/brand/golddigga'), +(315480 , 'Groggy by jbc' , 'https://www.vinted.es/brand/groggy-by-jbc'), +(12041 , 'Gsus' , 'https://www.vinted.es/brand/gsus'), +(207054 , 'Garvalín' , 'https://www.vinted.es/brand/garvalin'), +(459085 , 'Green ICE' , 'https://www.vinted.es/brand/green-ice'), +(47517 , 'Green' , 'https://www.vinted.es/brand/green'), +(296880 , 'Greenland' , 'https://www.vinted.es/brand/greenland'), +(384998 , 'Greenwich Polo Club' , 'https://www.vinted.es/brand/greenwich-polo-club'), +(158046 , 'Green G' , 'https://www.vinted.es/brand/green-g'), +(979649 , 'Greenlight' , 'https://www.vinted.es/brand/greenlight'), +(716385 , 'Green Leaves' , 'https://www.vinted.es/brand/green-leaves'), +(191790 , 'Greenfield' , 'https://www.vinted.es/brand/greenfield'), +(876122 , 'Green George' , 'https://www.vinted.es/brand/green-george'), +(45951 , 'GF Ferre' , 'https://www.vinted.es/brand/gf-ferre'), +(59166 , 'Groggy' , 'https://www.vinted.es/brand/groggy'), +(244122 , 'Gaëlle' , 'https://www.vinted.es/brand/gaelle'), +(356367 , 'GymForm' , 'https://www.vinted.es/brand/gymform'), +(370317 , 'Gym Aesthetics' , 'https://www.vinted.es/brand/gym-aesthetics'), +(30725 , 'Gestuz' , 'https://www.vinted.es/brand/gestuz'), +(12645 , 'Gadea' , 'https://www.vinted.es/brand/gadea'), +(81008 , 'Galeande' , 'https://www.vinted.es/brand/galeande'), +(15691 , 'Gov Denim' , 'https://www.vinted.es/brand/gov-denim'), +(65526 , 'GOLDENIM' , 'https://www.vinted.es/brand/goldenim'), +(1139 , 'Good Look' , 'https://www.vinted.es/brand/good-look'), +(70514 , 'Generation' , 'https://www.vinted.es/brand/generation'), +(70294 , 'Galaxy' , 'https://www.vinted.es/brand/galaxy'), +(524562 , 'Galaxy By Harvic' , 'https://www.vinted.es/brand/galaxy-by-harvic'), +(94510 , 'Galax' , 'https://www.vinted.es/brand/galax'), +(282092 , 'Galaxie' , 'https://www.vinted.es/brand/galaxie'), +(1141711 , 'Galaxis' , 'https://www.vinted.es/brand/galaxis'), +(167732 , 'Goosecraft' , 'https://www.vinted.es/brand/goosecraft'), +(174032 , 'Graine de Rêve' , 'https://www.vinted.es/brand/graine-de-reve'), +(4568862 , 'Görtz' , 'https://www.vinted.es/brand/gortz'), +(5854491 , 'Görtz 17' , 'https://www.vinted.es/brand/gortz-17'), +(328993 , 'Götz' , 'https://www.vinted.es/brand/gotz'), +(522963 , 'Götzburg' , 'https://www.vinted.es/brand/gotzburg'), +(7822416 , 'Götze & Jensen' , 'https://www.vinted.es/brand/gotze-jensen'), +(56636 , 'Geneva' , 'https://www.vinted.es/brand/geneva'), +(323513 , 'GENEVIÈVE LETHU' , 'https://www.vinted.es/brand/genevieve-lethu'), +(340303 , 'GENEVE' , 'https://www.vinted.es/brand/geneve'), +(577242 , 'Grimey' , 'https://www.vinted.es/brand/grimey'), +(213378 , 'Groseille' , 'https://www.vinted.es/brand/groseille'), +(726094 , 'Groot' , 'https://www.vinted.es/brand/groot'), +(376817 , 'Groove' , 'https://www.vinted.es/brand/groove'), +(410701 , 'GRO' , 'https://www.vinted.es/brand/gro'), +(329678 , 'The Gro Company' , 'https://www.vinted.es/brand/the-gro-company'), +(345979 , 'Grow Gorgeous' , 'https://www.vinted.es/brand/grow-gorgeous'), +(341700 , 'GroVia' , 'https://www.vinted.es/brand/grovia'), +(278840 , 'Gaialuna' , 'https://www.vinted.es/brand/gaialuna'), +(294830 , 'Garanimals' , 'https://www.vinted.es/brand/garanimals'), +(304524 , 'Giro' , 'https://www.vinted.es/brand/giro'), +(153082 , 'Girondins De Bordeaux' , 'https://www.vinted.es/brand/girondins-de-bordeaux'), +(318456 , 'Girotti' , 'https://www.vinted.es/brand/girotti'), +(20937 , 'Guinness' , 'https://www.vinted.es/brand/guinness'), +(287119 , 'Goula' , 'https://www.vinted.es/brand/goula'), +(2167 , 'Goeland' , 'https://www.vinted.es/brand/goeland'), +(36415 , 'Golla' , 'https://www.vinted.es/brand/golla'), +(196166 , 'G Kids' , 'https://www.vinted.es/brand/g-kids'), +(14335 , 'Garconne' , 'https://www.vinted.es/brand/garconne'), +(140732 , 'gardeur' , 'https://www.vinted.es/brand/gardeur'), +(160098 , 'Gianni Chiarini' , 'https://www.vinted.es/brand/gianni-chiarini'), +(99200 , 'GELCO' , 'https://www.vinted.es/brand/gelco'), +(2131264 , 'Gemco' , 'https://www.vinted.es/brand/gemco'), +(2679613 , 'The GelBottle' , 'https://www.vinted.es/brand/the-gelbottle'), +(78576 , 'Genius' , 'https://www.vinted.es/brand/genius'), +(50357 , 'Gorjuss' , 'https://www.vinted.es/brand/gorjuss'), +(279977 , 'Gabs' , 'https://www.vinted.es/brand/gabs'), +(344602 , 'Gabbiano' , 'https://www.vinted.es/brand/gabbiano'), +(517904 , 'Gabel' , 'https://www.vinted.es/brand/gabel'), +(536106 , 'G-MAXX' , 'https://www.vinted.es/brand/g-maxx'), +(17331 , 'Glassons' , 'https://www.vinted.es/brand/glassons'), +(314574 , 'Glass' , 'https://www.vinted.es/brand/glass'), +(181890 , 'Gloss' , 'https://www.vinted.es/brand/gloss'), +(282885 , 'Glossy' , 'https://www.vinted.es/brand/glossy'), +(625791 , 'Glissade' , 'https://www.vinted.es/brand/glissade'), +(531 , 'Glossybox' , 'https://www.vinted.es/brand/glossybox'), +(318877 , 'Gläser' , 'https://www.vinted.es/brand/glaser'), +(1065854 , 'Glanshirt' , 'https://www.vinted.es/brand/glanshirt'), +(680372 , 'Gliss Kur' , 'https://www.vinted.es/brand/gliss-kur'), +(2436510 , 'Glam Shop' , 'https://www.vinted.es/brand/glam-shop'), +(200588 , 'Gigue' , 'https://www.vinted.es/brand/gigue'), +(41315 , 'Grand Voile' , 'https://www.vinted.es/brand/grand-voile'), +(379633 , 'Goodin' , 'https://www.vinted.es/brand/goodin'), +(180276 , 'Goorin Bros.' , 'https://www.vinted.es/brand/goorin-bros'), +(156492 , 'Good News' , 'https://www.vinted.es/brand/good-news'), +(283578 , 'Goodwin Smith' , 'https://www.vinted.es/brand/goodwin-smith'), +(1687063 , 'Good Night & Sleep Well' , 'https://www.vinted.es/brand/good-night-sleep-well'), +(2739601 , 'Godinger' , 'https://www.vinted.es/brand/godinger'), +(167008 , 'Gai Mattiolo' , 'https://www.vinted.es/brand/gai-mattiolo'), +(930392 , 'Giacomo Conti' , 'https://www.vinted.es/brand/giacomo-conti'), +(333983 , 'Grafix' , 'https://www.vinted.es/brand/grafix'), +(1494622 , 'Graciela' , 'https://www.vinted.es/brand/graciela'), +(435450 , 'GRACILA' , 'https://www.vinted.es/brand/gracila'), +(128360 , 'Gore Tex' , 'https://www.vinted.es/brand/gore-tex'), +(6320834 , 'Vans x Gore-Tex' , 'https://www.vinted.es/brand/vans-x-gore-tex'), +(76958 , 'Golfino' , 'https://www.vinted.es/brand/golfino'), +(299096 , 'GOOD FOR NOTHING' , 'https://www.vinted.es/brand/good-for-nothing'), +(334139 , 'giracoo' , 'https://www.vinted.es/brand/giracoo'), +(109948 , 'Gambettes Box' , 'https://www.vinted.es/brand/gambettes-box'), +(267244 , 'Golden Live' , 'https://www.vinted.es/brand/golden-live'), +(247586 , 'GUM' , 'https://www.vinted.es/brand/gum'), +(385071 , 'gum balls' , 'https://www.vinted.es/brand/gum-balls'), +(492872 , 'Gumbies' , 'https://www.vinted.es/brand/gumbies'), +(266885 , 'Glo-Story' , 'https://www.vinted.es/brand/glo-story'), +(360668 , 'Gien' , 'https://www.vinted.es/brand/gien'), +(232378 , 'GIENCHI' , 'https://www.vinted.es/brand/gienchi'), +(69520 , 'Gi and Jo' , 'https://www.vinted.es/brand/gi-and-jo'), +(280968 , 'Gianni Lupo' , 'https://www.vinted.es/brand/gianni-lupo'), +(133600 , 'Gil Bret' , 'https://www.vinted.es/brand/gil-bret'), +(56138 , 'Gilbert' , 'https://www.vinted.es/brand/gilbert'), +(642159 , 'Gilberto' , 'https://www.vinted.es/brand/gilberto'), +(199234 , 'g:21' , 'https://www.vinted.es/brand/g21'), +(308451 , 'Giordani' , 'https://www.vinted.es/brand/giordani'), +(14077 , 'Giordano' , 'https://www.vinted.es/brand/giordano'), +(299739 , 'Giordana' , 'https://www.vinted.es/brand/giordana'), +(85930 , 'goldsmith' , 'https://www.vinted.es/brand/goldsmith'), +(317657 , 'GALLO' , 'https://www.vinted.es/brand/gallo'), +(149506 , 'Gallop' , 'https://www.vinted.es/brand/gallop'), +(10613 , 'John Galliano' , 'https://www.vinted.es/brand/john-galliano'), +(295367 , 'Gallimard Jeunesse' , 'https://www.vinted.es/brand/gallimard-jeunesse'), +(498980 , 'Galoob' , 'https://www.vinted.es/brand/galoob'), +(287785 , 'Gallimard' , 'https://www.vinted.es/brand/gallimard'), +(91526 , 'Gallucci' , 'https://www.vinted.es/brand/gallucci'), +(7011975 , 'Galliano' , 'https://www.vinted.es/brand/galliano'), +(252652 , 'Gazelle' , 'https://www.vinted.es/brand/gazelle'), +(68018 , 'Griffon' , 'https://www.vinted.es/brand/griffon'), +(202556 , 'Mauro Grifoni' , 'https://www.vinted.es/brand/mauro-grifoni'), +(46775 , 'Griffe Noire' , 'https://www.vinted.es/brand/griffe-noire'), +(184076 , 'Griffin' , 'https://www.vinted.es/brand/griffin'), +(488787 , 'Grifone' , 'https://www.vinted.es/brand/grifone'), +(231026 , 'Guzzini' , 'https://www.vinted.es/brand/guzzini'), +(67720 , 'G-Smack' , 'https://www.vinted.es/brand/g-smack'), +(287982 , 'Gründ' , 'https://www.vinted.es/brand/grund'), +(1241629 , 'Gründl' , 'https://www.vinted.es/brand/grundl'), +(4779989 , 'Grüne Erde' , 'https://www.vinted.es/brand/grune-erde'), +(566529 , 'Grünspecht' , 'https://www.vinted.es/brand/grunspecht'), +(1169498 , 'grünberg' , 'https://www.vinted.es/brand/grunberg'), +(3775957 , 'Grünspecht Naturprodukte' , 'https://www.vinted.es/brand/grunspecht-naturprodukte'), +(11525603 , 'GreeNice' , 'https://www.vinted.es/brand/greenice'), +(976963 , 'Greence' , 'https://www.vinted.es/brand/greence'), +(210200 , 'GIRANDOLA' , 'https://www.vinted.es/brand/girandola'), +(434813 , 'Gio Cellini' , 'https://www.vinted.es/brand/gio-cellini'), +(285283 , 'Gaia' , 'https://www.vinted.es/brand/gaia'), +(19709 , 'GAIA D''ESTE' , 'https://www.vinted.es/brand/gaia-deste'), +(303486 , 'Gaia Verdi' , 'https://www.vinted.es/brand/gaia-verdi'), +(443829 , 'Gaia Shoes' , 'https://www.vinted.es/brand/gaia-shoes'), +(1195449 , 'Gai+Lisva' , 'https://www.vinted.es/brand/gailisva'), +(332338 , 'Gaiam' , 'https://www.vinted.es/brand/gaiam'), +(148640 , 'GoGo SHOES' , 'https://www.vinted.es/brand/gogo-shoes'), +(3580123 , 'Go-Go''s' , 'https://www.vinted.es/brand/go-gos'), +(7674214 , 'Gogodzy' , 'https://www.vinted.es/brand/gogodzy'), +(146206 , 'Tokyo Laundry' , 'https://www.vinted.es/brand/tokyo-laundry'), +(374370 , 'Glossier' , 'https://www.vinted.es/brand/glossier'), +(345075 , 'Glossworks' , 'https://www.vinted.es/brand/glossworks'), +(59234 , 'Giada' , 'https://www.vinted.es/brand/giada'), +(1797906 , 'Giada Benincasa' , 'https://www.vinted.es/brand/giada-benincasa'), +(7096688 , 'Giada Parisi' , 'https://www.vinted.es/brand/giada-parisi'), +(217754 , 'Gian Alberto Caporale' , 'https://www.vinted.es/brand/gian-alberto-caporale'), +(3898470 , 'Gia Ram' , 'https://www.vinted.es/brand/gia-ram'), +(302517 , 'Goose & Gander' , 'https://www.vinted.es/brand/goose-gander'), +(131438 , 'GONE by Gemo' , 'https://www.vinted.es/brand/gone-by-gemo'), +(158928 , 'Gatineau' , 'https://www.vinted.es/brand/gatineau'), +(20649 , 'Garella' , 'https://www.vinted.es/brand/garella'), +(329421 , 'Gianni' , 'https://www.vinted.es/brand/gianni'), +(291441 , 'Gianni Marra' , 'https://www.vinted.es/brand/gianni-marra'), +(493910 , 'Gianni Kavanagh' , 'https://www.vinted.es/brand/gianni-kavanagh'), +(17717 , 'Gianni Gregori' , 'https://www.vinted.es/brand/gianni-gregori'), +(4997 , 'Gianni Conti' , 'https://www.vinted.es/brand/gianni-conti'), +(52257 , 'Gianni Versace' , 'https://www.vinted.es/brand/gianni-versace'), +(196188 , 'Gianni Ferrucci' , 'https://www.vinted.es/brand/gianni-ferrucci'), +(470824 , 'Gianni Zenna' , 'https://www.vinted.es/brand/gianni-zenna'), +(77280 , 'Gelati' , 'https://www.vinted.es/brand/gelati'), +(91880 , 'GARDEN' , 'https://www.vinted.es/brand/garden'), +(27525 , 'Gardenia' , 'https://www.vinted.es/brand/gardenia'), +(8843783 , 'The Garden Studio' , 'https://www.vinted.es/brand/the-garden-studio'), +(385039 , 'Gray Label' , 'https://www.vinted.es/brand/gray-label'), +(293356 , 'Galt' , 'https://www.vinted.es/brand/galt'), +(4129 , 'Jean Paul Gaultier' , 'https://www.vinted.es/brand/jean-paul-gaultier'), +(631067 , 'GRANNA' , 'https://www.vinted.es/brand/granna'), +(401691 , 'Grand & Hills' , 'https://www.vinted.es/brand/grand-hills'), +(256712 , 'Gran Sasso' , 'https://www.vinted.es/brand/gran-sasso'), +(4400778 , 'granatovo' , 'https://www.vinted.es/brand/granatovo'), +(58680 , 'Gaimo' , 'https://www.vinted.es/brand/gaimo'), +(332151 , 'Gaumont' , 'https://www.vinted.es/brand/gaumont'), +(900174 , 'Gas Monkey Garage' , 'https://www.vinted.es/brand/gas-monkey-garage'), +(28359 , 'Gossip' , 'https://www.vinted.es/brand/gossip'), +(326069 , 'Gerber' , 'https://www.vinted.es/brand/gerber'), +(6164702 , 'Gerber Gear' , 'https://www.vinted.es/brand/gerber-gear'), +(144440 , 'GERBE' , 'https://www.vinted.es/brand/gerbe'), +(551604 , 'Geber' , 'https://www.vinted.es/brand/geber'), +(132172 , 'Gin Tonic' , 'https://www.vinted.es/brand/gin-tonic'), +(1181638 , 'Givana' , 'https://www.vinted.es/brand/givana'), +(138866 , 'green cotton' , 'https://www.vinted.es/brand/green-cotton'), +(307891 , 'Green Tea' , 'https://www.vinted.es/brand/green-tea'), +(452169 , 'Green Envelope' , 'https://www.vinted.es/brand/green-envelope'), +(339463 , 'Green Techno' , 'https://www.vinted.es/brand/green-techno'), +(176928 , 'Grès' , 'https://www.vinted.es/brand/gres'), +(222468 , 'Grège' , 'https://www.vinted.es/brand/grege'), +(382 , 'Gold SK' , 'https://www.vinted.es/brand/gold-sk'), +(7551709 , 'GoldSkull' , 'https://www.vinted.es/brand/goldskull'), +(48525 , 'GoldStar' , 'https://www.vinted.es/brand/goldstar'), +(336759 , 'Golden Sun' , 'https://www.vinted.es/brand/golden-sun'), +(168332 , 'Goldkid' , 'https://www.vinted.es/brand/goldkid'), +(948416 , 'Goldsign' , 'https://www.vinted.es/brand/goldsign'), +(359772 , 'Gold''s Gym' , 'https://www.vinted.es/brand/golds-gym'), +(437571 , 'Godske' , 'https://www.vinted.es/brand/godske'), +(98230 , 'Guitare' , 'https://www.vinted.es/brand/guitare'), +(193956 , 'Goddiva' , 'https://www.vinted.es/brand/goddiva'), +(475129 , 'GREGOR' , 'https://www.vinted.es/brand/gregor'), +(124214 , 'Gregory Pat' , 'https://www.vinted.es/brand/gregory-pat'), +(377123 , 'Gregory' , 'https://www.vinted.es/brand/gregory'), +(478099 , 'Gregori' , 'https://www.vinted.es/brand/gregori'), +(370941 , 'Greg Norman' , 'https://www.vinted.es/brand/greg-norman'), +(390246 , 'G&T' , 'https://www.vinted.es/brand/gt'), +(95180 , 'G&Y' , 'https://www.vinted.es/brand/gy'), +(79356 , 'G&K' , 'https://www.vinted.es/brand/gk'), +(40393 , 'G&C' , 'https://www.vinted.es/brand/gc'), +(318049 , 'Geiger' , 'https://www.vinted.es/brand/geiger'), +(18309 , 'Gertrude' , 'https://www.vinted.es/brand/gertrude'), +(69282 , 'Glam' , 'https://www.vinted.es/brand/glam'), +(113222 , 'Glamz' , 'https://www.vinted.es/brand/glamz'), +(535142 , 'Glamaker' , 'https://www.vinted.es/brand/glamaker'), +(348980 , 'Glam Amour' , 'https://www.vinted.es/brand/glam-amour'), +(176092 , 'Glamglow' , 'https://www.vinted.es/brand/glamglow'), +(3766147 , 'Glam360°' , 'https://www.vinted.es/brand/glam360'), +(188004 , 'Goddess' , 'https://www.vinted.es/brand/goddess'), +(75738 , 'Goddess London' , 'https://www.vinted.es/brand/goddess-london'), +(71654 , 'Guns N'' Roses' , 'https://www.vinted.es/brand/guns-n-roses'), +(88492 , 'Gianvito Rossi' , 'https://www.vinted.es/brand/gianvito-rossi'), +(7 , 'H&M' , 'https://www.vinted.es/brand/hm'), +(34319 , 'H&M Mama' , 'https://www.vinted.es/brand/hm-mama'), +(12561 , 'H&M L.O.G.G.' , 'https://www.vinted.es/brand/hm-logg'), +(415031 , 'H&M Basic' , 'https://www.vinted.es/brand/hm-basic'), +(2515 , 'H&M Sport' , 'https://www.vinted.es/brand/hm-sport'), +(5666382 , 'H&M Conscious' , 'https://www.vinted.es/brand/hm-conscious'), +(760151 , 'H&M Home' , 'https://www.vinted.es/brand/hm-home'), +(222472 , 'H&M Studio' , 'https://www.vinted.es/brand/hm-studio'), +(5658209 , 'H&M BB' , 'https://www.vinted.es/brand/hm-bb'), +(11493 , 'Hollister' , 'https://www.vinted.es/brand/hollister'), +(1333289 , 'Hollister & Co' , 'https://www.vinted.es/brand/hollister-co'), +(21059 , 'Hema' , 'https://www.vinted.es/brand/hema'), +(1314694 , 'Hemant and Nandita' , 'https://www.vinted.es/brand/hemant-and-nandita'), +(48801 , 'Head' , 'https://www.vinted.es/brand/head'), +(251068 , 'HEM' , 'https://www.vinted.es/brand/hem'), +(2823 , 'Hexagona' , 'https://www.vinted.es/brand/hexagona'), +(287813 , 'Hemma' , 'https://www.vinted.es/brand/hemma'), +(1076711 , 'Headu' , 'https://www.vinted.es/brand/headu'), +(264979 , 'HEACH DOLLS' , 'https://www.vinted.es/brand/heach-dolls'), +(69290 , 'Heartless Jeans' , 'https://www.vinted.es/brand/heartless-jeans'), +(61788 , 'Herman' , 'https://www.vinted.es/brand/herman'), +(427282 , 'HOUSE OF JAMIE' , 'https://www.vinted.es/brand/house-of-jamie'), +(46165 , 'House' , 'https://www.vinted.es/brand/house'), +(139972 , 'House of CB' , 'https://www.vinted.es/brand/house-of-cb'), +(287644 , 'House of Toys' , 'https://www.vinted.es/brand/house-of-toys'), +(151012 , 'House of Luxury' , 'https://www.vinted.es/brand/house-of-luxury'), +(224886 , 'House of Denim' , 'https://www.vinted.es/brand/house-of-denim'), +(142472 , 'House of Holland' , 'https://www.vinted.es/brand/house-of-holland'), +(326799 , 'House of Sunny' , 'https://www.vinted.es/brand/house-of-sunny'), +(132990 , 'House of Harlow 1960' , 'https://www.vinted.es/brand/house-of-harlow-1960'), +(320178 , 'House Doctor' , 'https://www.vinted.es/brand/house-doctor'), +(499 , 'Hello Kitty' , 'https://www.vinted.es/brand/hello-kitty'), +(67514 , 'Harry Potter' , 'https://www.vinted.es/brand/harry-potter'), +(6385721 , 'Vans x Harry Potter' , 'https://www.vinted.es/brand/vans-x-harry-potter'), +(114196 , 'Hasbro' , 'https://www.vinted.es/brand/hasbro'), +(288799 , 'Hot Wheels' , 'https://www.vinted.es/brand/hot-wheels'), +(5701 , 'Havaianas' , 'https://www.vinted.es/brand/havaianas'), +(25477 , 'Hogan' , 'https://www.vinted.es/brand/hogan'), +(7157601 , 'Karl Lagerfeld x Hogan' , 'https://www.vinted.es/brand/karl-lagerfeld-x-hogan'), +(337084 , 'Hot & Delicious' , 'https://www.vinted.es/brand/hot-delicious'), +(8222415 , 'Hot & Spicy' , 'https://www.vinted.es/brand/hot-spicy'), +(7629 , 'Hummel' , 'https://www.vinted.es/brand/hummel'), +(580087 , 'Hummelsheim' , 'https://www.vinted.es/brand/hummelsheim'), +(2030605 , 'Hummel HIVE' , 'https://www.vinted.es/brand/hummel-hive'), +(78130 , 'Hallhuber' , 'https://www.vinted.es/brand/hallhuber'), +(287786 , 'Haba' , 'https://www.vinted.es/brand/haba'), +(169320 , 'Habana' , 'https://www.vinted.es/brand/habana'), +(181776 , 'hama' , 'https://www.vinted.es/brand/hama'), +(290049 , 'Hamac' , 'https://www.vinted.es/brand/hamac'), +(250222 , 'Hamaki - Ho' , 'https://www.vinted.es/brand/hamaki-ho'), +(183450 , 'Habitat' , 'https://www.vinted.es/brand/habitat'), +(209590 , 'Hana' , 'https://www.vinted.es/brand/hana'), +(290435 , 'Hamax' , 'https://www.vinted.es/brand/hamax'), +(369689 , 'Havana & Co.' , 'https://www.vinted.es/brand/havana-co'), +(2689 , 'Hard Rock Café' , 'https://www.vinted.es/brand/hard-rock-cafe'), +(50825 , 'Hobbs' , 'https://www.vinted.es/brand/hobbs'), +(274201 , 'Hobby' , 'https://www.vinted.es/brand/hobby'), +(339785 , 'Hobby Flora' , 'https://www.vinted.es/brand/hobby-flora'), +(1730195 , 'Hobby Horse' , 'https://www.vinted.es/brand/hobby-horse'), +(1298684 , 'Hobbycraft' , 'https://www.vinted.es/brand/hobbycraft'), +(2776141 , 'Hilfiger Denim' , 'https://www.vinted.es/brand/hilfiger-denim'), +(4785 , 'Hermès' , 'https://www.vinted.es/brand/hermes'), +(21427 , 'Harley Davidson' , 'https://www.vinted.es/brand/harley-davidson'), +(362511 , 'Hippie' , 'https://www.vinted.es/brand/hippie'), +(127694 , 'Hippie Chic' , 'https://www.vinted.es/brand/hippie-chic'), +(878507 , 'Hippie Rose' , 'https://www.vinted.es/brand/hippie-rose'), +(2762774 , 'The hippie shake' , 'https://www.vinted.es/brand/the-hippie-shake'), +(3524825 , 'Hippie Pet' , 'https://www.vinted.es/brand/hippie-pet'), +(1354248 , 'Hippe Beebjes' , 'https://www.vinted.es/brand/hippe-beebjes'), +(471546 , 'Hippil' , 'https://www.vinted.es/brand/hippil'), +(43589 , 'Helly Hansen' , 'https://www.vinted.es/brand/helly-hansen'), +(6510853 , 'Puma x Helly Hansen' , 'https://www.vinted.es/brand/puma-x-helly-hansen'), +(6186864 , 'Sandro x Helly Hansen' , 'https://www.vinted.es/brand/sandro-x-helly-hansen'), +(196314 , 'Hecho a Mano' , 'https://www.vinted.es/brand/hecho-a-mano'), +(313660 , 'Hailys' , 'https://www.vinted.es/brand/hailys'), +(1959371 , 'Hally & Son' , 'https://www.vinted.es/brand/hally-son'), +(200412 , 'Harmont & Blaine' , 'https://www.vinted.es/brand/harmont-blaine'), +(1043456 , 'Handgemaakt' , 'https://www.vinted.es/brand/handgemaakt'), +(1285205 , 'Hand Knitted' , 'https://www.vinted.es/brand/hand-knitted'), +(16439 , 'Hype' , 'https://www.vinted.es/brand/hype'), +(515974 , 'HyperX' , 'https://www.vinted.es/brand/hyperx'), +(1062026 , 'Hyperion' , 'https://www.vinted.es/brand/hyperion'), +(316556 , 'Hypnosy' , 'https://www.vinted.es/brand/hypnosy'), +(401051 , 'Hypnochic' , 'https://www.vinted.es/brand/hypnochic'), +(413781 , 'Hypnotic' , 'https://www.vinted.es/brand/hypnotic'), +(450934 , 'Hypnotik' , 'https://www.vinted.es/brand/hypnotik'), +(667993 , 'Hyphen' , 'https://www.vinted.es/brand/hyphen'), +(1770853 , 'Hyein Seo' , 'https://www.vinted.es/brand/hyein-seo'), +(2743098 , 'Hyke' , 'https://www.vinted.es/brand/hyke'), +(209140 , 'Hachette' , 'https://www.vinted.es/brand/hachette'), +(287710 , 'Hachette Jeunesse' , 'https://www.vinted.es/brand/hachette-jeunesse'), +(311966 , 'Hachette Éducation' , 'https://www.vinted.es/brand/hachette-education'), +(7749626 , 'Head & Shoulders' , 'https://www.vinted.es/brand/head-shoulders'), +(183388 , 'Head Over Heels' , 'https://www.vinted.es/brand/head-over-heels'), +(475332 , 'Head Over Heels By Dune' , 'https://www.vinted.es/brand/head-over-heels-by-dune'), +(2293629 , 'Heads Or Tails' , 'https://www.vinted.es/brand/heads-or-tails'), +(187956 , 'H&D' , 'https://www.vinted.es/brand/hd'), +(66028 , 'Hedgren' , 'https://www.vinted.es/brand/hedgren'), +(414020 , 'H&D Moda Española' , 'https://www.vinted.es/brand/hd-moda-espanola'), +(35705 , 'Hackett' , 'https://www.vinted.es/brand/hackett'), +(123122 , 'Hackett London' , 'https://www.vinted.es/brand/hackett-london'), +(5958523 , 'Hackett Kids' , 'https://www.vinted.es/brand/hackett-kids'), +(8459 , 'Hunter' , 'https://www.vinted.es/brand/hunter'), +(833349 , 'Hunter x Hunter' , 'https://www.vinted.es/brand/hunter-x-hunter'), +(639474 , 'HKMX' , 'https://www.vinted.es/brand/hkmx'), +(296546 , 'Hugo' , 'https://www.vinted.es/brand/hugo'), +(1707868 , 'HUGO Hugo Boss' , 'https://www.vinted.es/brand/hugo-hugo-boss'), +(380278 , 'Hugo Image' , 'https://www.vinted.es/brand/hugo-image'), +(784879 , 'Hugo Loves Tiki' , 'https://www.vinted.es/brand/hugo-loves-tiki'), +(5323323 , 'Hugo & Hudson' , 'https://www.vinted.es/brand/hugo-hudson'), +(826289 , 'Hug & Clau' , 'https://www.vinted.es/brand/hug-clau'), +(290471 , 'Huggies' , 'https://www.vinted.es/brand/huggies'), +(111052 , 'Humör' , 'https://www.vinted.es/brand/humor'), +(305451 , 'Hugan''co' , 'https://www.vinted.es/brand/huganco'), +(3955 , 'histoire d''or' , 'https://www.vinted.es/brand/histoire-dor'), +(291640 , 'Histoire d''Ours' , 'https://www.vinted.es/brand/histoire-dours'), +(8133 , 'heine' , 'https://www.vinted.es/brand/heine'), +(41503 , 'Heineken' , 'https://www.vinted.es/brand/heineken'), +(5962847 , 'Hennes Collection' , 'https://www.vinted.es/brand/hennes-collection'), +(48789 , 'Hein-Gericke' , 'https://www.vinted.es/brand/hein-gericke'), +(292296 , 'Heimess' , 'https://www.vinted.es/brand/heimess'), +(700622 , 'HEUNEC' , 'https://www.vinted.es/brand/heunec'), +(402069 , 'Heideman' , 'https://www.vinted.es/brand/heideman'), +(3984087 , 'Heidelbär' , 'https://www.vinted.es/brand/heidelbar'), +(177282 , 'Huawei' , 'https://www.vinted.es/brand/huawei'), +(14459 , 'Hush Puppies' , 'https://www.vinted.es/brand/hush-puppies'), +(420320 , 'Hush' , 'https://www.vinted.es/brand/hush'), +(348125 , 'Husky' , 'https://www.vinted.es/brand/husky'), +(388064 , 'Hust & Claire' , 'https://www.vinted.es/brand/hust-claire'), +(330092 , 'Husqvarna' , 'https://www.vinted.es/brand/husqvarna'), +(17173 , 'Hustler' , 'https://www.vinted.es/brand/hustler'), +(543422 , 'Huch' , 'https://www.vinted.es/brand/huch'), +(704758 , 'Huch & Friends' , 'https://www.vinted.es/brand/huch-friends'), +(3748999 , 'Huishan Zhang' , 'https://www.vinted.es/brand/huishan-zhang'), +(7071961 , 'Puma x Hussein Chalayan' , 'https://www.vinted.es/brand/puma-x-hussein-chalayan'), +(254982 , 'The House of Bruar' , 'https://www.vinted.es/brand/the-house-of-bruar'), +(983937 , 'House of Cavani' , 'https://www.vinted.es/brand/house-of-cavani'), +(15609 , 'Heelys' , 'https://www.vinted.es/brand/heelys'), +(7244657 , 'Reebok x Heelys' , 'https://www.vinted.es/brand/reebok-x-heelys'), +(2707133 , 'Heeleys' , 'https://www.vinted.es/brand/heeleys'), +(1701 , 'Hispanitas' , 'https://www.vinted.es/brand/hispanitas'), +(353532 , 'Hause' , 'https://www.vinted.es/brand/hause'), +(20049 , 'Haute Couture' , 'https://www.vinted.es/brand/haute-couture'), +(176342 , 'Hauber' , 'https://www.vinted.es/brand/hauber'), +(233246 , 'Haute Pression' , 'https://www.vinted.es/brand/haute-pression'), +(166404 , 'Haurex' , 'https://www.vinted.es/brand/haurex'), +(138408 , 'Haute Hippie' , 'https://www.vinted.es/brand/haute-hippie'), +(720493 , 'Hasegawa' , 'https://www.vinted.es/brand/hasegawa'), +(439982 , 'Haute Monde' , 'https://www.vinted.es/brand/haute-monde'), +(2268906 , 'Haust' , 'https://www.vinted.es/brand/haust'), +(1493599 , 'Hansekind' , 'https://www.vinted.es/brand/hansekind'), +(14185 , 'HUF' , 'https://www.vinted.es/brand/huf'), +(1493262 , 'Hüftgold Berlin' , 'https://www.vinted.es/brand/huftgold-berlin'), +(301153 , 'Hüftgold' , 'https://www.vinted.es/brand/huftgold'), +(27913 , 'Hunkemöller' , 'https://www.vinted.es/brand/hunkemoller'), +(528 , 'Hublot' , 'https://www.vinted.es/brand/hublot'), +(62068 , 'Hoss Intropia' , 'https://www.vinted.es/brand/hoss-intropia'), +(19613 , 'Hipanema' , 'https://www.vinted.es/brand/hipanema'), +(217544 , 'Hi-Tec' , 'https://www.vinted.es/brand/hi-tec'), +(490067 , 'HITE COUTURE' , 'https://www.vinted.es/brand/hite-couture'), +(773800 , 'Hess Natur' , 'https://www.vinted.es/brand/hess-natur'), +(5835 , 'Hurley' , 'https://www.vinted.es/brand/hurley'), +(236526 , 'Happiness' , 'https://www.vinted.es/brand/happiness'), +(400761 , 'Happiness Boutique' , 'https://www.vinted.es/brand/happiness-boutique'), +(8698766 , 'House Brand' , 'https://www.vinted.es/brand/house-brand'), +(50475 , 'Henry Cotton´s' , 'https://www.vinted.es/brand/henry-cottons'), +(30349 , 'Hello Miss' , 'https://www.vinted.es/brand/hello-miss'), +(339479 , 'Hello Kiss' , 'https://www.vinted.es/brand/hello-kiss'), +(6369 , 'HÖGL' , 'https://www.vinted.es/brand/hogl'), +(222452 , 'Huda Beauty' , 'https://www.vinted.es/brand/huda-beauty'), +(519075 , 'Hangar 86' , 'https://www.vinted.es/brand/hangar-86'), +(442 , 'Hell Bunny' , 'https://www.vinted.es/brand/hell-bunny'), +(37281 , 'Hampton Bays' , 'https://www.vinted.es/brand/hampton-bays'), +(1855627 , 'home&you' , 'https://www.vinted.es/brand/homeyou'), +(325138 , 'Hotter' , 'https://www.vinted.es/brand/hotter'), +(935000 , 'Hooters' , 'https://www.vinted.es/brand/hooters'), +(323500 , 'Hape' , 'https://www.vinted.es/brand/hape'), +(49039 , 'Hakei' , 'https://www.vinted.es/brand/hakei'), +(285706 , 'HAPPY STAR' , 'https://www.vinted.es/brand/happy-star'), +(86488 , 'Hanes' , 'https://www.vinted.es/brand/hanes'), +(282609 , 'HAPPY' , 'https://www.vinted.es/brand/happy'), +(301605 , 'Hale Bob' , 'https://www.vinted.es/brand/hale-bob'), +(401293 , 'happy girls' , 'https://www.vinted.es/brand/happy-girls'), +(291876 , 'Happy Horse' , 'https://www.vinted.es/brand/happy-horse'), +(952095 , 'Harper & Yve' , 'https://www.vinted.es/brand/harper-yve'), +(231530 , 'Henri Lloyd' , 'https://www.vinted.es/brand/henri-lloyd'), +(18837 , 'Hartford' , 'https://www.vinted.es/brand/hartford'), +(288236 , 'Hauck' , 'https://www.vinted.es/brand/hauck'), +(446091 , 'the hackbarth''s' , 'https://www.vinted.es/brand/the-hackbarths'), +(7487 , 'Heyraud' , 'https://www.vinted.es/brand/heyraud'), +(586926 , 'Hoodrich' , 'https://www.vinted.es/brand/hoodrich'), +(5827029 , 'Hoka' , 'https://www.vinted.es/brand/hoka'), +(4744140 , 'Hoka One One' , 'https://www.vinted.es/brand/hoka-one-one'), +(75056 , 'Horka' , 'https://www.vinted.es/brand/horka'), +(275417 , 'HOLALA' , 'https://www.vinted.es/brand/holala'), +(76526 , 'Hoalen' , 'https://www.vinted.es/brand/hoalen'), +(291448 , 'Hoaka Swimwear' , 'https://www.vinted.es/brand/hoaka-swimwear'), +(538365 , 'Hola' , 'https://www.vinted.es/brand/hola'), +(328418 , 'Hatchimals' , 'https://www.vinted.es/brand/hatchimals'), +(110364 , 'Happy House' , 'https://www.vinted.es/brand/happy-house'), +(83598 , 'High' , 'https://www.vinted.es/brand/high'), +(661703 , 'Highly Preppy' , 'https://www.vinted.es/brand/highly-preppy'), +(305856 , 'High School Musical' , 'https://www.vinted.es/brand/high-school-musical'), +(1025035 , 'High by Claire Campbell' , 'https://www.vinted.es/brand/high-by-claire-campbell'), +(93132 , 'High Use' , 'https://www.vinted.es/brand/high-use'), +(163508 , 'Highway' , 'https://www.vinted.es/brand/highway'), +(270211 , 'Highness' , 'https://www.vinted.es/brand/highness'), +(279119 , 'Highlander' , 'https://www.vinted.es/brand/highlander'), +(757237 , 'Highland Creek' , 'https://www.vinted.es/brand/highland-creek'), +(367372 , 'High Colorado' , 'https://www.vinted.es/brand/high-colorado'), +(299196 , 'Hair' , 'https://www.vinted.es/brand/hair'), +(823828 , 'Hairdorables' , 'https://www.vinted.es/brand/hairdorables'), +(334215 , 'Hairburst' , 'https://www.vinted.es/brand/hairburst'), +(2246376 , 'Hairlust' , 'https://www.vinted.es/brand/hairlust'), +(938359 , 'Hair Doctor' , 'https://www.vinted.es/brand/hair-doctor'), +(36355 , 'Harris Wilson' , 'https://www.vinted.es/brand/harris-wilson'), +(16285 , 'Hexagone' , 'https://www.vinted.es/brand/hexagone'), +(3153 , 'H-Landers' , 'https://www.vinted.es/brand/h-landers'), +(14151 , 'Herschel' , 'https://www.vinted.es/brand/herschel'), +(1306710 , 'Herschel Supply Co.' , 'https://www.vinted.es/brand/herschel-supply-co'), +(305422 , 'Holiday' , 'https://www.vinted.es/brand/holiday'), +(501159 , 'Holiday Time' , 'https://www.vinted.es/brand/holiday-time'), +(183868 , 'Hamilton' , 'https://www.vinted.es/brand/hamilton'), +(291329 , 'Hampton Republic' , 'https://www.vinted.es/brand/hampton-republic'), +(287476 , 'Hatier' , 'https://www.vinted.es/brand/hatier'), +(276902 , 'Hatley' , 'https://www.vinted.es/brand/hatley'), +(1762464 , 'Hat You' , 'https://www.vinted.es/brand/hat-you'), +(373306 , 'Hat' , 'https://www.vinted.es/brand/hat'), +(530617 , 'HATCH' , 'https://www.vinted.es/brand/hatch'), +(384480 , 'Hattric' , 'https://www.vinted.es/brand/hattric'), +(456315 , 'Hatico' , 'https://www.vinted.es/brand/hatico'), +(916410 , 'Hathaway' , 'https://www.vinted.es/brand/hathaway'), +(792940 , 'Hat Attack' , 'https://www.vinted.es/brand/hat-attack'), +(19395 , 'Harrods' , 'https://www.vinted.es/brand/harrods'), +(763182 , 'HANS UBBINK' , 'https://www.vinted.es/brand/hans-ubbink'), +(272696 , 'Hanel Haute' , 'https://www.vinted.es/brand/hanel-haute'), +(361309 , 'Hawes & Curtis' , 'https://www.vinted.es/brand/hawes-curtis'), +(706419 , 'Hans im Glück' , 'https://www.vinted.es/brand/hans-im-gluck'), +(407858 , 'Hansaplast' , 'https://www.vinted.es/brand/hansaplast'), +(366111 , 'Hannes Roether' , 'https://www.vinted.es/brand/hannes-roether'), +(913699 , 'Hans Natur' , 'https://www.vinted.es/brand/hans-natur'), +(4756279 , 'Hands on design' , 'https://www.vinted.es/brand/hands-on-design'), +(1388278 , 'Haney' , 'https://www.vinted.es/brand/haney'), +(572149 , 'Hemera' , 'https://www.vinted.es/brand/hemera'), +(295480 , 'Hemisphere' , 'https://www.vinted.es/brand/hemisphere'), +(7072063 , 'HempKing' , 'https://www.vinted.es/brand/hempking'), +(100386 , 'Hasley' , 'https://www.vinted.es/brand/hasley'), +(380393 , 'Hamleys' , 'https://www.vinted.es/brand/hamleys'), +(1185905 , 'Hayley Menzies' , 'https://www.vinted.es/brand/hayley-menzies'), +(4199813 , 'Hayley Elsaesser' , 'https://www.vinted.es/brand/hayley-elsaesser'), +(1071402 , 'Happy Girls by Eisend' , 'https://www.vinted.es/brand/happy-girls-by-eisend'), +(330590 , 'Hoppediz' , 'https://www.vinted.es/brand/hoppediz'), +(130068 , 'H2O' , 'https://www.vinted.es/brand/h2o'), +(1578703 , 'h2o Fagerholt' , 'https://www.vinted.es/brand/h2o-fagerholt'), +(336723 , 'Happy Kids' , 'https://www.vinted.es/brand/happy-kids'), +(161774 , 'Hawkers' , 'https://www.vinted.es/brand/hawkers'), +(110630 , 'hp' , 'https://www.vinted.es/brand/hp'), +(69206 , 'HPW' , 'https://www.vinted.es/brand/hpw'), +(444556 , 'Harry Styles' , 'https://www.vinted.es/brand/harry-styles'), +(18877 , 'HOPE' , 'https://www.vinted.es/brand/hope'), +(222010 , 'Hopenlife' , 'https://www.vinted.es/brand/hopenlife'), +(337651 , 'HOPE STAR' , 'https://www.vinted.es/brand/hope-star'), +(547856 , 'Hope & Ivy' , 'https://www.vinted.es/brand/hope-ivy'), +(42677 , 'Hotel Particulier' , 'https://www.vinted.es/brand/hotel-particulier'), +(483192 , 'Home Creation' , 'https://www.vinted.es/brand/home-creation'), +(144148 , 'Honeywell' , 'https://www.vinted.es/brand/honeywell'), +(323773 , 'Homestate' , 'https://www.vinted.es/brand/homestate'), +(35341 , 'Honey' , 'https://www.vinted.es/brand/honey'), +(20545 , 'Herrlicher' , 'https://www.vinted.es/brand/herrlicher'), +(11499 , 'Heritage' , 'https://www.vinted.es/brand/heritage'), +(394057 , 'Hermitage' , 'https://www.vinted.es/brand/hermitage'), +(116844 , 'H.I.S' , 'https://www.vinted.es/brand/his'), +(30347 , 'H.I.S Jeans' , 'https://www.vinted.es/brand/his-jeans'), +(42285 , 'Havacoa' , 'https://www.vinted.es/brand/havacoa'), +(58940 , 'HKM' , 'https://www.vinted.es/brand/hkm'), +(55103 , 'HK2028' , 'https://www.vinted.es/brand/hk2028'), +(47841 , 'H&K' , 'https://www.vinted.es/brand/hk'), +(680567 , 'HK Living' , 'https://www.vinted.es/brand/hk-living'), +(441921 , 'HKR' , 'https://www.vinted.es/brand/hkr'), +(2638686 , 'Hey Duggee' , 'https://www.vinted.es/brand/hey-duggee'), +(254170 , 'Hot Tuna' , 'https://www.vinted.es/brand/hot-tuna'), +(12987 , 'HF' , 'https://www.vinted.es/brand/hf'), +(342968 , 'Hera' , 'https://www.vinted.es/brand/hera'), +(7440264 , 'Here + There' , 'https://www.vinted.es/brand/here-there'), +(45691 , 'Hero Seven' , 'https://www.vinted.es/brand/hero-seven'), +(58440 , 'Herlaine' , 'https://www.vinted.es/brand/herlaine'), +(19555 , 'HV Polo' , 'https://www.vinted.es/brand/hv-polo'), +(432528 , 'Hilde & Co' , 'https://www.vinted.es/brand/hilde-co'), +(19037 , 'HELLINE' , 'https://www.vinted.es/brand/helline'), +(9769164 , 'Hip Hop' , 'https://www.vinted.es/brand/hip-hop'), +(21381 , 'HIP' , 'https://www.vinted.es/brand/hip'), +(1943 , 'Hippocampe' , 'https://www.vinted.es/brand/hippocampe'), +(282477 , 'Hippocampe Paris' , 'https://www.vinted.es/brand/hippocampe-paris'), +(279819 , 'Hipps' , 'https://www.vinted.es/brand/hipps'), +(1939718 , 'Hip & Hopps' , 'https://www.vinted.es/brand/hip-hopps'), +(151368 , 'The Hip Tee' , 'https://www.vinted.es/brand/the-hip-tee'), +(287534 , 'Holly & Whyte' , 'https://www.vinted.es/brand/holly-whyte'), +(27171 , 'Hudson' , 'https://www.vinted.es/brand/hudson'), +(661985 , 'Hudson London' , 'https://www.vinted.es/brand/hudson-london'), +(2147497 , 'Hudson Baby' , 'https://www.vinted.es/brand/hudson-baby'), +(401027 , 'Human Nature' , 'https://www.vinted.es/brand/human-nature'), +(344531 , 'Holztiger' , 'https://www.vinted.es/brand/holztiger'), +(508933 , 'Holzweiler' , 'https://www.vinted.es/brand/holzweiler'), +(721555 , 'Holzkern' , 'https://www.vinted.es/brand/holzkern'), +(1012984 , 'Holz' , 'https://www.vinted.es/brand/holz'), +(4786560 , 'Holzpuppe' , 'https://www.vinted.es/brand/holzpuppe'), +(560 , 'Holly Bracken' , 'https://www.vinted.es/brand/holly-bracken'), +(138516 , 'Hollywood' , 'https://www.vinted.es/brand/hollywood'), +(567170 , 'Hozone' , 'https://www.vinted.es/brand/hozone'), +(281710 , 'Haix' , 'https://www.vinted.es/brand/haix'), +(266456 , 'Haikure' , 'https://www.vinted.es/brand/haikure'), +(829104 , 'Haity' , 'https://www.vinted.es/brand/haity'), +(232276 , 'Haider Ackermann' , 'https://www.vinted.es/brand/haider-ackermann'), +(1032174 , 'Haight' , 'https://www.vinted.es/brand/haight'), +(4609456 , 'Home Bargains' , 'https://www.vinted.es/brand/home-bargains'), +(185124 , 'Happy Socks' , 'https://www.vinted.es/brand/happy-socks'), +(269035 , 'Happy Bee' , 'https://www.vinted.es/brand/happy-bee'), +(309794 , 'Happy Meal' , 'https://www.vinted.es/brand/happy-meal'), +(197228 , 'Happy People' , 'https://www.vinted.es/brand/happy-people'), +(818508 , 'Happy 13' , 'https://www.vinted.es/brand/happy-13'), +(4637 , 'Hoss' , 'https://www.vinted.es/brand/hoss'), +(164542 , 'Hoss Homeless' , 'https://www.vinted.es/brand/hoss-homeless'), +(197626 , 'HORSPIST' , 'https://www.vinted.es/brand/horspist'), +(203374 , 'Horseware' , 'https://www.vinted.es/brand/horseware'), +(319200 , 'Horse pilot' , 'https://www.vinted.es/brand/horse-pilot'), +(591669 , 'Hanny Deep' , 'https://www.vinted.es/brand/hanny-deep'), +(47829 , 'Helmut Lang' , 'https://www.vinted.es/brand/helmut-lang'), +(115074 , 'Horze' , 'https://www.vinted.es/brand/horze'), +(85418 , 'Horsefeathers' , 'https://www.vinted.es/brand/horsefeathers'), +(455690 , 'HORTENSIA' , 'https://www.vinted.es/brand/hortensia'), +(7986661 , 'Horsenjoy' , 'https://www.vinted.es/brand/horsenjoy'), +(1113602 , 'heavy tools' , 'https://www.vinted.es/brand/heavy-tools'), +(846331 , 'Heart Mind' , 'https://www.vinted.es/brand/heart-mind'), +(54367 , 'Hearts & Roses' , 'https://www.vinted.es/brand/hearts-roses'), +(25493 , 'Heartless' , 'https://www.vinted.es/brand/heartless'), +(118112 , 'Heart' , 'https://www.vinted.es/brand/heart'), +(682655 , 'Heartbreak' , 'https://www.vinted.es/brand/heartbreak'), +(1334533 , 'Heart of Gold' , 'https://www.vinted.es/brand/heart-of-gold'), +(146536 , 'Heart Soul' , 'https://www.vinted.es/brand/heart-soul'), +(269960 , 'Heartbreaker' , 'https://www.vinted.es/brand/heartbreaker'), +(331748 , 'HEART AND SOUL' , 'https://www.vinted.es/brand/heart-and-soul'), +(457965 , 'Happymum' , 'https://www.vinted.es/brand/happymum'), +(402209 , 'happy mama' , 'https://www.vinted.es/brand/happy-mama'), +(9211 , 'Haribo' , 'https://www.vinted.es/brand/haribo'), +(1642483 , 'Harbour 2nd' , 'https://www.vinted.es/brand/harbour-2nd'), +(245240 , 'Haglöfs' , 'https://www.vinted.es/brand/haglofs'), +(3731000 , 'Halara' , 'https://www.vinted.es/brand/halara'), +(121132 , 'Honda' , 'https://www.vinted.es/brand/honda'), +(175224 , 'Homday' , 'https://www.vinted.es/brand/homday'), +(184294 , 'Harris & Lewis' , 'https://www.vinted.es/brand/harris-lewis'), +(31049 , 'Hannah Montana' , 'https://www.vinted.es/brand/hannah-montana'), +(313498 , 'Hannah' , 'https://www.vinted.es/brand/hannah'), +(551900 , 'Hannah Martin' , 'https://www.vinted.es/brand/hannah-martin'), +(1493470 , 'Hannah S' , 'https://www.vinted.es/brand/hannah-s'), +(178126 , 'Hanna Barbera' , 'https://www.vinted.es/brand/hanna-barbera'), +(286154 , 'Hanna Andersson' , 'https://www.vinted.es/brand/hanna-andersson'), +(339098 , 'Hanna' , 'https://www.vinted.es/brand/hanna'), +(136310 , 'Hanna White' , 'https://www.vinted.es/brand/hanna-white'), +(4637421 , 'HelloBody' , 'https://www.vinted.es/brand/hellobody'), +(407220 , 'Hello Boy' , 'https://www.vinted.es/brand/hello-boy'), +(396847 , 'Henry Holland' , 'https://www.vinted.es/brand/henry-holland'), +(89186 , 'Hue' , 'https://www.vinted.es/brand/hue'), +(2494603 , 'Huerzeler' , 'https://www.vinted.es/brand/huerzeler'), +(1625632 , 'Haker' , 'https://www.vinted.es/brand/haker'), +(307599 , 'HJC' , 'https://www.vinted.es/brand/hjc'), +(282660 , 'H&J' , 'https://www.vinted.es/brand/hj'), +(462704 , 'Hjorth' , 'https://www.vinted.es/brand/hjorth'), +(497970 , 'Hollywood Milano' , 'https://www.vinted.es/brand/hollywood-milano'), +(2359552 , 'Hollywood Dream' , 'https://www.vinted.es/brand/hollywood-dream'), +(2269613 , 'Hollywood Fashion Secrets' , 'https://www.vinted.es/brand/hollywood-fashion-secrets'), +(219838 , 'HOOPS' , 'https://www.vinted.es/brand/hoops'), +(768951 , 'HooPet' , 'https://www.vinted.es/brand/hoopet'), +(105052 , 'Hopsack' , 'https://www.vinted.es/brand/hopsack'), +(114450 , 'Harmony' , 'https://www.vinted.es/brand/harmony'), +(323697 , 'Harmony Paris' , 'https://www.vinted.es/brand/harmony-paris'), +(361315 , 'Hammerschmid' , 'https://www.vinted.es/brand/hammerschmid'), +(320320 , 'Hirsch' , 'https://www.vinted.es/brand/hirsch'), +(534001 , 'Hirschkogel' , 'https://www.vinted.es/brand/hirschkogel'), +(8316487 , 'Happy Shark Slippers' , 'https://www.vinted.es/brand/happy-shark-slippers'), +(115806 , 'Henleys' , 'https://www.vinted.es/brand/henleys'), +(98178 , 'House of Fraser' , 'https://www.vinted.es/brand/house-of-fraser'), +(59044 , 'Halogène' , 'https://www.vinted.es/brand/halogene'), +(215750 , 'Halo' , 'https://www.vinted.es/brand/halo'), +(222294 , 'Halogene Paris' , 'https://www.vinted.es/brand/halogene-paris'), +(316488 , 'Halogen' , 'https://www.vinted.es/brand/halogen'), +(72338 , 'Haora' , 'https://www.vinted.es/brand/haora'), +(196772 , 'Halfon' , 'https://www.vinted.es/brand/halfon'), +(335184 , 'Hallinger' , 'https://www.vinted.es/brand/hallinger'), +(9961 , 'Helena Sorel' , 'https://www.vinted.es/brand/helena-sorel'), +(14341 , 'Huit' , 'https://www.vinted.es/brand/huit'), +(185498 , 'Huit Six Sept' , 'https://www.vinted.es/brand/huit-six-sept'), +(920659 , 'Hunt' , 'https://www.vinted.es/brand/hunt'), +(1816076 , 'Hutschenreuther' , 'https://www.vinted.es/brand/hutschenreuther'), +(1102214 , 'Hutton' , 'https://www.vinted.es/brand/hutton'), +(400409 , 'Huion' , 'https://www.vinted.es/brand/huion'), +(225918 , 'Heidi Klum' , 'https://www.vinted.es/brand/heidi-klum'), +(210982 , 'Heidi Klum Intimates' , 'https://www.vinted.es/brand/heidi-klum-intimates'), +(598699 , 'Hartan' , 'https://www.vinted.es/brand/hartan'), +(375557 , 'Hartmann' , 'https://www.vinted.es/brand/hartmann'), +(6656904 , 'Hartig + Helling' , 'https://www.vinted.es/brand/hartig-helling'), +(380813 , 'Harman Kardon' , 'https://www.vinted.es/brand/harman-kardon'), +(982650 , 'Hartingdon House' , 'https://www.vinted.es/brand/hartingdon-house'), +(3294421 , 'Hari And The Gang' , 'https://www.vinted.es/brand/hari-and-the-gang'), +(210172 , 'HFN' , 'https://www.vinted.es/brand/hfn'), +(367044 , 'HF Woman Collection' , 'https://www.vinted.es/brand/hf-woman-collection'), +(613852 , 'HF Shoes' , 'https://www.vinted.es/brand/hf-shoes'), +(1111616 , 'HFN by Halfon' , 'https://www.vinted.es/brand/hfn-by-halfon'), +(917651 , 'HFX' , 'https://www.vinted.es/brand/hfx'), +(338915 , 'Hunkydory' , 'https://www.vinted.es/brand/hunkydory'), +(172932 , 'Harry''s Horse' , 'https://www.vinted.es/brand/harrys-horse'), +(231030 , 'Himalaya Mountain' , 'https://www.vinted.es/brand/himalaya-mountain'), +(62864 , 'Himalaya' , 'https://www.vinted.es/brand/himalaya'), +(496326 , 'Hey Dude' , 'https://www.vinted.es/brand/hey-dude'), +(4242507 , 'Headcare' , 'https://www.vinted.es/brand/headcare'), +(186646 , 'HONOR' , 'https://www.vinted.es/brand/honor'), +(873922 , 'Honora' , 'https://www.vinted.es/brand/honora'), +(1756875 , 'Honor Millburn' , 'https://www.vinted.es/brand/honor-millburn'), +(712873 , 'Honorine' , 'https://www.vinted.es/brand/honorine'), +(1394759 , 'HONOR THE GIFT' , 'https://www.vinted.es/brand/honor-the-gift'), +(43537 , 'Honolulu' , 'https://www.vinted.es/brand/honolulu'), +(251148 , 'Hooray' , 'https://www.vinted.es/brand/hooray'), +(466429 , 'Honour & Pride' , 'https://www.vinted.es/brand/honour-pride'), +(708871 , 'Honour Over Glory' , 'https://www.vinted.es/brand/honour-over-glory'), +(116004 , 'Humanoid' , 'https://www.vinted.es/brand/humanoid'), +(102658 , 'Holly & Joey' , 'https://www.vinted.es/brand/holly-joey'), +(207418 , 'Hanae Mori' , 'https://www.vinted.es/brand/hanae-mori'), +(6511797 , 'Hana Polívková' , 'https://www.vinted.es/brand/hana-polivkova'), +(7363506 , 'Hana Převrátilová' , 'https://www.vinted.es/brand/hana-prevratilova'), +(35735 , 'Handmade' , 'https://www.vinted.es/brand/handmade'), +(249742 , 'Honey Punch' , 'https://www.vinted.es/brand/honey-punch'), +(1664415 , 'Holland Cooper' , 'https://www.vinted.es/brand/holland-cooper'), +(13045 , 'HHG' , 'https://www.vinted.es/brand/hhg'), +(896441 , 'H HOSIS' , 'https://www.vinted.es/brand/h-hosis'), +(9103733 , 'H Han Queen' , 'https://www.vinted.es/brand/h-han-queen'), +(6551 , 'Hoyvoy' , 'https://www.vinted.es/brand/hoyvoy'), +(159254 , 'Herno' , 'https://www.vinted.es/brand/herno'), +(389625 , 'Heron Preston' , 'https://www.vinted.es/brand/heron-preston'), +(318196 , 'heros' , 'https://www.vinted.es/brand/heros'), +(406702 , 'Herod' , 'https://www.vinted.es/brand/herod'), +(1198306 , 'HEROCLIX' , 'https://www.vinted.es/brand/heroclix'), +(145710 , 'Heroïnes' , 'https://www.vinted.es/brand/heroines'), +(168000 , 'Herbosa' , 'https://www.vinted.es/brand/herbosa'), +(382929 , 'Hero´s Heroine' , 'https://www.vinted.es/brand/heros-heroine'), +(693597 , 'Hernan' , 'https://www.vinted.es/brand/hernan'), +(193384 , 'HUB' , 'https://www.vinted.es/brand/hub'), +(267650 , 'Huber' , 'https://www.vinted.es/brand/huber'), +(1320867 , 'Huberman''s' , 'https://www.vinted.es/brand/hubermans'), +(2424454 , 'Hübner' , 'https://www.vinted.es/brand/hubner'), +(568265 , 'Herlitz' , 'https://www.vinted.es/brand/herlitz'), +(7294168 , 'Handmade Beauty' , 'https://www.vinted.es/brand/handmade-beauty'), +(68384 , 'H&Lewis' , 'https://www.vinted.es/brand/hlewis'), +(168212 , 'H&L' , 'https://www.vinted.es/brand/hl'), +(1072308 , 'HIIT' , 'https://www.vinted.es/brand/hiit'), +(71348 , 'Histoire de Plage' , 'https://www.vinted.es/brand/histoire-de-plage'), +(604137 , 'Historic' , 'https://www.vinted.es/brand/historic'), +(42375 , 'Hilton' , 'https://www.vinted.es/brand/hilton'), +(612704 , 'Historic Research' , 'https://www.vinted.es/brand/historic-research'), +(344129 , 'Holy Preppy' , 'https://www.vinted.es/brand/holy-preppy'), +(5226856 , 'Heron Preston x Levi''s' , 'https://www.vinted.es/brand/heron-preston-x-levis'), +(6103515 , 'Nike x Heron Preston' , 'https://www.vinted.es/brand/nike-x-heron-preston'), +(587 , 'HOM' , 'https://www.vinted.es/brand/hom'), +(220688 , 'HoMedics' , 'https://www.vinted.es/brand/homedics'), +(485625 , 'Home & Deco' , 'https://www.vinted.es/brand/home-deco'), +(209540 , 'Homecore' , 'https://www.vinted.es/brand/homecore'), +(289127 , 'Homers' , 'https://www.vinted.es/brand/homers'), +(351453 , 'Home Collection' , 'https://www.vinted.es/brand/home-collection'), +(779469 , 'Home Deco Factory' , 'https://www.vinted.es/brand/the-home-deco-factory'), +(163012 , 'Harris Tweed' , 'https://www.vinted.es/brand/harris-tweed'), +(1689621 , 'Hi Gear' , 'https://www.vinted.es/brand/hi-gear'), +(403911 , 'Hello Moon Shop' , 'https://www.vinted.es/brand/hello-moon-shop'), +(77838 , 'HYBRID' , 'https://www.vinted.es/brand/hybrid'), +(5771738 , 'Hybrid Apparel' , 'https://www.vinted.es/brand/hybrid-apparel'), +(57340 , 'Hybris' , 'https://www.vinted.es/brand/hybris'), +(107954 , 'Helena Rubinstein' , 'https://www.vinted.es/brand/helena-rubinstein'), +(281976 , 'Helena Hart' , 'https://www.vinted.es/brand/helena-hart'), +(119510 , 'Helene Rouge' , 'https://www.vinted.es/brand/helene-rouge'), +(124236 , 'Helena' , 'https://www.vinted.es/brand/helena'), +(290550 , 'Helena Vera' , 'https://www.vinted.es/brand/helena-vera'), +(518731 , 'Helen' , 'https://www.vinted.es/brand/helen'), +(280351 , 'Helene Berman' , 'https://www.vinted.es/brand/helene-berman'), +(4644978 , 'Helena Springfield' , 'https://www.vinted.es/brand/helena-springfield'), +(457771 , 'Helen Kaminski' , 'https://www.vinted.es/brand/helen-kaminski'), +(875447 , 'HOFF' , 'https://www.vinted.es/brand/hoff'), +(1996013 , 'Hoffen' , 'https://www.vinted.es/brand/hoffen'), +(676927 , 'Hofmann Copenhagen' , 'https://www.vinted.es/brand/hofmann-copenhagen'), +(265572 , 'Höpfner' , 'https://www.vinted.es/brand/hopfner'), +(664949 , 'HOFBRUCKER' , 'https://www.vinted.es/brand/hofbrucker'), +(51619 , 'Harrington' , 'https://www.vinted.es/brand/harrington'), +(1230334 , 'Humanic' , 'https://www.vinted.es/brand/humanic'), +(321487 , 'Hermann Lange' , 'https://www.vinted.es/brand/hermann-lange'), +(749740 , 'Heimatliebe' , 'https://www.vinted.es/brand/heimatliebe'), +(4271568 , 'Herman Miller' , 'https://www.vinted.es/brand/herman-miller'), +(2523814 , 'Hey Marly' , 'https://www.vinted.es/brand/hey-marly'), +(2325153 , 'HED MAYNER' , 'https://www.vinted.es/brand/hed-mayner'), +(215132 , 'Hod' , 'https://www.vinted.es/brand/hod'), +(7577258 , 'HODLR' , 'https://www.vinted.es/brand/hodlr'), +(355658 , 'Hydrogen' , 'https://www.vinted.es/brand/hydrogen'), +(329202 , 'Hexeline' , 'https://www.vinted.es/brand/hexeline'), +(24313 , 'HNathalie' , 'https://www.vinted.es/brand/hnathalie'), +(6359 , 'Hard Rock' , 'https://www.vinted.es/brand/hard-rock'), +(10853 , 'Hard Rock Couture' , 'https://www.vinted.es/brand/hard-rock-couture'), +(2645879 , 'Hamilton Watch' , 'https://www.vinted.es/brand/hamilton-watch'), +(2278705 , 'huari' , 'https://www.vinted.es/brand/huari'), +(365178 , 'Hurricane' , 'https://www.vinted.es/brand/hurricane'), +(22977 , 'Hot Topic' , 'https://www.vinted.es/brand/hot-topic'), +(341648 , 'Howick' , 'https://www.vinted.es/brand/howick'), +(66572 , 'Hammer' , 'https://www.vinted.es/brand/hammer'), +(283128 , 'Hämmerle' , 'https://www.vinted.es/brand/hammerle'), +(662730 , 'Hammerstein' , 'https://www.vinted.es/brand/hammerstein'), +(405 , 'In Extenso' , 'https://www.vinted.es/brand/in-extenso'), +(432207 , 'Intextenso' , 'https://www.vinted.es/brand/intextenso'), +(61 , 'IKKS' , 'https://www.vinted.es/brand/ikks'), +(1407888 , 'adidas x IKKS' , 'https://www.vinted.es/brand/adidas-x-ikks'), +(475565 , 'Ikki' , 'https://www.vinted.es/brand/ikki'), +(1015212 , 'Ikos' , 'https://www.vinted.es/brand/ikos'), +(184302 , 'IKEA' , 'https://www.vinted.es/brand/ikea'), +(1687378 , 'Virgil Abloh X Ikea' , 'https://www.vinted.es/brand/virgil-abloh-x-ikea'), +(7202073 , 'Off-White x Ikea' , 'https://www.vinted.es/brand/off-white-x-ikea'), +(6023 , 'ikebana' , 'https://www.vinted.es/brand/ikebana'), +(202882 , 'IKAO' , 'https://www.vinted.es/brand/ikao'), +(771206 , 'Ikaros' , 'https://www.vinted.es/brand/ikaros'), +(686624 , 'Ike Behar' , 'https://www.vinted.es/brand/ike-behar'), +(4106630 , 'Ikarov' , 'https://www.vinted.es/brand/ikarov'), +(2209283 , 'Ikar' , 'https://www.vinted.es/brand/ikar'), +(270052 , 'Impidimpi' , 'https://www.vinted.es/brand/impidimpi'), +(9799 , 'Intimissimi' , 'https://www.vinted.es/brand/intimissimi'), +(25375 , 'I Saw it First' , 'https://www.vinted.es/brand/i-saw-it-first'), +(7361 , 'Influx' , 'https://www.vinted.es/brand/influx'), +(9285 , 'Influence' , 'https://www.vinted.es/brand/influence'), +(368847 , 'Inflex' , 'https://www.vinted.es/brand/inflex'), +(118048 , 'Independent' , 'https://www.vinted.es/brand/independent'), +(8375709 , 'Independent Trucks' , 'https://www.vinted.es/brand/independent-trucks'), +(7236110 , 'Vans x Independent' , 'https://www.vinted.es/brand/vans-x-independent'), +(5143 , 'Inside' , 'https://www.vinted.es/brand/inside'), +(151234 , 'Insider' , 'https://www.vinted.es/brand/insider'), +(54457 , 'INCIDENCE' , 'https://www.vinted.es/brand/incidence'), +(422155 , 'Insieme' , 'https://www.vinted.es/brand/insieme'), +(226614 , 'In The Style' , 'https://www.vinted.es/brand/in-the-style'), +(13801 , 'Imperial' , 'https://www.vinted.es/brand/imperial'), +(329048 , 'Imperial Riding' , 'https://www.vinted.es/brand/imperial-riding'), +(593961 , 'Imperial star' , 'https://www.vinted.es/brand/imperial-star'), +(276714 , 'IMPERIA' , 'https://www.vinted.es/brand/imperia'), +(1433 , 'ICHI' , 'https://www.vinted.es/brand/ichi'), +(610662 , 'Ichiban Kuji' , 'https://www.vinted.es/brand/ichiban-kuji'), +(213 , 'ici et maintenant' , 'https://www.vinted.es/brand/ici-et-maintenant'), +(1821 , 'Ici Maintenant' , 'https://www.vinted.es/brand/ici-maintenant'), +(471520 , 'ICIW' , 'https://www.vinted.es/brand/iciw'), +(3943934 , 'ICHENDORF MILANO' , 'https://www.vinted.es/brand/ichendorf-milano'), +(541130 , 'I-CLIP' , 'https://www.vinted.es/brand/i-clip'), +(151536 , 'ICING' , 'https://www.vinted.es/brand/icing'), +(3148366 , 'iClipper' , 'https://www.vinted.es/brand/iclipper'), +(295931 , 'IDEXE''' , 'https://www.vinted.es/brand/idexe'), +(245210 , 'Italy Moda' , 'https://www.vinted.es/brand/italy-moda'), +(1035333 , 'Italy Mode' , 'https://www.vinted.es/brand/italy-mode'), +(121 , 'Isabel Marant' , 'https://www.vinted.es/brand/isabel-marant'), +(4756790 , 'Isabel Marant Étoile' , 'https://www.vinted.es/brand/isabel-marant-etoile'), +(2213349 , 'H&M x Isabel Marant' , 'https://www.vinted.es/brand/hm-x-isabel-marant'), +(300302 , 'I Do' , 'https://www.vinted.es/brand/i-do'), +(49445 , 'I DODO' , 'https://www.vinted.es/brand/i-dodo'), +(171938 , 'IDOL' , 'https://www.vinted.es/brand/idol'), +(3076270 , 'ĮdoMiau' , 'https://www.vinted.es/brand/idomiau'), +(1247 , 'Ideal' , 'https://www.vinted.es/brand/ideal'), +(353166 , 'Ideal Of Sweden' , 'https://www.vinted.es/brand/ideal-of-sweden'), +(2965 , 'Ideal shoes' , 'https://www.vinted.es/brand/ideal-shoes'), +(13531 , 'Identity' , 'https://www.vinted.es/brand/identity'), +(853988 , 'IDK' , 'https://www.vinted.es/brand/idk'), +(32341 , 'Italia' , 'https://www.vinted.es/brand/italia'), +(78176 , 'Italian Style' , 'https://www.vinted.es/brand/italian-style'), +(4695862 , 'Moda Italia' , 'https://www.vinted.es/brand/moda-italia'), +(169164 , 'Italia Independent' , 'https://www.vinted.es/brand/italia-independent'), +(413199 , 'Italian Fashion' , 'https://www.vinted.es/brand/italian-fashion'), +(1798374 , 'ITALIAN ARMY' , 'https://www.vinted.es/brand/italian-army'), +(1070286 , 'ITALIAN BRAND' , 'https://www.vinted.es/brand/italian-brand'), +(1808532 , 'Italian Shoemakers' , 'https://www.vinted.es/brand/italian-shoemakers'), +(1310756 , 'Italbaby' , 'https://www.vinted.es/brand/italbaby'), +(19825 , 'Intersport' , 'https://www.vinted.es/brand/intersport'), +(515 , 'it Hippie' , 'https://www.vinted.es/brand/it-hippie'), +(616054 , 'Indian Blue Jeans' , 'https://www.vinted.es/brand/indian-blue-jeans'), +(234696 , 'Indian' , 'https://www.vinted.es/brand/indian'), +(100792 , 'Indi & Cold' , 'https://www.vinted.es/brand/indi-cold'), +(14815 , 'Indian Rose' , 'https://www.vinted.es/brand/indian-rose'), +(73736 , 'Indian Emporium' , 'https://www.vinted.es/brand/indian-emporium'), +(952797 , 'The Indian Maharadja' , 'https://www.vinted.es/brand/the-indian-maharadja'), +(8059107 , 'IndianWolf Studios' , 'https://www.vinted.es/brand/indianwolf-studios'), +(1408842 , 'Indie + Moi' , 'https://www.vinted.es/brand/indie-moi'), +(2353 , 'I am' , 'https://www.vinted.es/brand/i-am'), +(132638 , 'La Morena' , 'https://www.vinted.es/brand/la-morena'), +(343922 , 'I.AM.GIA' , 'https://www.vinted.es/brand/iamgia'), +(1422098 , 'I Am A Limited Edition' , 'https://www.vinted.es/brand/i-am-a-limited-edition'), +(284221 , 'I AM KAMU' , 'https://www.vinted.es/brand/i-am-kamu'), +(4222031 , 'i-am-chen' , 'https://www.vinted.es/brand/i-am-chen'), +(281737 , 'IANA' , 'https://www.vinted.es/brand/iana'), +(82616 , 'Ian Mosh' , 'https://www.vinted.es/brand/ian-mosh'), +(100538 , 'I&M jeans' , 'https://www.vinted.es/brand/im-jeans'), +(612691 , 'Iannalfo & Sgariglia' , 'https://www.vinted.es/brand/iannalfo-sgariglia'), +(2375 , 'I.Code' , 'https://www.vinted.es/brand/icode'), +(82496 , 'Icepeak' , 'https://www.vinted.es/brand/icepeak'), +(2132825 , 'IceSpeak' , 'https://www.vinted.es/brand/icespeak'), +(24083 , 'Ipanema' , 'https://www.vinted.es/brand/ipanema'), +(313257 , 'Ipanima' , 'https://www.vinted.es/brand/ipanima'), +(84396 , 'Iceberg' , 'https://www.vinted.es/brand/iceberg'), +(275446 , 'Il Gufo' , 'https://www.vinted.es/brand/il-gufo'), +(85372 , 'IZAC' , 'https://www.vinted.es/brand/izac'), +(345030 , 'Izas' , 'https://www.vinted.es/brand/izas'), +(209996 , 'Izabel' , 'https://www.vinted.es/brand/izabel'), +(31249 , 'Izabel London' , 'https://www.vinted.es/brand/izabel-london'), +(1048398 , 'Izaac Mizrahi' , 'https://www.vinted.es/brand/izaac-mizrahi'), +(4464343 , 'Izabela Mandoiu' , 'https://www.vinted.es/brand/izabela-mandoiu'), +(5929 , 'Ice Watch' , 'https://www.vinted.es/brand/ice-watch'), +(223594 , 'Intrend' , 'https://www.vinted.es/brand/intrend'), +(1633 , 'IRO' , 'https://www.vinted.es/brand/iro'), +(156 , 'Iron Fist' , 'https://www.vinted.es/brand/iron-fist'), +(238662 , 'IRONMAN' , 'https://www.vinted.es/brand/ironman'), +(767350 , 'Ironica' , 'https://www.vinted.es/brand/ironica'), +(1121321 , 'Iron Studios' , 'https://www.vinted.es/brand/iron-studios'), +(776273 , 'iRobot' , 'https://www.vinted.es/brand/irobot'), +(2438595 , 'Iron Annie' , 'https://www.vinted.es/brand/iron-annie'), +(406684 , 'Iroquois' , 'https://www.vinted.es/brand/iroquois'), +(200076 , 'IRIS' , 'https://www.vinted.es/brand/iris'), +(542646 , 'IRGE' , 'https://www.vinted.es/brand/irge'), +(21915 , 'Infinity' , 'https://www.vinted.es/brand/infinity'), +(353854 , 'Infinity Woman' , 'https://www.vinted.es/brand/infinity-woman'), +(374178 , 'Infinity Kids' , 'https://www.vinted.es/brand/infinity-kids'), +(14425 , 'infinitif' , 'https://www.vinted.es/brand/infinitif'), +(368054 , 'Infinite' , 'https://www.vinted.es/brand/infinite'), +(261578 , 'IGOR' , 'https://www.vinted.es/brand/igor'), +(3643028 , 'igi organics' , 'https://www.vinted.es/brand/igi-organics'), +(1256902 , 'Igomill' , 'https://www.vinted.es/brand/igomill'), +(5251649 , 'Ideal & Co.' , 'https://www.vinted.es/brand/ideal-co'), +(52505 , 'IDEA' , 'https://www.vinted.es/brand/idea'), +(528861 , 'Ideology' , 'https://www.vinted.es/brand/ideology'), +(3542025 , 'Ideas en Piel LV' , 'https://www.vinted.es/brand/ideas-en-piel-lv'), +(67666 , 'Indigo' , 'https://www.vinted.es/brand/indigo'), +(194380 , 'Indigo Rein' , 'https://www.vinted.es/brand/indigo-rein'), +(732184 , 'Indigo Moon' , 'https://www.vinted.es/brand/indigo-moon'), +(856380 , 'Indigo Luna' , 'https://www.vinted.es/brand/indigo-luna'), +(1513861 , 'Indigo Lune' , 'https://www.vinted.es/brand/indigo-lune'), +(405972 , 'INDICODE' , 'https://www.vinted.es/brand/indicode'), +(436617 , 'Indicode Jeans' , 'https://www.vinted.es/brand/indicode-jeans'), +(4419 , 'IVIVI' , 'https://www.vinted.es/brand/ivivi'), +(692015 , 'Ivivva' , 'https://www.vinted.es/brand/ivivva'), +(112918 , 'intermarché' , 'https://www.vinted.es/brand/intermarche'), +(271773 , 'INTEX' , 'https://www.vinted.es/brand/intex'), +(38881 , 'Interdit de me gronder' , 'https://www.vinted.es/brand/interdit-de-me-gronder'), +(344007 , 'Inter' , 'https://www.vinted.es/brand/inter'), +(593800 , 'Intelligent Store' , 'https://www.vinted.es/brand/intelligent-store'), +(318449 , 'Interbaby' , 'https://www.vinted.es/brand/interbaby'), +(41271 , 'Interdee' , 'https://www.vinted.es/brand/interdee'), +(204616 , 'Invicta' , 'https://www.vinted.es/brand/invicta'), +(128986 , 'INVICTUS' , 'https://www.vinted.es/brand/invictus'), +(261110 , 'Ivy Park' , 'https://www.vinted.es/brand/ivy-park'), +(5790420 , 'adidas x Ivy Park' , 'https://www.vinted.es/brand/adidas-x-ivy-park'), +(15071 , 'Isotoner' , 'https://www.vinted.es/brand/isotoner'), +(386234 , 'iets frans...' , 'https://www.vinted.es/brand/iets-frans'), +(176690 , 'Identic' , 'https://www.vinted.es/brand/identic'), +(237428 , 'Identita' , 'https://www.vinted.es/brand/identita'), +(592466 , 'Identity Games' , 'https://www.vinted.es/brand/identity-games'), +(5992545 , 'IXOO' , 'https://www.vinted.es/brand/ixoo'), +(4279 , 'IXON' , 'https://www.vinted.es/brand/ixon'), +(337158 , 'IXOS' , 'https://www.vinted.es/brand/ixos'), +(5993451 , 'IX-O' , 'https://www.vinted.es/brand/ix-o'), +(788048 , 'IX London' , 'https://www.vinted.es/brand/ix-london'), +(11963 , 'Irregular Choice' , 'https://www.vinted.es/brand/irregular-choice'), +(57870 , 'InWear' , 'https://www.vinted.es/brand/inwear'), +(334097 , 'Inware' , 'https://www.vinted.es/brand/inware'), +(149682 , 'InGear' , 'https://www.vinted.es/brand/ingear'), +(325251 , 'Infantino' , 'https://www.vinted.es/brand/infantino'), +(2237323 , 'Infantilo' , 'https://www.vinted.es/brand/infantilo'), +(277807 , 'iTS' , 'https://www.vinted.es/brand/its'), +(292305 , 'ItsImagical' , 'https://www.vinted.es/brand/itsimagical'), +(1087964 , 'It Style Make up' , 'https://www.vinted.es/brand/it-style-make-up'), +(319963 , 'IT''S MY PARTY!' , 'https://www.vinted.es/brand/its-my-party'), +(276362 , 'It´s Our Time' , 'https://www.vinted.es/brand/its-our-time'), +(5503707 , 'Its Rooper' , 'https://www.vinted.es/brand/its-rooper'), +(465 , 'Inconnu' , 'https://www.vinted.es/brand/inconnu'), +(28057 , 'INC' , 'https://www.vinted.es/brand/inc'), +(23423 , 'Incandescence' , 'https://www.vinted.es/brand/incandescence'), +(375711 , 'Incotex' , 'https://www.vinted.es/brand/incotex'), +(191954 , 'Inca' , 'https://www.vinted.es/brand/inca'), +(63322 , 'Incognito' , 'https://www.vinted.es/brand/incognito'), +(211640 , 'INC International Concepts' , 'https://www.vinted.es/brand/inc-international-concepts'), +(286620 , 'inch blue' , 'https://www.vinted.es/brand/inch-blue'), +(186380 , 'InCity' , 'https://www.vinted.es/brand/incity'), +(256940 , 'Imps & Elfs' , 'https://www.vinted.es/brand/imps-elfs'), +(655 , 'Ikita' , 'https://www.vinted.es/brand/ikita'), +(21833 , 'Ikito' , 'https://www.vinted.es/brand/ikito'), +(2203508 , 'IKI NATURALS' , 'https://www.vinted.es/brand/iki-naturals'), +(184198 , 'iBlues' , 'https://www.vinted.es/brand/iblues'), +(133628 , 'i Blues Club' , 'https://www.vinted.es/brand/i-blues-club'), +(387772 , 'Ian Stuart' , 'https://www.vinted.es/brand/ian-stuart'), +(332716 , 'Inglesina' , 'https://www.vinted.es/brand/inglesina'), +(611418 , 'Igi&Co' , 'https://www.vinted.es/brand/igico'), +(36783 , 'Internacionale' , 'https://www.vinted.es/brand/internacionale'), +(213988 , 'Intermezzo' , 'https://www.vinted.es/brand/intermezzo'), +(1154010 , 'Intertoys' , 'https://www.vinted.es/brand/intertoys'), +(231186 , 'Interlude' , 'https://www.vinted.es/brand/interlude'), +(397350 , 'I love girlswear' , 'https://www.vinted.es/brand/i-love-girlswear'), +(320258 , 'Inéa' , 'https://www.vinted.es/brand/inea'), +(723956 , 'Iné' , 'https://www.vinted.es/brand/ine'), +(98476 , 'Inès DELAURE' , 'https://www.vinted.es/brand/ines-delaure'), +(652790 , 'Inès & Maréchal' , 'https://www.vinted.es/brand/ines-marechal'), +(37439 , 'Inesis' , 'https://www.vinted.es/brand/inesis'), +(346446 , 'Schneider' , 'https://www.vinted.es/brand/schneider'), +(124 , 'Vogue' , 'https://www.vinted.es/brand/vogue'), +(6627897 , 'In Vogue' , 'https://www.vinted.es/brand/in-vogue'), +(28389 , 'ICON' , 'https://www.vinted.es/brand/icon'), +(27559 , 'Icone' , 'https://www.vinted.es/brand/icone'), +(192940 , 'ICONIC' , 'https://www.vinted.es/brand/iconic'), +(1244669 , 'Icono' , 'https://www.vinted.es/brand/icono'), +(25769 , 'Iconoclast' , 'https://www.vinted.es/brand/iconoclast'), +(617663 , 'Icons' , 'https://www.vinted.es/brand/icons'), +(257220 , 'Icone Lingerie' , 'https://www.vinted.es/brand/icone-lingerie'), +(370095 , 'ICONIC London' , 'https://www.vinted.es/brand/iconic-london'), +(124844 , 'Idano' , 'https://www.vinted.es/brand/idano'), +(266309 , 'ID Italian' , 'https://www.vinted.es/brand/id-italian'), +(737509 , 'iELM' , 'https://www.vinted.es/brand/ielm'), +(375189 , 'iello' , 'https://www.vinted.es/brand/iello'), +(78636 , 'Inuovo' , 'https://www.vinted.es/brand/inuovo'), +(291768 , 'Imaginarium' , 'https://www.vinted.es/brand/imaginarium'), +(287544 , 'IMC Toys' , 'https://www.vinted.es/brand/imc-toys'), +(644744 , 'Iwie' , 'https://www.vinted.es/brand/iwie'), +(2066853 , 'In April 1986' , 'https://www.vinted.es/brand/in-april-1986'), +(304032 , 'IZIPIZI' , 'https://www.vinted.es/brand/izipizi'), +(818067 , 'IUTER' , 'https://www.vinted.es/brand/iuter'), +(45019 , 'Indies' , 'https://www.vinted.es/brand/indies'), +(27599 , 'Inditex' , 'https://www.vinted.es/brand/inditex'), +(195020 , 'Indie' , 'https://www.vinted.es/brand/indie'), +(10358400 , 'Indiska' , 'https://www.vinted.es/brand/indiska'), +(87058 , 'Indress' , 'https://www.vinted.es/brand/indress'), +(25719 , 'Invito' , 'https://www.vinted.es/brand/invito'), +(299773 , 'Ingenuity' , 'https://www.vinted.es/brand/ingenuity'), +(87008 , 'Inblu' , 'https://www.vinted.es/brand/inblu'), +(384357 , 'IMETEC' , 'https://www.vinted.es/brand/imetec'), +(380969 , 'Isle' , 'https://www.vinted.es/brand/isle'), +(1053579 , 'Isle of Paradise' , 'https://www.vinted.es/brand/isle-of-paradise'), +(92370 , 'islo' , 'https://www.vinted.es/brand/islo'), +(75090 , 'Issey Miyake' , 'https://www.vinted.es/brand/issey-miyake'), +(98422 , 'Isaco' , 'https://www.vinted.es/brand/isaco'), +(407181 , 'Isabella Lorusso' , 'https://www.vinted.es/brand/isabella-lorusso'), +(823107 , 'Isla Ibiza' , 'https://www.vinted.es/brand/isla-ibiza'), +(342748 , 'ISLAND' , 'https://www.vinted.es/brand/island'), +(105020 , 'Isla Bonita' , 'https://www.vinted.es/brand/isla-bonita'), +(339504 , 'Island Boot' , 'https://www.vinted.es/brand/island-boot'), +(410997 , 'INOX' , 'https://www.vinted.es/brand/inox'), +(7034468 , 'Inoo Lingerie' , 'https://www.vinted.es/brand/inoo-lingerie'), +(174702 , 'Innoxa' , 'https://www.vinted.es/brand/innoxa'), +(394668 , 'Inovalley' , 'https://www.vinted.es/brand/inovalley'), +(5704476 , 'Inoo Beach' , 'https://www.vinted.es/brand/inoo-beach'), +(274468 , 'INOTIME' , 'https://www.vinted.es/brand/inotime'), +(314926 , 'Inov-8' , 'https://www.vinted.es/brand/inov-8'), +(179614 , 'InouïToosh' , 'https://www.vinted.es/brand/inouitoosh'), +(1365001 , 'Inovik' , 'https://www.vinted.es/brand/inovik'), +(257232 , 'Iriedaily' , 'https://www.vinted.es/brand/iriedaily'), +(1051 , 'Ines de la Fressange' , 'https://www.vinted.es/brand/ines-de-la-fressange'), +(696190 , '!M?ERFECT' , 'https://www.vinted.es/brand/imperfect'), +(3701 , 'Instinct De Mode' , 'https://www.vinted.es/brand/instinct-de-mode'), +(36399 , 'IXS' , 'https://www.vinted.es/brand/ixs'), +(372161 , 'iXXXi' , 'https://www.vinted.es/brand/ixxxi'), +(336214 , 'IXELLE' , 'https://www.vinted.es/brand/ixelle'), +(311914 , 'iEFiEL' , 'https://www.vinted.es/brand/iefiel'), +(3805124 , 'Island Coco Bikini' , 'https://www.vinted.es/brand/island-coco-bikini'), +(299857 , 'Island Haze' , 'https://www.vinted.es/brand/island-haze'), +(364252 , 'Island Green' , 'https://www.vinted.es/brand/island-green'), +(3618153 , 'Island Escape' , 'https://www.vinted.es/brand/island-escape'), +(336560 , 'IGUANA' , 'https://www.vinted.es/brand/iguana'), +(185256 , 'Image' , 'https://www.vinted.es/brand/image'), +(359945 , 'Image Kids' , 'https://www.vinted.es/brand/image-kids'), +(386745 , 'Images' , 'https://www.vinted.es/brand/images'), +(142186 , 'Imagine' , 'https://www.vinted.es/brand/imagine'), +(471943 , 'Imaginéa' , 'https://www.vinted.es/brand/imaginea'), +(411535 , 'Imagination' , 'https://www.vinted.es/brand/imagination'), +(207322 , 'Imagini' , 'https://www.vinted.es/brand/imagini'), +(132114 , 'Imagin' , 'https://www.vinted.es/brand/imagin'), +(559855 , 'Imaginext' , 'https://www.vinted.es/brand/imaginext'), +(883553 , 'In gold we Trust' , 'https://www.vinted.es/brand/in-gold-we-trust'), +(189508 , 'Inscene' , 'https://www.vinted.es/brand/inscene'), +(238478 , 'IZOD' , 'https://www.vinted.es/brand/izod'), +(7549833 , 'Izod Lacoste' , 'https://www.vinted.es/brand/izod-lacoste'), +(48731 , 'iziDress' , 'https://www.vinted.es/brand/izidress'), +(85942 , 'INNOCENCE' , 'https://www.vinted.es/brand/innocence'), +(178760 , 'IL LACCIO' , 'https://www.vinted.es/brand/il-laccio'), +(2625841 , 'Ikoone&Bianka' , 'https://www.vinted.es/brand/ikoonebianka'), +(27177 , 'I.QUING' , 'https://www.vinted.es/brand/iquing'), +(2257 , 'Impact' , 'https://www.vinted.es/brand/impact'), +(2774428 , 'inspire' , 'https://www.vinted.es/brand/inspire'), +(378752 , 'Inspired' , 'https://www.vinted.es/brand/inspired'), +(3126811 , 'Inspired By Eyes' , 'https://www.vinted.es/brand/inspired-by-eyes'), +(12513 , 'Inspirations' , 'https://www.vinted.es/brand/inspirations'), +(17521 , 'Inspiration' , 'https://www.vinted.es/brand/inspiration'), +(4051097 , 'Inspiring Creativity' , 'https://www.vinted.es/brand/inspiring-creativity'), +(554460 , 'Iris & Lilly' , 'https://www.vinted.es/brand/iris-lilly'), +(505717 , 'Iris & Ink' , 'https://www.vinted.es/brand/iris-ink'), +(460623 , 'Iris Bayer' , 'https://www.vinted.es/brand/iris-bayer'), +(1860089 , 'Iris Von Arnim' , 'https://www.vinted.es/brand/iris-von-arnim'), +(68470 , 'IRIE' , 'https://www.vinted.es/brand/irie'), +(273207 , 'IRIE WASH' , 'https://www.vinted.es/brand/irie-wash'), +(23403 , 'ICE' , 'https://www.vinted.es/brand/ice'), +(1406799 , 'Ice Play' , 'https://www.vinted.es/brand/ice-play'), +(480891 , 'Iceland' , 'https://www.vinted.es/brand/iceland'), +(158150 , 'Ice Cube' , 'https://www.vinted.es/brand/ice-cube'), +(278800 , 'icebreaker' , 'https://www.vinted.es/brand/icebreaker'), +(598129 , 'Icewear' , 'https://www.vinted.es/brand/icewear'), +(186762 , 'Impression' , 'https://www.vinted.es/brand/impression'), +(3641093 , 'IMPRESSION DUGONI' , 'https://www.vinted.es/brand/impression-dugoni'), +(405660 , 'Impressions' , 'https://www.vinted.es/brand/impressions'), +(1493256 , 'Impressionen' , 'https://www.vinted.es/brand/impressionen'), +(1251 , 'Insight' , 'https://www.vinted.es/brand/insight'), +(213290 , 'In The Night Garden' , 'https://www.vinted.es/brand/in-the-night-garden'), +(359931 , 'Ingrid' , 'https://www.vinted.es/brand/ingrid'), +(665965 , 'Ingrid & Isabel' , 'https://www.vinted.es/brand/ingrid-isabel'), +(293336 , 'Isabelle Marant' , 'https://www.vinted.es/brand/isabelle-marant'), +(381513 , 'Ishikawa' , 'https://www.vinted.es/brand/ishikawa'), +(271042 , 'Isacco' , 'https://www.vinted.es/brand/isacco'), +(19121 , 'Isabel de Pedro' , 'https://www.vinted.es/brand/isabel-de-pedro'), +(157616 , 'Is To Me' , 'https://www.vinted.es/brand/is-to-me'), +(109698 , 'Iska' , 'https://www.vinted.es/brand/iska'), +(782119 , 'I Love Milk' , 'https://www.vinted.es/brand/i-love-milk'), +(219904 , 'IN&DIT' , 'https://www.vinted.es/brand/indit'), +(194084 , 'Inayah' , 'https://www.vinted.es/brand/inayah'), +(608819 , 'Ina' , 'https://www.vinted.es/brand/ina'), +(497002 , 'Inamorata' , 'https://www.vinted.es/brand/inamorata'), +(71004 , 'Inamagura' , 'https://www.vinted.es/brand/inamagura'), +(2324966 , 'inAVATI' , 'https://www.vinted.es/brand/inavati'), +(5028738 , 'Ina Koelln' , 'https://www.vinted.es/brand/ina-koelln'), +(300084 , 'IQ' , 'https://www.vinted.es/brand/iq'), +(228428 , 'Intenso' , 'https://www.vinted.es/brand/intenso'), +(73330 , 'INTENSE' , 'https://www.vinted.es/brand/intense'), +(405808 , 'Intense Paris' , 'https://www.vinted.es/brand/intense-paris'), +(311147 , 'intropia' , 'https://www.vinted.es/brand/intropia'), +(373227 , 'Isar Trachten' , 'https://www.vinted.es/brand/isar-trachten'), +(518671 , 'Intimo' , 'https://www.vinted.es/brand/intimo'), +(176692 , 'Intima' , 'https://www.vinted.es/brand/intima'), +(192572 , 'Intimates' , 'https://www.vinted.es/brand/intimates'), +(57048 , 'Intimax' , 'https://www.vinted.es/brand/intimax'), +(2351496 , 'Intimidao' , 'https://www.vinted.es/brand/intimidao'), +(7009701 , 'Intimisa' , 'https://www.vinted.es/brand/intimisa'), +(6885194 , 'Intimate Diamond' , 'https://www.vinted.es/brand/intimate-diamond'), +(191472 , 'Ivyrevel' , 'https://www.vinted.es/brand/ivyrevel'), +(336801 , 'INSTYLE' , 'https://www.vinted.es/brand/instyle'), +(139496 , 'in-stylefashion' , 'https://www.vinted.es/brand/in-stylefashion'), +(173206 , 'INSTYLER' , 'https://www.vinted.es/brand/instyler'), +(79632 , 'Isaac Mizrahi' , 'https://www.vinted.es/brand/isaac-mizrahi'), +(23361 , 'Ivoire' , 'https://www.vinted.es/brand/ivoire'), +(4696259 , 'iobio PoPoLiNi' , 'https://www.vinted.es/brand/iobio-popolini'), +(51969 , 'Irene Van Ryb' , 'https://www.vinted.es/brand/irene-van-ryb'), +(270485 , 'Ireland' , 'https://www.vinted.es/brand/ireland'), +(979953 , 'IRENEISGOOD' , 'https://www.vinted.es/brand/ireneisgood'), +(2476841 , 'Irresistor' , 'https://www.vinted.es/brand/irresistor'), +(1493632 , 'Irenes story' , 'https://www.vinted.es/brand/irenes-story'), +(374096 , 'Ivory' , 'https://www.vinted.es/brand/ivory'), +(934311 , 'Ivory Rose' , 'https://www.vinted.es/brand/ivory-rose'), +(404861 , 'Ivory Ella' , 'https://www.vinted.es/brand/ivory-ella'), +(1160426 , 'Ivory & Co' , 'https://www.vinted.es/brand/ivory-co'), +(2063368 , 'Icrush' , 'https://www.vinted.es/brand/icrush'), +(71120 , 'Idaho' , 'https://www.vinted.es/brand/idaho'), +(1349205 , 'illumicrate' , 'https://www.vinted.es/brand/illumicrate'), +(339232 , 'IZZY' , 'https://www.vinted.es/brand/izzy'), +(5933 , 'Izzue' , 'https://www.vinted.es/brand/izzue'), +(694100 , 'IZ Byer' , 'https://www.vinted.es/brand/iz-byer'), +(3229 , 'Intuition' , 'https://www.vinted.es/brand/intuition'), +(322919 , 'Intuitions' , 'https://www.vinted.es/brand/intuitions'), +(283568 , 'IVY OAK' , 'https://www.vinted.es/brand/ivy-oak'), +(305690 , 'Imprevu' , 'https://www.vinted.es/brand/imprevu'), +(275717 , 'Ilse Jacobsen' , 'https://www.vinted.es/brand/ilse-jacobsen'), +(374810 , 'it cosmetics' , 'https://www.vinted.es/brand/it-cosmetics'), +(206348 , 'I Pinco Pallino' , 'https://www.vinted.es/brand/i-pinco-pallino'), +(174372 , 'INGLOT' , 'https://www.vinted.es/brand/inglot'), +(251590 , 'individual' , 'https://www.vinted.es/brand/individual'), +(4766743 , 'Individual Sentiments' , 'https://www.vinted.es/brand/individual-sentiments'), +(137146 , 'In Linea' , 'https://www.vinted.es/brand/in-linea'), +(234138 , 'iRL' , 'https://www.vinted.es/brand/irl'), +(174558 , 'Illamasqua' , 'https://www.vinted.es/brand/illamasqua'), +(390982 , 'IBANA' , 'https://www.vinted.es/brand/ibana'), +(377152 , 'Illusive London' , 'https://www.vinted.es/brand/illusive-london'), +(6547970 , 'Illusive London Juniors' , 'https://www.vinted.es/brand/illusive-london-juniors'), +(387654 , 'Illumination' , 'https://www.vinted.es/brand/illumination'), +(275055 , 'Isabelle Kessedjian' , 'https://www.vinted.es/brand/isabelle-kessedjian'), +(203046 , 'Isabella' , 'https://www.vinted.es/brand/isabella'), +(23303 , 'ISABEL' , 'https://www.vinted.es/brand/isabel'), +(186534 , 'Isabelle' , 'https://www.vinted.es/brand/isabelle'), +(861431 , 'Isabelle Blanche' , 'https://www.vinted.es/brand/isabelle-blanche'), +(136230 , 'IKO' , 'https://www.vinted.es/brand/iko'), +(152018 , 'Ikoo' , 'https://www.vinted.es/brand/ikoo'), +(451099 , 'IKON' , 'https://www.vinted.es/brand/ikon'), +(562278 , 'I`Kids' , 'https://www.vinted.es/brand/ikids'), +(1416357 , 'ITALY FASHION' , 'https://www.vinted.es/brand/italy-fashion'), +(362450 , 'Ipekyol' , 'https://www.vinted.es/brand/ipekyol'), +(669166 , 'Isana' , 'https://www.vinted.es/brand/isana'), +(161144 , 'I Santi' , 'https://www.vinted.es/brand/i-santi'), +(286712 , 'ISAAC' , 'https://www.vinted.es/brand/isaac'), +(469314 , 'ISAIA' , 'https://www.vinted.es/brand/isaia'), +(1180778 , 'Isaac Dewhirst' , 'https://www.vinted.es/brand/isaac-dewhirst'), +(4766755 , 'I Santi Vintage' , 'https://www.vinted.es/brand/i-santi-vintage'), +(460389 , 'ISARA' , 'https://www.vinted.es/brand/isara'), +(393343 , 'Isaac Sellam' , 'https://www.vinted.es/brand/isaac-sellam'), +(304382 , 'I Play' , 'https://www.vinted.es/brand/i-play'), +(4679 , 'Infinie Passion' , 'https://www.vinted.es/brand/infinie-passion'), +(301213 , 'iCandy' , 'https://www.vinted.es/brand/icandy'), +(1788106 , 'Illuminate' , 'https://www.vinted.es/brand/illuminate'), +(89538 , 'ID''EST' , 'https://www.vinted.es/brand/id-est'), +(280733 , 'IMAC' , 'https://www.vinted.es/brand/imac'), +(265924 , 'Imec' , 'https://www.vinted.es/brand/imec'), +(288918 , 'Isabella Oliver' , 'https://www.vinted.es/brand/isabella-oliver'), +(462149 , 'Illusive' , 'https://www.vinted.es/brand/illusive'), +(1245829 , 'InterDesign' , 'https://www.vinted.es/brand/interdesign'), +(387765 , 'Isdin' , 'https://www.vinted.es/brand/isdin'), +(114078 , 'Isabella Rhea' , 'https://www.vinted.es/brand/isabella-rhea'), +(48755 , 'Isabella Rodriguez' , 'https://www.vinted.es/brand/isabella-rodriguez'), +(1606587 , 'ISABELLA D.' , 'https://www.vinted.es/brand/isabella-d'), +(134290 , 'Iska London' , 'https://www.vinted.es/brand/iska-london'), +(2964611 , 'ICON DENIM' , 'https://www.vinted.es/brand/icon-denim'), +(341416 , 'Il Granchio' , 'https://www.vinted.es/brand/il-granchio'), +(317071 , 'ION' , 'https://www.vinted.es/brand/ion'), +(7239770 , 'IONICKISS' , 'https://www.vinted.es/brand/ionickiss'), +(197556 , 'Ioma' , 'https://www.vinted.es/brand/ioma'), +(276406 , 'iobio' , 'https://www.vinted.es/brand/iobio'), +(210652 , 'Ioannis' , 'https://www.vinted.es/brand/ioannis'), +(495277 , 'Iosselliani' , 'https://www.vinted.es/brand/iosselliani'), +(2900338 , 'Ioana Ciolacu' , 'https://www.vinted.es/brand/ioana-ciolacu'), +(676712 , 'I''M BRIAN' , 'https://www.vinted.es/brand/im-brian'), +(33613 , 'I Love NY' , 'https://www.vinted.es/brand/i-love-ny'), +(390071 , 'I love next' , 'https://www.vinted.es/brand/i-love-next'), +(91536 , 'IPSO' , 'https://www.vinted.es/brand/ipso'), +(45723 , 'Ipsso' , 'https://www.vinted.es/brand/ipsso'), +(2101 , 'Ippon Vintage' , 'https://www.vinted.es/brand/ippon-vintage'), +(660898 , 'Iphoria' , 'https://www.vinted.es/brand/iphoria'), +(441377 , 'Ipsy' , 'https://www.vinted.es/brand/ipsy'), +(3279062 , 'Ippolita' , 'https://www.vinted.es/brand/ippolita'), +(316250 , 'Ikrush' , 'https://www.vinted.es/brand/ikrush'), +(98934 , 'Ivanka Trump' , 'https://www.vinted.es/brand/ivanka-trump'), +(334862 , 'Icon Brand' , 'https://www.vinted.es/brand/icon-brand'), +(221636 , 'Imitz' , 'https://www.vinted.es/brand/imitz'), +(270761 , 'Invisible' , 'https://www.vinted.es/brand/invisible'), +(992145 , 'IL`DOLCE' , 'https://www.vinted.es/brand/ildolce'), +(314007 , 'ImseVimse' , 'https://www.vinted.es/brand/imsevimse'), +(285731 , 'invisibobble' , 'https://www.vinted.es/brand/invisibobble'), +(260372 , 'Insua' , 'https://www.vinted.es/brand/insua'), +(473258 , 'in shape' , 'https://www.vinted.es/brand/in-shape'), +(632701 , 'Insta' , 'https://www.vinted.es/brand/insta'), +(375492 , 'Instax' , 'https://www.vinted.es/brand/instax'), +(526563 , 'Insular' , 'https://www.vinted.es/brand/insular'), +(415186 , 'I.N. San Francisco' , 'https://www.vinted.es/brand/in-san-francisco'), +(39349 , 'I Love LFM' , 'https://www.vinted.es/brand/i-love-lfm'), +(209726 , 'Issa' , 'https://www.vinted.es/brand/issa'), +(30083 , 'I Love Shoes' , 'https://www.vinted.es/brand/i-love-shoes'), +(121862 , 'Impulse' , 'https://www.vinted.es/brand/impulse'), +(144970 , 'IMPULS' , 'https://www.vinted.es/brand/impuls'), +(154448 , 'Impulsion' , 'https://www.vinted.es/brand/impulsion'), +(460763 , 'Ideen Welt' , 'https://www.vinted.es/brand/ideen-welt'), +(43 , 'Jennyfer' , 'https://www.vinted.es/brand/jennyfer'), +(431555 , 'Jennyfer Secret' , 'https://www.vinted.es/brand/jennyfer-secret'), +(54737 , 'Jennifer' , 'https://www.vinted.es/brand/jennifer'), +(110572 , 'Jennifer Lopez' , 'https://www.vinted.es/brand/jennifer-lopez'), +(37371 , 'Jennifer Taylor' , 'https://www.vinted.es/brand/jennifer-taylor'), +(1868863 , 'Jennifer & Jennifer' , 'https://www.vinted.es/brand/jennifer-jennifer'), +(293399 , 'Jennifer Moore' , 'https://www.vinted.es/brand/jennifer-moore'), +(2738720 , 'Jennifer Behr' , 'https://www.vinted.es/brand/jennifer-behr'), +(4841212 , 'Jennifer Meyer' , 'https://www.vinted.es/brand/jennifer-meyer'), +(2448638 , 'Jennifer Chamandi' , 'https://www.vinted.es/brand/jennifer-chamandi'), +(36955 , 'Jack & Jones' , 'https://www.vinted.es/brand/jack-jones'), +(6122637 , 'Jack & Jones Junior' , 'https://www.vinted.es/brand/jack-jones-junior'), +(6980171 , 'Jack & Jones Plus' , 'https://www.vinted.es/brand/jack-jones-plus'), +(2703 , 'Jordan' , 'https://www.vinted.es/brand/jordan'), +(6140115 , 'Jordan x Paris Saint-Germain' , 'https://www.vinted.es/brand/jordan-x-paris-saint-germain'), +(7456187 , 'Jordan x PSG' , 'https://www.vinted.es/brand/jordan-x-psg'), +(5643 , 'Jordana' , 'https://www.vinted.es/brand/jordana'), +(3138684 , 'Jordan x Travis Scott' , 'https://www.vinted.es/brand/jordan-x-travis-scott'), +(2131149 , 'Jordan x Off-White' , 'https://www.vinted.es/brand/jordan-x-off-white'), +(7336273 , 'Jordan x Neymar' , 'https://www.vinted.es/brand/jordan-x-neymar'), +(87828 , 'Jordache' , 'https://www.vinted.es/brand/jordache'), +(3383 , 'Jules' , 'https://www.vinted.es/brand/jules'), +(347119 , 'jules & jenn' , 'https://www.vinted.es/brand/jules-jenn'), +(1555685 , 'Julie Sandlau' , 'https://www.vinted.es/brand/julie-sandlau'), +(13189 , 'JBC' , 'https://www.vinted.es/brand/jbc'), +(639 , 'JB Martin' , 'https://www.vinted.es/brand/jb-martin'), +(130130 , 'J Brand' , 'https://www.vinted.es/brand/j-brand'), +(189712 , 'JBL' , 'https://www.vinted.es/brand/jbl'), +(390608 , 'JBE' , 'https://www.vinted.es/brand/jbe'), +(64918 , 'J&B' , 'https://www.vinted.es/brand/jb'), +(300204 , 'JBS' , 'https://www.vinted.es/brand/jbs'), +(397988 , 'JNBY' , 'https://www.vinted.es/brand/jnby'), +(2851718 , 'JBU' , 'https://www.vinted.es/brand/jbu'), +(66690 , 'Jacadi' , 'https://www.vinted.es/brand/jacadi'), +(169826 , 'Janina' , 'https://www.vinted.es/brand/janina'), +(896420 , 'Janina Stretch' , 'https://www.vinted.es/brand/janina-stretch'), +(403235 , 'Janina Denim' , 'https://www.vinted.es/brand/janina-denim'), +(82754 , 'Janis & John' , 'https://www.vinted.es/brand/janis-john'), +(279525 , 'Janie and Jack' , 'https://www.vinted.es/brand/janie-and-jack'), +(196990 , 'Janira' , 'https://www.vinted.es/brand/janira'), +(21135 , 'Janine Robin' , 'https://www.vinted.es/brand/janine-robin'), +(75648 , 'Janni&Janni' , 'https://www.vinted.es/brand/jannijanni'), +(56720 , 'Janine Pauporté' , 'https://www.vinted.es/brand/janine-pauporte'), +(818512 , 'Janine' , 'https://www.vinted.es/brand/janine'), +(39 , 'Jacqueline Riu' , 'https://www.vinted.es/brand/jacqueline-riu'), +(25909 , 'Jack Wills' , 'https://www.vinted.es/brand/jack-wills'), +(232624 , 'John Lewis' , 'https://www.vinted.es/brand/john-lewis'), +(281686 , 'JoJo Maman Bébé' , 'https://www.vinted.es/brand/jojo-maman-bebe'), +(340288 , 'Jenny Fairy' , 'https://www.vinted.es/brand/jenny-fairy'), +(60722 , 'Jacqueline de Yong' , 'https://www.vinted.es/brand/jacqueline-de-yong'), +(313550 , 'Jaqueline de Yong' , 'https://www.vinted.es/brand/jaqueline-de-yong'), +(39799 , 'JustFab' , 'https://www.vinted.es/brand/justfab'), +(431724 , 'JustFashionNow' , 'https://www.vinted.es/brand/justfashionnow'), +(317425 , 'Jako-o' , 'https://www.vinted.es/brand/jako-o'), +(4901 , 'Juicy Couture' , 'https://www.vinted.es/brand/juicy-couture'), +(147650 , 'Jack Wolfskin' , 'https://www.vinted.es/brand/jack-wolfskin'), +(15723 , 'Jasper Conran' , 'https://www.vinted.es/brand/jasper-conran'), +(160052 , 'Jean Pascale' , 'https://www.vinted.es/brand/jean-pascale'), +(156034 , 'Jean Pascale' , 'https://www.vinted.es/brand/jeans-pascale'), +(399505 , 'Jean Pascal' , 'https://www.vinted.es/brand/jean-pascal'), +(20801 , 'Jean Bourget' , 'https://www.vinted.es/brand/jean-bourget'), +(6797496 , 'Je ne sais quoi' , 'https://www.vinted.es/brand/je-ne-sais-quoi'), +(265802 , 'Joma' , 'https://www.vinted.es/brand/joma'), +(210846 , 'Jo Malone' , 'https://www.vinted.es/brand/jo-malone'), +(1177237 , 'Jomar' , 'https://www.vinted.es/brand/jomar'), +(3151618 , 'Jomar Moda' , 'https://www.vinted.es/brand/jomar-moda'), +(111 , 'Jonak' , 'https://www.vinted.es/brand/jonak'), +(21221 , 'Jocavi' , 'https://www.vinted.es/brand/jocavi'), +(480383 , 'Jo&Mr.Joe' , 'https://www.vinted.es/brand/jomrjoe'), +(309039 , 'Johanna Paris' , 'https://www.vinted.es/brand/johanna-paris'), +(1059058 , 'Jola' , 'https://www.vinted.es/brand/jola'), +(181418 , 'Joy & Fun' , 'https://www.vinted.es/brand/joy-fun'), +(284737 , 'Janod' , 'https://www.vinted.es/brand/janod'), +(186098 , 'J&Joy' , 'https://www.vinted.es/brand/jjoy'), +(32439 , 'JS Millenium' , 'https://www.vinted.es/brand/js-millenium'), +(169496 , 'J&J' , 'https://www.vinted.es/brand/jj'), +(31839 , 'J&M' , 'https://www.vinted.es/brand/jm'), +(186402 , 'J&H Fashion' , 'https://www.vinted.es/brand/jh-fashion'), +(13391 , 'J&D' , 'https://www.vinted.es/brand/jd'), +(6939 , 'J&L PARIS' , 'https://www.vinted.es/brand/jl-paris'), +(5217 , 'J&L' , 'https://www.vinted.es/brand/jl'), +(5415 , 'Jane Norman' , 'https://www.vinted.es/brand/jane-norman'), +(64726 , 'Jake*s' , 'https://www.vinted.es/brand/jakes'), +(587664 , 'Jacke*s' , 'https://www.vinted.es/brand/jackes'), +(210932 , 'Joe Browns' , 'https://www.vinted.es/brand/joe-browns'), +(457260 , 'Joe Brouns' , 'https://www.vinted.es/brand/joe-brouns'), +(22679 , 'Jessica' , 'https://www.vinted.es/brand/jessica'), +(29483 , 'Jessica Simpson' , 'https://www.vinted.es/brand/jessica-simpson'), +(293228 , 'Jessica Howard' , 'https://www.vinted.es/brand/jessica-howard'), +(179822 , 'Jessica McClintock' , 'https://www.vinted.es/brand/jessica-mcclintock'), +(566712 , 'Jessica Wright' , 'https://www.vinted.es/brand/jessica-wright'), +(5463 , 'John Baner' , 'https://www.vinted.es/brand/john-baner'), +(20117 , 'Just Cavalli' , 'https://www.vinted.es/brand/just-cavalli'), +(1668554 , 'Jonk 46' , 'https://www.vinted.es/brand/jonk-46'), +(301715 , 'Jona Michelle' , 'https://www.vinted.es/brand/jona-michelle'), +(422711 , 'Jonathan Martin' , 'https://www.vinted.es/brand/jonathan-martin'), +(431698 , 'JONATHAN SAUNDERS' , 'https://www.vinted.es/brand/jonathan-saunders'), +(615241 , 'Jonas Nielsen' , 'https://www.vinted.es/brand/jonas-nielsen'), +(473679 , 'Jonathan Simkhai' , 'https://www.vinted.es/brand/jonathan-simkhai'), +(385412 , 'Jonathan Adler' , 'https://www.vinted.es/brand/jonathan-adler'), +(3464943 , 'Jonap' , 'https://www.vinted.es/brand/jonap'), +(182206 , 'Jonathan Aston' , 'https://www.vinted.es/brand/jonathan-aston'), +(5962737 , 'JDY' , 'https://www.vinted.es/brand/jdy'), +(485710 , 'JDY DENIM' , 'https://www.vinted.es/brand/jdy-denim'), +(228350 , 'JDC' , 'https://www.vinted.es/brand/jdc'), +(355145 , 'JD Sports' , 'https://www.vinted.es/brand/jd-sports'), +(329862 , 'JD Just Design' , 'https://www.vinted.es/brand/just-design'), +(666089 , 'JD Williams' , 'https://www.vinted.es/brand/jd-williams'), +(4195 , 'Jimmy Choo' , 'https://www.vinted.es/brand/jimmy-choo'), +(7096535 , 'Jimmy Choo x H&M' , 'https://www.vinted.es/brand/jimmy-choo-x-hm'), +(7440269 , 'Jimmy Choo x Mugler' , 'https://www.vinted.es/brand/jimmy-choo-x-mugler'), +(43777 , 'Jott' , 'https://www.vinted.es/brand/jott'), +(185334 , 'Jottum' , 'https://www.vinted.es/brand/jottum'), +(858120 , 'Jota mas ge' , 'https://www.vinted.es/brand/jota-mas-ge'), +(373822 , 'JOT' , 'https://www.vinted.es/brand/jot'), +(133714 , 'Jost' , 'https://www.vinted.es/brand/jost'), +(327555 , 'Jotaele' , 'https://www.vinted.es/brand/jotaele'), +(283445 , 'Jotex' , 'https://www.vinted.es/brand/jotex'), +(437350 , 'Jolt' , 'https://www.vinted.es/brand/jolt'), +(764339 , 'Jostar' , 'https://www.vinted.es/brand/jostar'), +(63332 , 'Jigsaw' , 'https://www.vinted.es/brand/jigsaw'), +(6804391 , 'Jigga Wear' , 'https://www.vinted.es/brand/jigga-wear'), +(108350 , 'Jeckerson' , 'https://www.vinted.es/brand/jeckerson'), +(254956 , 'Jako' , 'https://www.vinted.es/brand/jako'), +(231172 , 'Jacob Cohën' , 'https://www.vinted.es/brand/jacob-cohen'), +(307077 , 'Jaked' , 'https://www.vinted.es/brand/jaked'), +(375331 , 'JAKKS PACIFIC' , 'https://www.vinted.es/brand/jakks-pacific'), +(668079 , 'Jake Fischer' , 'https://www.vinted.es/brand/jake-fischer'), +(372334 , 'Jacobs' , 'https://www.vinted.es/brand/jacobs'), +(51799 , 'Jacobs & Jacobs' , 'https://www.vinted.es/brand/jacobs-jacobs'), +(6997392 , 'Supreme x Jean Paul Gaultier' , 'https://www.vinted.es/brand/supreme-x-jean-paul-gaultier'), +(7277909 , 'Nike x Sacai x Jean Paul Gaultier' , 'https://www.vinted.es/brand/nike-x-sacai-x-jean-paul-gaultier'), +(7492758 , 'Lil Nas X x Jean Paul Gaultier' , 'https://www.vinted.es/brand/lil-nas-x-x-jean-paul-gaultier'), +(108912 , 'JSP' , 'https://www.vinted.es/brand/jsp'), +(247516 , 'J. Stars' , 'https://www.vinted.es/brand/j-stars'), +(424 , 'jsfn' , 'https://www.vinted.es/brand/jsfn'), +(87512 , 'J&S' , 'https://www.vinted.es/brand/js'), +(349373 , 'j shoes' , 'https://www.vinted.es/brand/j-shoes'), +(218888 , 'Js Boutique' , 'https://www.vinted.es/brand/js-boutique'), +(441588 , 'JS Collections' , 'https://www.vinted.es/brand/js-collections'), +(814037 , 'JoS. A. Bank' , 'https://www.vinted.es/brand/jos-a-bank'), +(1997 , 'Jus d''Orange' , 'https://www.vinted.es/brand/jus-dorange'), +(60568 , 'Jack' , 'https://www.vinted.es/brand/jack'), +(455626 , 'Jacky Luxury' , 'https://www.vinted.es/brand/jacky-luxury'), +(15677 , 'jackpot' , 'https://www.vinted.es/brand/jackpot'), +(309748 , 'Jackson' , 'https://www.vinted.es/brand/jackson'), +(267375 , 'Jacky' , 'https://www.vinted.es/brand/jacky'), +(2529 , 'Jack Daniel''s' , 'https://www.vinted.es/brand/jack-daniels'), +(370949 , 'Jackets Industry' , 'https://www.vinted.es/brand/jackets-industry'), +(206342 , 'Jacky Baby' , 'https://www.vinted.es/brand/jacky-baby'), +(20179 , 'J.Crew' , 'https://www.vinted.es/brand/jcrew'), +(3235 , 'JOOP!' , 'https://www.vinted.es/brand/joop'), +(451711 , 'JOOP! Jeans' , 'https://www.vinted.es/brand/joop-jeans'), +(213876 , 'Jooo!!!' , 'https://www.vinted.es/brand/jooo'), +(288125 , 'Jellycat' , 'https://www.vinted.es/brand/jellycat'), +(1493479 , 'Jelly Watch' , 'https://www.vinted.es/brand/jelly-watch'), +(20323 , 'Japan Rags' , 'https://www.vinted.es/brand/japan-rags'), +(54915 , 'Jane' , 'https://www.vinted.es/brand/jane'), +(42277 , 'Janet & Janet' , 'https://www.vinted.es/brand/janet-janet'), +(299941 , 'Janessa' , 'https://www.vinted.es/brand/janessa'), +(64370 , 'Janet Sport' , 'https://www.vinted.es/brand/janet-sport'), +(104308 , 'Jane Klain' , 'https://www.vinted.es/brand/jane-klain'), +(874790 , 'Jane Lushka' , 'https://www.vinted.es/brand/jane-lushka'), +(228818 , 'Janet D.' , 'https://www.vinted.es/brand/janet-d'), +(412332 , 'Janeway' , 'https://www.vinted.es/brand/janeway'), +(358064 , 'Janette' , 'https://www.vinted.es/brand/janette'), +(266478 , 'Jumbo' , 'https://www.vinted.es/brand/jumbo'), +(117268 , 'Julbo' , 'https://www.vinted.es/brand/julbo'), +(51161 , 'Jumpo' , 'https://www.vinted.es/brand/jumpo'), +(2314076 , 'Jusbox' , 'https://www.vinted.es/brand/jusbox'), +(65558 , 'Jaeger' , 'https://www.vinted.es/brand/jaeger'), +(187808 , 'Jaeger-LeCoultre' , 'https://www.vinted.es/brand/jaeger-lecoultre'), +(112460 , 'Jägermeister' , 'https://www.vinted.es/brand/jagermeister'), +(3231550 , 'Jäger Eisenberg' , 'https://www.vinted.es/brand/jager-eisenberg'), +(69984 , 'Jolie' , 'https://www.vinted.es/brand/jolie'), +(112436 , 'Jolie Jolie' , 'https://www.vinted.es/brand/jolie-jolie'), +(612546 , 'JOLIE ANGEL' , 'https://www.vinted.es/brand/jolie-angel'), +(316458 , 'Jolie Miss' , 'https://www.vinted.es/brand/jolie-miss'), +(101900 , 'Jolie Moi' , 'https://www.vinted.es/brand/jolie-moi'), +(397466 , 'Jollein' , 'https://www.vinted.es/brand/jollein'), +(34311 , 'Jolinesse' , 'https://www.vinted.es/brand/jolinesse'), +(166600 , 'Joie' , 'https://www.vinted.es/brand/joie'), +(2847 , 'JOLINA' , 'https://www.vinted.es/brand/jolina'), +(590623 , 'Jolio & Co' , 'https://www.vinted.es/brand/jolio-co'), +(7467 , 'JODHPUR' , 'https://www.vinted.es/brand/jodhpur'), +(67632 , 'JOOHPUR' , 'https://www.vinted.es/brand/joohpur'), +(237 , 'Jeffrey Campbell' , 'https://www.vinted.es/brand/jeffrey-campbell'), +(384868 , 'jakke' , 'https://www.vinted.es/brand/jakke'), +(879749 , 'Jak' , 'https://www.vinted.es/brand/jak'), +(7363534 , 'JAKATTAA' , 'https://www.vinted.es/brand/jakattaa'), +(7363528 , 'Jakub Straka' , 'https://www.vinted.es/brand/jakub-straka'), +(10849 , 'Julie Guerlande' , 'https://www.vinted.es/brand/julie-guerlande'), +(170260 , 'Jaded London' , 'https://www.vinted.es/brand/jaded-london'), +(449101 , 'Josh V' , 'https://www.vinted.es/brand/josh-v'), +(476015 , 'Jose Varon' , 'https://www.vinted.es/brand/jose-varon'), +(27965 , 'Josh' , 'https://www.vinted.es/brand/josh'), +(321134 , 'Joshua Sanders' , 'https://www.vinted.es/brand/joshua-sanders'), +(406699 , 'Josh & Jazz' , 'https://www.vinted.es/brand/josh-jazz'), +(5251592 , 'Ireneisgood X Joshua Sanders' , 'https://www.vinted.es/brand/ireneisgood-x-joshua-sanders'), +(255140 , 'Jacques Vert' , 'https://www.vinted.es/brand/jacques-vert'), +(44097 , 'Jubylee' , 'https://www.vinted.es/brand/jubylee'), +(166012 , 'Jubilee' , 'https://www.vinted.es/brand/jubilee'), +(25185 , 'JJ''s House' , 'https://www.vinted.es/brand/jjs-house'), +(207320 , 'John Rocha' , 'https://www.vinted.es/brand/john-rocha'), +(410728 , 'Jon Richard' , 'https://www.vinted.es/brand/jon-richard'), +(144916 , 'Just' , 'https://www.vinted.es/brand/just'), +(343408 , 'Just small' , 'https://www.vinted.es/brand/just-small'), +(11603 , 'Just Addict' , 'https://www.vinted.es/brand/just-addict'), +(326324 , 'Justice League' , 'https://www.vinted.es/brand/justice-league'), +(41045 , 'JUST WOMAN' , 'https://www.vinted.es/brand/just-woman'), +(117646 , 'Just For You' , 'https://www.vinted.es/brand/just-for-you'), +(1312159 , 'Justwest' , 'https://www.vinted.es/brand/justwest'), +(221608 , 'Justo' , 'https://www.vinted.es/brand/justo'), +(47641 , 'Joseph Ribkoff' , 'https://www.vinted.es/brand/joseph-ribkoff'), +(10261 , 'Jumex' , 'https://www.vinted.es/brand/jumex'), +(93996 , 'jumelles' , 'https://www.vinted.es/brand/jumelles'), +(176076 , 'John H' , 'https://www.vinted.es/brand/john-h'), +(607317 , 'John Henry' , 'https://www.vinted.es/brand/john-henry'), +(1299334 , 'John Henric' , 'https://www.vinted.es/brand/john-henric'), +(1145160 , 'John Hardy' , 'https://www.vinted.es/brand/john-hardy'), +(214050 , 'John Smith' , 'https://www.vinted.es/brand/john-smith'), +(35691 , 'John Richmond' , 'https://www.vinted.es/brand/john-richmond'), +(306041 , 'John Ashfield' , 'https://www.vinted.es/brand/john-ashfield'), +(309228 , 'Joie Clair' , 'https://www.vinted.es/brand/joie-clair'), +(301982 , 'Joie de Vivre' , 'https://www.vinted.es/brand/joie-de-vivre'), +(14855 , 'Joseph' , 'https://www.vinted.es/brand/joseph'), +(296480 , 'JouéClub' , 'https://www.vinted.es/brand/joueclub'), +(165604 , 'Josephine & Co' , 'https://www.vinted.es/brand/josephine-co'), +(99760 , 'Jeans Industry' , 'https://www.vinted.es/brand/jeans-industry'), +(641244 , 'Jade & me' , 'https://www.vinted.es/brand/jade-me'), +(220788 , 'Joseph A.' , 'https://www.vinted.es/brand/joseph-a'), +(338561 , 'Joseph Abboud' , 'https://www.vinted.es/brand/joseph-abboud'), +(933857 , 'Joseph Joseph' , 'https://www.vinted.es/brand/joseph-joseph'), +(3849684 , 'Joe Petrosino' , 'https://www.vinted.es/brand/joe-petrosino'), +(3445113 , 'Joseph Atelier' , 'https://www.vinted.es/brand/joseph-atelier'), +(340116 , 'JOSEP FONT' , 'https://www.vinted.es/brand/josep-font'), +(50409 , 'Joy' , 'https://www.vinted.es/brand/joy'), +(365843 , 'JOYFUL' , 'https://www.vinted.es/brand/joyful'), +(154818 , 'Joyca' , 'https://www.vinted.es/brand/joyca'), +(39229 , 'Joy & Mary' , 'https://www.vinted.es/brand/joy-mary'), +(498971 , 'Joycare' , 'https://www.vinted.es/brand/joycare'), +(31415 , 'JOYCE' , 'https://www.vinted.es/brand/joyce'), +(358384 , 'Joy''s Paris' , 'https://www.vinted.es/brand/joys-paris'), +(559305 , 'Joyce & Girls' , 'https://www.vinted.es/brand/joyce-and-girls'), +(167512 , 'Joy melody' , 'https://www.vinted.es/brand/joy-melody'), +(202750 , 'J. Jeans' , 'https://www.vinted.es/brand/j-jeans'), +(528668 , 'Jubel' , 'https://www.vinted.es/brand/jubel'), +(1873282 , 'Jubelist' , 'https://www.vinted.es/brand/jubelist'), +(1258020 , 'Juwelier' , 'https://www.vinted.es/brand/juwelier'), +(247952 , 'Juwelo' , 'https://www.vinted.es/brand/juwelo'), +(2406157 , 'Jutelaune' , 'https://www.vinted.es/brand/jutelaune'), +(2429448 , 'JuwelKerze' , 'https://www.vinted.es/brand/juwelkerze'), +(4655452 , 'Juvelyra' , 'https://www.vinted.es/brand/juvelyra'), +(367532 , 'Jurassic Park' , 'https://www.vinted.es/brand/jurassic-park'), +(168278 , 'Jacquemus' , 'https://www.vinted.es/brand/jacquemus'), +(8470821 , 'Nike x Jacquemus' , 'https://www.vinted.es/brand/nike-x-jacquemus'), +(347115 , 'Jill' , 'https://www.vinted.es/brand/jill'), +(480834 , 'Jilly' , 'https://www.vinted.es/brand/jilly'), +(1012316 , 'Jill & Mitch' , 'https://www.vinted.es/brand/jill-mitch'), +(188276 , 'Jill Stuart' , 'https://www.vinted.es/brand/jill-stuart'), +(423481 , 'Jillian''s Closet' , 'https://www.vinted.es/brand/jillians-closet'), +(5404881 , 'Jilla Active' , 'https://www.vinted.es/brand/jilla-active'), +(17991 , 'Jil Sander' , 'https://www.vinted.es/brand/jil-sander'), +(433168 , 'Jil Sander NAVY' , 'https://www.vinted.es/brand/jil-sander-navy'), +(7238508 , 'Puma x Jil Sander' , 'https://www.vinted.es/brand/puma-x-jil-sander'), +(75266 , 'JHK' , 'https://www.vinted.es/brand/jhk'), +(44513 , 'Jhay' , 'https://www.vinted.es/brand/jhay'), +(391451 , 'J''hayber' , 'https://www.vinted.es/brand/jhayber'), +(615260 , 'Jhesu' , 'https://www.vinted.es/brand/jhesu'), +(277093 , 'J&H' , 'https://www.vinted.es/brand/jh'), +(592420 , 'JH Collectibles' , 'https://www.vinted.es/brand/jh-collectibles'), +(987281 , 'J.Harvest & Frost' , 'https://www.vinted.es/brand/jharvest-frost'), +(1002984 , 'John Galliano Kids' , 'https://www.vinted.es/brand/john-galliano-kids'), +(289447 , 'Joanna Hope' , 'https://www.vinted.es/brand/joanna-hope'), +(140120 , 'Julien Macdonald' , 'https://www.vinted.es/brand/julien-macdonald'), +(63272 , 'Jana' , 'https://www.vinted.es/brand/jana'), +(531264 , 'Janabebe' , 'https://www.vinted.es/brand/janabebe'), +(3991429 , 'Janavi India' , 'https://www.vinted.es/brand/janavi-india'), +(71474 , 'Jean Paul' , 'https://www.vinted.es/brand/jean-paul'), +(38015 , 'Jean-Paul Barriol' , 'https://www.vinted.es/brand/jean-paul-barriol'), +(181828 , 'Jean Paul Knott' , 'https://www.vinted.es/brand/jean-paul-knott'), +(527 , 'JCL' , 'https://www.vinted.es/brand/jcl'), +(532 , 'JCL Trends' , 'https://www.vinted.es/brand/jcl-trends'), +(14927 , 'JC de Castelbajac' , 'https://www.vinted.es/brand/jc-de-castelbajac'), +(23047 , 'JC. Trigon' , 'https://www.vinted.es/brand/jc-trigon'), +(495124 , 'JCT' , 'https://www.vinted.es/brand/jct'), +(842359 , 'JColor' , 'https://www.vinted.es/brand/jcolor'), +(847461 , 'JcSophie' , 'https://www.vinted.es/brand/jcsophie'), +(47253 , 'Jcp' , 'https://www.vinted.es/brand/jcp'), +(197956 , 'J&Company' , 'https://www.vinted.es/brand/jcompany'), +(228748 , 'Jacqueline' , 'https://www.vinted.es/brand/jacqueline'), +(4766767 , 'Jacqueline Rabun' , 'https://www.vinted.es/brand/jacqueline-rabun'), +(132360 , 'Jijil' , 'https://www.vinted.es/brand/jijil'), +(406977 , 'Junior J' , 'https://www.vinted.es/brand/junior-j'), +(202358 , 'Junior Gaultier' , 'https://www.vinted.es/brand/junior-gaultier'), +(238188 , 'Junior' , 'https://www.vinted.es/brand/junior'), +(296909 , 'Juniors' , 'https://www.vinted.es/brand/juniors'), +(1376492 , 'Junior Band' , 'https://www.vinted.es/brand/junior-band'), +(320560 , 'Junior Fashion' , 'https://www.vinted.es/brand/junior-fashion'), +(619516 , 'Junior League' , 'https://www.vinted.es/brand/junior-league'), +(470780 , 'Junior B.' , 'https://www.vinted.es/brand/junior-b'), +(372433 , 'Jeff Banks' , 'https://www.vinted.es/brand/jeff-banks'), +(303959 , 'Johanna' , 'https://www.vinted.es/brand/johanna'), +(2169 , 'Johann' , 'https://www.vinted.es/brand/johann'), +(355307 , 'Joha' , 'https://www.vinted.es/brand/joha'), +(1190669 , 'Johanna Ortiz' , 'https://www.vinted.es/brand/johanna-ortiz'), +(2320007 , 'Johanna Ortiz x H&M' , 'https://www.vinted.es/brand/johanna-ortiz-x-hm'), +(175524 , 'Johann Earl' , 'https://www.vinted.es/brand/johann-earl'), +(1170889 , 'Johaug' , 'https://www.vinted.es/brand/johaug'), +(1377 , 'Jean-Louis Scherrer' , 'https://www.vinted.es/brand/jean-louis-scherrer'), +(4021 , 'JULIE' , 'https://www.vinted.es/brand/julie'), +(127448 , 'Julie Mode' , 'https://www.vinted.es/brand/julie-mode'), +(14647 , 'Julien d''Orcel' , 'https://www.vinted.es/brand/julien-dorcel'), +(950328 , 'Little Miss Juliette' , 'https://www.vinted.es/brand/little-miss-juliette'), +(297248 , 'Juliette' , 'https://www.vinted.es/brand/juliette'), +(52627 , 'Julie Dee' , 'https://www.vinted.es/brand/julie-dee'), +(169028 , 'Juliet' , 'https://www.vinted.es/brand/juliet'), +(149666 , 'Julietta' , 'https://www.vinted.es/brand/julietta'), +(727867 , 'Jacamo' , 'https://www.vinted.es/brand/jacamo'), +(188550 , 'Jacomo' , 'https://www.vinted.es/brand/jacomo'), +(3951 , 'Jofrati' , 'https://www.vinted.es/brand/jofrati'), +(26171 , 'Justice' , 'https://www.vinted.es/brand/justice'), +(83946 , 'JUSTINE' , 'https://www.vinted.es/brand/justine'), +(439841 , 'Justine Clenquet' , 'https://www.vinted.es/brand/justine-clenquet'), +(10433 , 'Jones New York' , 'https://www.vinted.es/brand/jones-new-york'), +(162852 , 'JN-Joy' , 'https://www.vinted.es/brand/jn-joy'), +(13025 , 'Juju & Christine' , 'https://www.vinted.es/brand/juju-christine'), +(278013 , 'JVZ' , 'https://www.vinted.es/brand/jvz'), +(174744 , 'JVC' , 'https://www.vinted.es/brand/jvc'), +(1345130 , 'J Valdi' , 'https://www.vinted.es/brand/j-valdi'), +(168134 , 'Junarose' , 'https://www.vinted.es/brand/junarose'), +(39027 , 'JETTE' , 'https://www.vinted.es/brand/jette'), +(159744 , 'Jette Joop' , 'https://www.vinted.es/brand/jette-joop'), +(1453787 , 'JETTE by Staccato' , 'https://www.vinted.es/brand/jette-by-staccato'), +(26813 , 'JET-SET' , 'https://www.vinted.es/brand/jet-set'), +(174214 , 'JETech' , 'https://www.vinted.es/brand/jetech'), +(23417 , 'J&E' , 'https://www.vinted.es/brand/je'), +(129910 , 'Javier Simorra' , 'https://www.vinted.es/brand/javier-simorra'), +(333354 , 'Jurassic World' , 'https://www.vinted.es/brand/jurassic-world'), +(23961 , 'Jenny' , 'https://www.vinted.es/brand/jenny'), +(406145 , 'Jenny Lane' , 'https://www.vinted.es/brand/jenny-lane'), +(263500 , 'Jenny by Ara' , 'https://www.vinted.es/brand/jenny-by-ara'), +(207688 , 'Jenny Packham' , 'https://www.vinted.es/brand/jenny-packham'), +(517874 , 'Jenny & Me' , 'https://www.vinted.es/brand/jenny-me'), +(4991 , 'Jennika' , 'https://www.vinted.es/brand/jennika'), +(156776 , 'JewelCandle' , 'https://www.vinted.es/brand/jewelcandle'), +(301210 , 'Joolz' , 'https://www.vinted.es/brand/joolz'), +(294444 , 'Joola' , 'https://www.vinted.es/brand/joola'), +(5251 , 'Jaune Rouge' , 'https://www.vinted.es/brand/jaune-rouge'), +(354575 , 'J''aime' , 'https://www.vinted.es/brand/jaime'), +(288819 , 'J''aime lire' , 'https://www.vinted.es/brand/jaime-lire'), +(325649 , 'Joanie' , 'https://www.vinted.es/brand/joanie'), +(336375 , 'Joan&David' , 'https://www.vinted.es/brand/joandavid'), +(287731 , 'Jones Bootmaker' , 'https://www.vinted.es/brand/jones-bootmaker'), +(322968 , 'Jucca' , 'https://www.vinted.es/brand/jucca'), +(4857 , 'Jad' , 'https://www.vinted.es/brand/jad'), +(521511 , 'Jadea' , 'https://www.vinted.es/brand/jadea'), +(44641 , 'Jade' , 'https://www.vinted.es/brand/jade'), +(40181 , 'Jadore' , 'https://www.vinted.es/brand/jadore'), +(375463 , 'Jadeo' , 'https://www.vinted.es/brand/jadeo'), +(389286 , 'Jaded Rose' , 'https://www.vinted.es/brand/jaded-rose'), +(1101618 , 'Jade & Jasper' , 'https://www.vinted.es/brand/jade-jasper'), +(201844 , 'Juliana' , 'https://www.vinted.es/brand/juliana'), +(5251650 , 'Juliana Bezerra' , 'https://www.vinted.es/brand/juliana-bezerra'), +(696581 , 'JULIA GARNETT' , 'https://www.vinted.es/brand/julia-garnett'), +(265381 , 'JULIAN TAYLOR' , 'https://www.vinted.es/brand/julian-taylor'), +(1493547 , 'Julia Janus' , 'https://www.vinted.es/brand/julia-janus'), +(1295561 , 'Julia Wang' , 'https://www.vinted.es/brand/julia-wang'), +(2582703 , 'JuliaandBen' , 'https://www.vinted.es/brand/juliaandben'), +(361065 , 'JADED' , 'https://www.vinted.es/brand/jaded'), +(351699 , 'Jared Lang' , 'https://www.vinted.es/brand/jared-lang'), +(344961 , 'Jacky & Celine' , 'https://www.vinted.es/brand/jacky-celine'), +(744929 , 'Jacky Girls' , 'https://www.vinted.es/brand/jacky-girls'), +(446259 , 'Jacky Mills' , 'https://www.vinted.es/brand/jacky-mills'), +(1159372 , 'Jacky O' , 'https://www.vinted.es/brand/jacky-o'), +(691756 , 'Jacky Basic' , 'https://www.vinted.es/brand/jacky-basic'), +(4060025 , 'Juli Pascal' , 'https://www.vinted.es/brand/juli-pascal'), +(293943 , 'Julipa' , 'https://www.vinted.es/brand/julipa'), +(448453 , 'Julia June' , 'https://www.vinted.es/brand/julia-june'), +(1305 , 'Julia' , 'https://www.vinted.es/brand/julia'), +(2194664 , 'JULIPET' , 'https://www.vinted.es/brand/julipet'), +(317592 , 'Julia S. Roma' , 'https://www.vinted.es/brand/julia-s-roma'), +(404463 , 'Juguettos' , 'https://www.vinted.es/brand/juguettos'), +(740162 , 'Jeff & Co' , 'https://www.vinted.es/brand/jeff-co'), +(639618 , 'Jeff & Clyde' , 'https://www.vinted.es/brand/jeff-clyde'), +(15189 , 'Jm. Diamant' , 'https://www.vinted.es/brand/jm-diamant'), +(442693 , 'Jane Ashley' , 'https://www.vinted.es/brand/jane-ashley'), +(1242514 , 'JADE SWIM' , 'https://www.vinted.es/brand/jade-swim'), +(5251602 , 'Jade Swimwear' , 'https://www.vinted.es/brand/jade-swimwear'), +(6383 , 'Jérôme Dreyfuss' , 'https://www.vinted.es/brand/jerome-dreyfuss'), +(70386 , 'Jeanswear' , 'https://www.vinted.es/brand/jeanswear'), +(561476 , 'Jeanswear 72D' , 'https://www.vinted.es/brand/jeanswear-72d'), +(38443 , 'Jerzees' , 'https://www.vinted.es/brand/jerzees'), +(176096 , 'J.Lindeberg' , 'https://www.vinted.es/brand/jlindeberg'), +(41407 , 'JEFF' , 'https://www.vinted.es/brand/jeff'), +(4177 , 'Jeff Gallano' , 'https://www.vinted.es/brand/jeff-gallano'), +(5993 , 'Jefferson' , 'https://www.vinted.es/brand/jefferson'), +(6037696 , 'Jeffree Star' , 'https://www.vinted.es/brand/jeffree-star'), +(436625 , 'Jeff de Bruges' , 'https://www.vinted.es/brand/jeff-de-bruges'), +(237520 , 'Jeffrey Rogers' , 'https://www.vinted.es/brand/jeffrey-rogers'), +(293298 , 'Jeffery West' , 'https://www.vinted.es/brand/jeffery-west'), +(59370 , 'Jeep' , 'https://www.vinted.es/brand/jeep'), +(92140 , 'Jeepy' , 'https://www.vinted.es/brand/jeepy'), +(61722 , 'Jeepers Peepers' , 'https://www.vinted.es/brand/jeepers-peepers'), +(290354 , 'Je Porte Mon Bebe' , 'https://www.vinted.es/brand/je-porte-mon-bebe'), +(694433 , 'JEEINI' , 'https://www.vinted.es/brand/jeeini'), +(244196 , 'JEEL' , 'https://www.vinted.es/brand/jeel'), +(87876 , 'J''Espere' , 'https://www.vinted.es/brand/jespere'), +(3227060 , 'JESPER NIELSEN' , 'https://www.vinted.es/brand/jesper-nielsen'), +(59150 , 'Jep''s' , 'https://www.vinted.es/brand/jeps'), +(1493423 , 'Jepo' , 'https://www.vinted.es/brand/jepo'), +(1157166 , 'Jukki' , 'https://www.vinted.es/brand/jukki'), +(24287 , 'Jus de Pom' , 'https://www.vinted.es/brand/jus-de-pom'), +(252354 , 'Joker' , 'https://www.vinted.es/brand/joker'), +(344353 , 'Joe Rivetto' , 'https://www.vinted.es/brand/joe-rivetto'), +(182464 , 'Joe Retro' , 'https://www.vinted.es/brand/joe-retro'), +(334061 , 'Jouer' , 'https://www.vinted.es/brand/jouer'), +(374129 , 'Janus' , 'https://www.vinted.es/brand/janus'), +(169010 , 'JANIS' , 'https://www.vinted.es/brand/janis'), +(16529 , 'JanSport' , 'https://www.vinted.es/brand/jansport'), +(6670664 , 'Nike x Stefan Janoski' , 'https://www.vinted.es/brand/nike-x-stefan-janoski'), +(256904 , 'Jane Shilton' , 'https://www.vinted.es/brand/jane-shilton'), +(1600206 , 'Janosch' , 'https://www.vinted.es/brand/janosch'), +(53243 , 'Jasmine' , 'https://www.vinted.es/brand/jasmine'), +(301423 , 'Jasmine London' , 'https://www.vinted.es/brand/jasmine-london'), +(220172 , 'Jasmine di Milo' , 'https://www.vinted.es/brand/jasmine-di-milo'), +(388550 , 'Yasmine Eslami' , 'https://www.vinted.es/brand/yasmine-eslami'), +(1247611 , 'Jasmine & Juliana' , 'https://www.vinted.es/brand/jasmine-juliana'), +(502945 , 'JASMINAH' , 'https://www.vinted.es/brand/jasminah'), +(773096 , 'JASMINAH PARIS' , 'https://www.vinted.es/brand/jasminah-paris'), +(226898 , 'Jasmin' , 'https://www.vinted.es/brand/jasmin'), +(241806 , 'Johnston & Murphy' , 'https://www.vinted.es/brand/johnston-murphy'), +(752257 , 'J&M Davidson' , 'https://www.vinted.es/brand/jm-davidson'), +(10785098 , 'Jysk' , 'https://www.vinted.es/brand/jysk'), +(649340 , 'Julius Zollner' , 'https://www.vinted.es/brand/julius-zollner'), +(305232 , 'Jeans Fritz' , 'https://www.vinted.es/brand/jeans-fritz'), +(26869 , 'Jovial' , 'https://www.vinted.es/brand/jovial'), +(110772 , 'Jovilia' , 'https://www.vinted.es/brand/jovilia'), +(213900 , 'Jumper' , 'https://www.vinted.es/brand/jumper'), +(921737 , 'Jumper King' , 'https://www.vinted.es/brand/jumper-king'), +(1405995 , 'Jumper 1234' , 'https://www.vinted.es/brand/jumper-1234'), +(1817394 , 'Jumperfabriken' , 'https://www.vinted.es/brand/jumperfabriken'), +(450205 , 'Jump&Fish' , 'https://www.vinted.es/brand/jumpfish'), +(194384 , 'Jerem' , 'https://www.vinted.es/brand/jerem'), +(78122 , 'Jeremy''s' , 'https://www.vinted.es/brand/jeremys'), +(37535 , 'Jeremy Scott' , 'https://www.vinted.es/brand/jeremy-scott'), +(5861556 , 'adidas x Jeremy Scott' , 'https://www.vinted.es/brand/adidas-x-jeremy-scott'), +(1353497 , 'Jermyn Street' , 'https://www.vinted.es/brand/jermyn-street'), +(749495 , 'Jazlyn' , 'https://www.vinted.es/brand/jazlyn'), +(506676 , 'Jaclyn Smith' , 'https://www.vinted.es/brand/jaclyn-smith'), +(1494821 , 'Jaclyn Intimates' , 'https://www.vinted.es/brand/jaclyn-intimates'), +(182502 , 'Jardin Secret' , 'https://www.vinted.es/brand/jardin-secret'), +(116102 , 'Jaguar' , 'https://www.vinted.es/brand/jaguar'), +(418 , 'Just Women' , 'https://www.vinted.es/brand/just-women'), +(1152290 , 'Julia S' , 'https://www.vinted.es/brand/julia-s'), +(3367315 , 'Julia Brown' , 'https://www.vinted.es/brand/julia-brown'), +(8387 , 'JUMP' , 'https://www.vinted.es/brand/jump'), +(289506 , 'Jumping Beans' , 'https://www.vinted.es/brand/jumping-beans'), +(529340 , 'Jump Apparel' , 'https://www.vinted.es/brand/jump-apparel'), +(222804 , 'Jupiter' , 'https://www.vinted.es/brand/jupiter'), +(35821 , 'Jensen' , 'https://www.vinted.es/brand/jensen'), +(236398 , 'JenJenhouse' , 'https://www.vinted.es/brand/jenjenhouse'), +(443009 , 'Jupiler' , 'https://www.vinted.es/brand/jupiler'), +(301712 , 'Just Too Cute' , 'https://www.vinted.es/brand/just-too-cute'), +(28863 , 'Just Female' , 'https://www.vinted.es/brand/just-female'), +(24663 , 'Joe Fresh' , 'https://www.vinted.es/brand/joe-fresh'), +(1312787 , 'Jameson Carter' , 'https://www.vinted.es/brand/jameson-carter'), +(108204 , 'Jones' , 'https://www.vinted.es/brand/jones'), +(76406 , 'Jones + Jones' , 'https://www.vinted.es/brand/jones-jones'), +(556562 , 'Jones Wear' , 'https://www.vinted.es/brand/jones-wear'), +(4885 , 'Jose Saenz' , 'https://www.vinted.es/brand/jose-saenz'), +(15901 , 'Joe Sanchez' , 'https://www.vinted.es/brand/joe-sanchez'), +(523008 , 'JONELLE' , 'https://www.vinted.es/brand/jonelle'), +(241098 , 'Juliette has a Gun' , 'https://www.vinted.es/brand/juliette-has-a-gun'), +(398176 , 'Jasper' , 'https://www.vinted.es/brand/jasper'), +(1438757 , 'Jaspe by Diane P' , 'https://www.vinted.es/brand/jaspe-by-diane-p'), +(618993 , 'Just Hoods' , 'https://www.vinted.es/brand/just-hoods'), +(7012420 , 'Jeffree Star Cosmetics' , 'https://www.vinted.es/brand/jeffree-star-cosmetics'), +(150544 , 'John Galt' , 'https://www.vinted.es/brand/john-galt'), +(109864 , 'Johnnie B' , 'https://www.vinted.es/brand/johnnie-b'), +(4385447 , 'Johnnie-O' , 'https://www.vinted.es/brand/johnnie-o'), +(5834045 , 'JJXX' , 'https://www.vinted.es/brand/jjxx'), +(200812 , 'J.M. Weston' , 'https://www.vinted.es/brand/jm-weston'), +(294271 , 'Jaggy' , 'https://www.vinted.es/brand/jaggy'), +(466214 , 'Jagget''s' , 'https://www.vinted.es/brand/jaggets'), +(322566 , 'John Deere' , 'https://www.vinted.es/brand/john-deere'), +(290778 , 'James & Nicholson' , 'https://www.vinted.es/brand/james-nicholson'), +(284263 , 'Jöwell' , 'https://www.vinted.es/brand/jowell'), +(2923 , 'juju s´amuse' , 'https://www.vinted.es/brand/juju-samuse'), +(2065902 , 'Jujutsu Kaisen' , 'https://www.vinted.es/brand/jujutsu-kaisen'), +(61802 , 'juju' , 'https://www.vinted.es/brand/juju'), +(402436 , 'JuJube' , 'https://www.vinted.es/brand/jujube'), +(877471 , 'Juul & Belle' , 'https://www.vinted.es/brand/juul-belle'), +(1004951 , 'Juduku' , 'https://www.vinted.es/brand/juduku'), +(495682 , 'Juun.J' , 'https://www.vinted.es/brand/juunj'), +(173616 , 'Josef Seibel' , 'https://www.vinted.es/brand/josef-seibel'), +(858127 , 'Juffrouw Jansen' , 'https://www.vinted.es/brand/juffrouw-jansen'), +(384832 , 'Jean Louis François' , 'https://www.vinted.es/brand/jean-louis-francois'), +(63292 , 'Jarlo' , 'https://www.vinted.es/brand/jarlo'), +(86362 , 'Jayloucy' , 'https://www.vinted.es/brand/jayloucy'), +(323291 , 'Jablotron' , 'https://www.vinted.es/brand/jablotron'), +(634511 , 'Jablonex' , 'https://www.vinted.es/brand/jablonex'), +(1521554 , 'Jarpol' , 'https://www.vinted.es/brand/jarpol'), +(1493598 , 'japlongaplong' , 'https://www.vinted.es/brand/japlongaplong'), +(176288 , 'Jungle' , 'https://www.vinted.es/brand/jungle'), +(204678 , 'Jungle Ape' , 'https://www.vinted.es/brand/jungle-ape'), +(397711 , 'juggler' , 'https://www.vinted.es/brand/juggler'), +(202586 , 'Jungla' , 'https://www.vinted.es/brand/jungla'), +(599793 , 'Junge' , 'https://www.vinted.es/brand/junge'), +(3371192 , 'Junglück' , 'https://www.vinted.es/brand/jungluck'), +(86948 , 'Java' , 'https://www.vinted.es/brand/java'), +(291758 , 'Javer' , 'https://www.vinted.es/brand/javer'), +(679634 , 'Jan van Haasteren' , 'https://www.vinted.es/brand/jan-van-haasteren'), +(578030 , 'Jaja' , 'https://www.vinted.es/brand/jaja'), +(484524 , 'Japan Style' , 'https://www.vinted.es/brand/japan-style'), +(484015 , 'Jaase' , 'https://www.vinted.es/brand/jaase'), +(68142 , 'Jean-Marc Philippe' , 'https://www.vinted.es/brand/jean-marc-philippe'), +(4931910 , 'Jola Collection' , 'https://www.vinted.es/brand/jola-collection'), +(3093750 , 'Jolainė' , 'https://www.vinted.es/brand/jolaine'), +(286128 , 'JOLUVI' , 'https://www.vinted.es/brand/joluvi'), +(372617 , 'Joanna' , 'https://www.vinted.es/brand/joanna'), +(2359129 , 'Joanna Laura Constantine' , 'https://www.vinted.es/brand/joanna-laura-constantine'), +(4682063 , 'Joanna Muzyk' , 'https://www.vinted.es/brand/joanna-muzyk'), +(696475 , 'Joan Vass' , 'https://www.vinted.es/brand/joan-vass'), +(574782 , 'JoJo Siwa' , 'https://www.vinted.es/brand/jojo-siwa'), +(4841213 , 'Janis Savitt' , 'https://www.vinted.es/brand/janis-savitt'), +(286282 , 'John Devin' , 'https://www.vinted.es/brand/john-devin'), +(114002 , 'Jina' , 'https://www.vinted.es/brand/jina'), +(90234 , 'Jinglers' , 'https://www.vinted.es/brand/jinglers'), +(194388 , 'Jingpin' , 'https://www.vinted.es/brand/jingpin'), +(11981 , 'JINX' , 'https://www.vinted.es/brand/jinx'), +(520949 , 'Jia Jia' , 'https://www.vinted.es/brand/jia-jia'), +(901219 , 'Jingpinpiju' , 'https://www.vinted.es/brand/jingpinpiju'), +(345620 , 'Jinger Mode' , 'https://www.vinted.es/brand/jinger-mode'), +(1417410 , 'J.ING' , 'https://www.vinted.es/brand/jing'), +(207602 , 'Jilani' , 'https://www.vinted.es/brand/jilani'), +(1307159 , 'Jing Xiu Fang' , 'https://www.vinted.es/brand/jing-xiu-fang'), +(243480 , 'Jazz' , 'https://www.vinted.es/brand/jazz'), +(52745 , 'Jaz' , 'https://www.vinted.es/brand/jaz'), +(42965 , 'Just Jeans' , 'https://www.vinted.es/brand/just-jeans'), +(224990 , 'Jolifin' , 'https://www.vinted.es/brand/jolifin'), +(634985 , 'JUST DON' , 'https://www.vinted.es/brand/just-don'), +(61494 , 'Just One' , 'https://www.vinted.es/brand/just-one'), +(1291984 , 'Just Unique' , 'https://www.vinted.es/brand/just-unique'), +(541021 , 'J.Hart & Bros' , 'https://www.vinted.es/brand/jhart-bros'), +(60 , 'Kiabi' , 'https://www.vinted.es/brand/kiabi'), +(606999 , 'KIBI' , 'https://www.vinted.es/brand/kibi'), +(273 , 'Kaporal' , 'https://www.vinted.es/brand/kaporal'), +(123 , 'KOOKAÏ' , 'https://www.vinted.es/brand/kookai'), +(174020 , 'Kitchoun' , 'https://www.vinted.es/brand/kitchoun'), +(281770 , 'kichoun' , 'https://www.vinted.es/brand/kichoun'), +(5763655 , 'Kitchoum' , 'https://www.vinted.es/brand/kitchoum'), +(1075 , 'Kenzo' , 'https://www.vinted.es/brand/kenzo'), +(79366 , 'Kenzo Kids' , 'https://www.vinted.es/brand/kenzo-kids'), +(7028062 , 'Kenzo Jungle' , 'https://www.vinted.es/brand/kenzo-jungle'), +(5905277 , 'H&M x Kenzo' , 'https://www.vinted.es/brand/hm-x-kenzo'), +(427295 , 'Kenzoki' , 'https://www.vinted.es/brand/kenzoki'), +(258326 , 'Vans x Kenzo' , 'https://www.vinted.es/brand/vans-x-kenzo'), +(6991132 , 'New Era x Kenzo' , 'https://www.vinted.es/brand/new-era-x-kenzo'), +(38269 , 'Kenzarro' , 'https://www.vinted.es/brand/kenzarro'), +(34579 , 'Kenza' , 'https://www.vinted.es/brand/kenza'), +(107326 , 'Kenzel' , 'https://www.vinted.es/brand/kenzel'), +(8139 , 'Kappa' , 'https://www.vinted.es/brand/kappa'), +(40015 , 'Kappahl' , 'https://www.vinted.es/brand/kappahl'), +(416379 , 'KAPPA KONTROLL' , 'https://www.vinted.es/brand/kappa-kontroll'), +(6437206 , 'K-Way x Kappa' , 'https://www.vinted.es/brand/k-way-x-kappa'), +(7026375 , 'Gosha Rubchinskiy × Kappa' , 'https://www.vinted.es/brand/gosha-rubchinskiy-x-kappa'), +(240360 , 'Kapalua' , 'https://www.vinted.es/brand/kapalua'), +(288449 , 'KAPLA' , 'https://www.vinted.es/brand/kapla'), +(1067324 , 'Kappus' , 'https://www.vinted.es/brand/kappus'), +(174016 , 'Kimbaloo' , 'https://www.vinted.es/brand/kimbaloo'), +(216932 , 'Kiki & Koko' , 'https://www.vinted.es/brand/kiki-koko'), +(12805 , 'Kipsta' , 'https://www.vinted.es/brand/kipsta'), +(7079812 , 'Nike x Kipsta' , 'https://www.vinted.es/brand/nike-x-kipsta'), +(407191 , 'Kids Tales' , 'https://www.vinted.es/brand/kids-tales'), +(359136 , 'Kikstar' , 'https://www.vinted.es/brand/kikstar'), +(22 , 'Kickers' , 'https://www.vinted.es/brand/kickers'), +(4561740 , 'Kickers Classics' , 'https://www.vinted.es/brand/kickers-classics'), +(5599 , 'Kalenji' , 'https://www.vinted.es/brand/kalenji'), +(4271 , 'Karen Millen' , 'https://www.vinted.es/brand/karen-millen'), +(174566 , 'Kid Kanai' , 'https://www.vinted.es/brand/kid-kanai'), +(711 , 'Kiko' , 'https://www.vinted.es/brand/kiko'), +(299534 , 'kik kid' , 'https://www.vinted.es/brand/kik-kid'), +(184638 , 'kik' , 'https://www.vinted.es/brand/kik'), +(1389629 , 'Kikisix' , 'https://www.vinted.es/brand/kikisix'), +(225528 , 'Kiki' , 'https://www.vinted.es/brand/kiki'), +(56410 , 'Kikiriki' , 'https://www.vinted.es/brand/kikiriki'), +(397737 , 'Kikkerland' , 'https://www.vinted.es/brand/kikkerland'), +(1092438 , 'Kikkaboo' , 'https://www.vinted.es/brand/kikkaboo'), +(103 , 'Karl Lagerfeld' , 'https://www.vinted.es/brand/karl-lagerfeld'), +(6454063 , 'Karl Lagerfeld Kids' , 'https://www.vinted.es/brand/karl-lagerfeld-kids'), +(6512797 , 'Karl Lagerfeld x H&M' , 'https://www.vinted.es/brand/karl-lagerfeld-x-hm'), +(6420275 , 'Puma x Karl Lagerfeld' , 'https://www.vinted.es/brand/puma-x-karl-lagerfeld'), +(5446321 , 'Vans x Karl Lagerfeld' , 'https://www.vinted.es/brand/vans-x-karl-lagerfeld'), +(277916 , 'Kanz' , 'https://www.vinted.es/brand/kanz'), +(64 , 'KanaBeach' , 'https://www.vinted.es/brand/kanabeach'), +(27353 , 'Kanna' , 'https://www.vinted.es/brand/kanna'), +(36935 , 'Kangol' , 'https://www.vinted.es/brand/kangol'), +(26679 , 'KangaROOS' , 'https://www.vinted.es/brand/kangaroos'), +(169186 , 'Kañopé' , 'https://www.vinted.es/brand/kanope'), +(159208 , 'Kana' , 'https://www.vinted.es/brand/kana'), +(12465 , 'Kani' , 'https://www.vinted.es/brand/kani'), +(294255 , 'Kangra' , 'https://www.vinted.es/brand/kangra'), +(287651 , 'Kinder' , 'https://www.vinted.es/brand/kinder'), +(328116 , 'Kinderkraft' , 'https://www.vinted.es/brand/kinderkraft'), +(1493452 , 'Kinderbutt' , 'https://www.vinted.es/brand/kinderbutt'), +(2264653 , 'Kinderland' , 'https://www.vinted.es/brand/kinderland'), +(2897992 , 'Kindred Bravely' , 'https://www.vinted.es/brand/kindred-bravely'), +(166 , 'K Woman' , 'https://www.vinted.es/brand/k-woman'), +(106708 , 'Kwomen' , 'https://www.vinted.es/brand/kwomen'), +(180 , 'Karl Marc John' , 'https://www.vinted.es/brand/karl-marc-john'), +(1459 , 'Kipling' , 'https://www.vinted.es/brand/kipling'), +(3593 , 'Kocca' , 'https://www.vinted.es/brand/kocca'), +(64626 , 'K-Way' , 'https://www.vinted.es/brand/k-way'), +(11513 , 'Koton' , 'https://www.vinted.es/brand/koton'), +(403779 , 'KOTON KIDS' , 'https://www.vinted.es/brand/koton-kids'), +(530873 , 'Koton baby' , 'https://www.vinted.es/brand/koton-baby'), +(931731 , 'Koko Noko' , 'https://www.vinted.es/brand/koko-noko'), +(75722 , 'Komono' , 'https://www.vinted.es/brand/komono'), +(347913 , 'Kotobukiya' , 'https://www.vinted.es/brand/kotobukiya'), +(427048 , 'kotofey' , 'https://www.vinted.es/brand/kotofey'), +(6903370 , 'Kotori' , 'https://www.vinted.es/brand/kotori'), +(5821136 , 'KIKO KOSTADINOV' , 'https://www.vinted.es/brand/kiko-kostadinov'), +(2137528 , 'Kikoyland' , 'https://www.vinted.es/brand/kikoyland'), +(38999 , 'Kiomi' , 'https://www.vinted.es/brand/kiomi'), +(212034 , 'Kimono' , 'https://www.vinted.es/brand/kimono'), +(227996 , 'Kinousses' , 'https://www.vinted.es/brand/kinousses'), +(4733 , 'Kurt Geiger' , 'https://www.vinted.es/brand/kurt-geiger'), +(25545 , 'Miss KG' , 'https://www.vinted.es/brand/miss-kg'), +(74952 , 'Karrimor' , 'https://www.vinted.es/brand/karrimor'), +(13989 , 'Karl Kani' , 'https://www.vinted.es/brand/karl-kani'), +(174076 , 'Kimadi' , 'https://www.vinted.es/brand/kimadi'), +(46945 , 'khujo' , 'https://www.vinted.es/brand/khujo'), +(181772 , 'King Louie' , 'https://www.vinted.es/brand/king-louie'), +(288156 , 'Kazar' , 'https://www.vinted.es/brand/kazar'), +(1638403 , 'Kazar studio' , 'https://www.vinted.es/brand/kazar-studio'), +(3178524 , 'Kaaral' , 'https://www.vinted.es/brand/kaaral'), +(214268 , 'Kangaroo' , 'https://www.vinted.es/brand/kangaroo'), +(779366 , 'Kangaroo Poo' , 'https://www.vinted.es/brand/kangaroo-poo'), +(1026771 , 'Kids Only' , 'https://www.vinted.es/brand/kids-only'), +(27089 , 'Kids' , 'https://www.vinted.es/brand/kids'), +(2166136 , 'Kids El Corte Inglés' , 'https://www.vinted.es/brand/kids-el-corte-ingles'), +(85056 , 'Kids Star' , 'https://www.vinted.es/brand/kids-star'), +(292325 , 'KIDS collection' , 'https://www.vinted.es/brand/kids-collection'), +(252380 , 'kids case' , 'https://www.vinted.es/brand/kids-case'), +(213718 , 'Kids Minis' , 'https://www.vinted.es/brand/kids-minis'), +(304762 , 'kids company' , 'https://www.vinted.es/brand/kids-company'), +(62214 , 'Kontatto' , 'https://www.vinted.es/brand/kontatto'), +(266259 , 'keen' , 'https://www.vinted.es/brand/keen'), +(311180 , 'Kenner' , 'https://www.vinted.es/brand/kenner'), +(155750 , 'Kendall + Kylie' , 'https://www.vinted.es/brand/kendall-kylie'), +(6211 , 'Ken' , 'https://www.vinted.es/brand/ken'), +(108864 , 'Kennel & Schmenger' , 'https://www.vinted.es/brand/kennel-schmenger'), +(113948 , 'Kenny' , 'https://www.vinted.es/brand/kenny'), +(16165 , 'Kenneth Cole' , 'https://www.vinted.es/brand/kenneth-cole'), +(3719 , 'Kilky' , 'https://www.vinted.es/brand/kilky'), +(55595 , 'Killy' , 'https://www.vinted.es/brand/killy'), +(700790 , 'Killys' , 'https://www.vinted.es/brand/killys'), +(317191 , 'Konami' , 'https://www.vinted.es/brand/konami'), +(690132 , 'Kuniboo' , 'https://www.vinted.es/brand/kuniboo'), +(927882 , 'Kidz Only' , 'https://www.vinted.es/brand/kidz-only'), +(77476 , 'Kate Spade' , 'https://www.vinted.es/brand/kate-spade'), +(8822442 , 'Kade Spade New York' , 'https://www.vinted.es/brand/kade-spade-new-york'), +(54837 , 'King' , 'https://www.vinted.es/brand/king'), +(113526 , 'King Kong' , 'https://www.vinted.es/brand/king-kong'), +(174742 , 'king bear' , 'https://www.vinted.es/brand/king-bear'), +(541 , 'Kingsland' , 'https://www.vinted.es/brand/kingsland'), +(279786 , 'Kingfield' , 'https://www.vinted.es/brand/kingfield'), +(524075 , 'Kings Will Dream' , 'https://www.vinted.es/brand/kings-will-dream'), +(441394 , 'Kings Of Indigo' , 'https://www.vinted.es/brand/kings-of-indigo'), +(386531 , 'King of Fashion' , 'https://www.vinted.es/brand/king-of-fashion'), +(302646 , 'Kingston' , 'https://www.vinted.es/brand/kingston'), +(222 , 'Kling' , 'https://www.vinted.es/brand/kling'), +(716980 , 'Klingel' , 'https://www.vinted.es/brand/klingel'), +(214280 , 'Klins' , 'https://www.vinted.es/brand/klins'), +(156402 , 'Kaleidoscope' , 'https://www.vinted.es/brand/kaleidoscope'), +(666363 , 'Konges Sløjd' , 'https://www.vinted.es/brand/konges-slojd'), +(175384 , 'Kiotis' , 'https://www.vinted.es/brand/kiotis'), +(24171 , 'Kimmidoll' , 'https://www.vinted.es/brand/kimmidoll'), +(422085 , 'KimiKa' , 'https://www.vinted.es/brand/kimika'), +(322097 , 'Kiokids' , 'https://www.vinted.es/brand/kiokids'), +(158496 , 'Kimi & Co' , 'https://www.vinted.es/brand/kimi-co'), +(1493352 , 'kimichi Blue' , 'https://www.vinted.es/brand/kimichi-blue'), +(6510000 , 'Kixmi' , 'https://www.vinted.es/brand/kixmi'), +(70636 , 'Killstar' , 'https://www.vinted.es/brand/killstar'), +(1131 , 'Khaan' , 'https://www.vinted.es/brand/khaan'), +(500376 , 'Khaadi' , 'https://www.vinted.es/brand/khaadi'), +(236158 , 'Killtec' , 'https://www.vinted.es/brand/killtec'), +(157584 , 'Kaos' , 'https://www.vinted.es/brand/kaos'), +(102982 , 'Kaotiko' , 'https://www.vinted.es/brand/kaotiko'), +(11475 , 'Karston' , 'https://www.vinted.es/brand/karston'), +(1887307 , 'Kasanova' , 'https://www.vinted.es/brand/kasanova'), +(317820 , 'Kaiser' , 'https://www.vinted.es/brand/kaiser'), +(353723 , 'Kaws' , 'https://www.vinted.es/brand/kaws'), +(309208 , 'KAOÂ' , 'https://www.vinted.es/brand/kaoa'), +(881719 , 'Kasa' , 'https://www.vinted.es/brand/kasa'), +(321987 , 'KAROSTAR' , 'https://www.vinted.es/brand/karostar'), +(455440 , 'KASK' , 'https://www.vinted.es/brand/kask'), +(2291 , 'Killah' , 'https://www.vinted.es/brand/killah'), +(384792 , 'KANGOUROU' , 'https://www.vinted.es/brand/kangourou'), +(159930 , 'K-DESIGN' , 'https://www.vinted.es/brand/k-design'), +(687476 , 'Kolor' , 'https://www.vinted.es/brand/kolor'), +(2069763 , 'Kolorino' , 'https://www.vinted.es/brand/kolorino'), +(3589 , 'Kilibbi' , 'https://www.vinted.es/brand/kilibbi'), +(226214 , 'Knot So Bad' , 'https://www.vinted.es/brand/knot-so-bad'), +(330595 , 'Koeka' , 'https://www.vinted.es/brand/koeka'), +(313948 , 'Kouka' , 'https://www.vinted.es/brand/kouka'), +(351750 , 'Kokadi' , 'https://www.vinted.es/brand/kokadi'), +(562900 , 'koka' , 'https://www.vinted.es/brand/koka'), +(1077785 , 'KOOKABURRA' , 'https://www.vinted.es/brand/kookaburra'), +(37901 , 'KID''S GRAFFITI' , 'https://www.vinted.es/brand/kids-graffiti'), +(66482 , 'kaffe' , 'https://www.vinted.es/brand/kaffe'), +(3141906 , 'KAFFE Curve' , 'https://www.vinted.es/brand/kaffe-curve'), +(364774 , 'Kosmos' , 'https://www.vinted.es/brand/kosmos'), +(272829 , 'Kosmo Lupo' , 'https://www.vinted.es/brand/kosmo-lupo'), +(200364 , 'Kylie' , 'https://www.vinted.es/brand/kylie'), +(261082 , 'Kylie Crazy' , 'https://www.vinted.es/brand/kylie-crazy'), +(242102 , 'Kylie Cosmetics' , 'https://www.vinted.es/brand/kylie-cosmetics'), +(230086 , 'Kylie Jenner' , 'https://www.vinted.es/brand/kylie-jenner'), +(218408 , 'Kylie Minogue' , 'https://www.vinted.es/brand/kylie-minogue'), +(318228 , 'Kyle & Deena' , 'https://www.vinted.es/brand/kyle-deena'), +(91464 , 'Kérastase' , 'https://www.vinted.es/brand/kerastase'), +(2137 , 'Kiwi' , 'https://www.vinted.es/brand/kiwi'), +(18321 , 'KiWi Saint-Tropez' , 'https://www.vinted.es/brand/kiwi-saint-tropez'), +(2325299 , 'KiwiCo' , 'https://www.vinted.es/brand/kiwico'), +(3011 , 'Kiliwatch' , 'https://www.vinted.es/brand/kiliwatch'), +(178966 , 'Kitiwatt' , 'https://www.vinted.es/brand/kitiwatt'), +(539187 , 'Kiriki' , 'https://www.vinted.es/brand/kiriki'), +(281345 , 'klass' , 'https://www.vinted.es/brand/klass'), +(489266 , 'Klasiks' , 'https://www.vinted.es/brand/klasiks'), +(4441981 , 'KLOSS' , 'https://www.vinted.es/brand/kloss'), +(543308 , 'Klaus Dilkrath' , 'https://www.vinted.es/brand/klaus-dilkrath'), +(2649787 , 'Klasyka' , 'https://www.vinted.es/brand/klasyka'), +(250248 , 'Kari Traa' , 'https://www.vinted.es/brand/kari-traa'), +(144022 , 'KIT' , 'https://www.vinted.es/brand/kit'), +(51767 , 'ki.té.toi' , 'https://www.vinted.es/brand/kitetoi'), +(320642 , 'Kith' , 'https://www.vinted.es/brand/kith'), +(305662 , 'kitett' , 'https://www.vinted.es/brand/kitett'), +(217598 , 'Kitana' , 'https://www.vinted.es/brand/kitana'), +(349884 , 'Kitte' , 'https://www.vinted.es/brand/kitte'), +(321972 , 'Kite' , 'https://www.vinted.es/brand/kite'), +(414476 , 'Kiton' , 'https://www.vinted.es/brand/kiton'), +(249382 , 'KOAN' , 'https://www.vinted.es/brand/koan'), +(52431 , 'KOKO' , 'https://www.vinted.es/brand/koko'), +(200164 , 'The Korner' , 'https://www.vinted.es/brand/the-korner'), +(4245 , 'Koah' , 'https://www.vinted.es/brand/koah'), +(283472 , 'Koala Baby' , 'https://www.vinted.es/brand/koala-baby'), +(253000 , 'Koala Bay' , 'https://www.vinted.es/brand/koala-bay'), +(239582 , 'Key Largo' , 'https://www.vinted.es/brand/key-largo'), +(275803 , 'Kaliko' , 'https://www.vinted.es/brand/kaliko'), +(97862 , 'Kaliyog' , 'https://www.vinted.es/brand/kaliyog'), +(3826099 , 'KALI KING' , 'https://www.vinted.es/brand/kali-king'), +(71516 , 'Kali Orea' , 'https://www.vinted.es/brand/kali-orea'), +(7185 , 'Kenvelo' , 'https://www.vinted.es/brand/kenvelo'), +(600573 , 'Kleid' , 'https://www.vinted.es/brand/kleid'), +(287921 , 'Klein' , 'https://www.vinted.es/brand/klein'), +(331656 , 'Kleine Könige' , 'https://www.vinted.es/brand/kleine-konige'), +(2757184 , 'Kleinigkeit' , 'https://www.vinted.es/brand/kleinigkeit'), +(174564 , 'Kaloo' , 'https://www.vinted.es/brand/kaloo'), +(321278 , 'Kaleos' , 'https://www.vinted.es/brand/kaleos'), +(771988 , 'Karoo' , 'https://www.vinted.es/brand/karoo'), +(4589549 , 'Kaloszepoprosze' , 'https://www.vinted.es/brand/kaloszepoprosze'), +(329830 , 'Kennet Street' , 'https://www.vinted.es/brand/kennet-street'), +(31395 , 'Kenneth Cole Reaction' , 'https://www.vinted.es/brand/kenneth-cole-reaction'), +(246362 , 'Kenneth Jay Lane' , 'https://www.vinted.es/brand/kenneth-jay-lane'), +(1637678 , 'Kenneth Cole New York' , 'https://www.vinted.es/brand/kenneth-cole-new-york'), +(23307 , 'K.Zell' , 'https://www.vinted.es/brand/kzell'), +(5716296 , 'K. Bell Socks' , 'https://www.vinted.es/brand/k-bell-socks'), +(319543 , 'Kruidvat' , 'https://www.vinted.es/brand/kruidvat'), +(896153 , 'KITESS' , 'https://www.vinted.es/brand/kitess'), +(4852428 , 'Kit and Kaboodal' , 'https://www.vinted.es/brand/kit-and-kaboodal'), +(4517 , 'Katana' , 'https://www.vinted.es/brand/katana'), +(566100 , 'Kataya' , 'https://www.vinted.es/brand/kataya'), +(321727 , 'KAANAS' , 'https://www.vinted.es/brand/kaanas'), +(372071 , 'Koröshi' , 'https://www.vinted.es/brand/koroshi'), +(1681146 , 'Kikit' , 'https://www.vinted.es/brand/kikit'), +(1174179 , 'Kiki De Montparnasse' , 'https://www.vinted.es/brand/kiki-de-montparnasse'), +(88828 , 'Kayla' , 'https://www.vinted.es/brand/kayla'), +(333046 , 'Kayland' , 'https://www.vinted.es/brand/kayland'), +(238920 , 'Kaylla' , 'https://www.vinted.es/brand/kaylla'), +(510 , 'Kalais' , 'https://www.vinted.es/brand/kalais'), +(32587 , 'Karla' , 'https://www.vinted.es/brand/karla'), +(720292 , 'Kaytan' , 'https://www.vinted.es/brand/kaytan'), +(319903 , 'Kalamton' , 'https://www.vinted.es/brand/kalamton'), +(322704 , 'kayra' , 'https://www.vinted.es/brand/kayra'), +(288058 , 'Kayané' , 'https://www.vinted.es/brand/kayane'), +(1031272 , 'Kahla' , 'https://www.vinted.es/brand/kahla'), +(364856 , 'Konplott' , 'https://www.vinted.es/brand/konplott'), +(1493480 , 'Keneth Cole' , 'https://www.vinted.es/brand/keneth-cole'), +(20221 , 'Kariban' , 'https://www.vinted.es/brand/kariban'), +(3588378 , 'K&K Kaiserjäger' , 'https://www.vinted.es/brand/kk-kaiserjager'), +(634540 , 'Kaisely' , 'https://www.vinted.es/brand/kaisely'), +(426590 , 'klitzeklein' , 'https://www.vinted.es/brand/klitzeklein'), +(130980 , 'Krizia' , 'https://www.vinted.es/brand/krizia'), +(419760 , 'K3' , 'https://www.vinted.es/brand/k3'), +(259546 , 'Kapten & Son' , 'https://www.vinted.es/brand/kapten-son'), +(759718 , 'Kidult' , 'https://www.vinted.es/brand/kidult'), +(1489412 , 'Kornecki' , 'https://www.vinted.es/brand/kornecki'), +(175738 , 'Kiss Melody' , 'https://www.vinted.es/brand/kiss-melody'), +(329173 , 'KISS melody girl' , 'https://www.vinted.es/brand/kiss-melody-girl'), +(384113 , 'Kanak' , 'https://www.vinted.es/brand/kanak'), +(266973 , 'Kansas' , 'https://www.vinted.es/brand/kansas'), +(173156 , 'Kancan' , 'https://www.vinted.es/brand/kancan'), +(246066 , 'Kansai Yamamoto' , 'https://www.vinted.es/brand/kansai-yamamoto'), +(158652 , 'Kamik' , 'https://www.vinted.es/brand/kamik'), +(57750 , 'Kami' , 'https://www.vinted.es/brand/kami'), +(1383926 , 'Kaikkialla' , 'https://www.vinted.es/brand/kaikkialla'), +(3544159 , 'Kämpken' , 'https://www.vinted.es/brand/kampken'), +(73932 , 'K-SWISS' , 'https://www.vinted.es/brand/k-swiss'), +(226522 , 'Kitaro' , 'https://www.vinted.es/brand/kitaro'), +(3087182 , 'Kita' , 'https://www.vinted.es/brand/kitas'), +(7700455 , 'KITA Products' , 'https://www.vinted.es/brand/kita-products'), +(3066564 , 'Kit and Ace' , 'https://www.vinted.es/brand/kit-and-ace'), +(200964 , 'KELME' , 'https://www.vinted.es/brand/kelme'), +(417815 , 'Kelrebec' , 'https://www.vinted.es/brand/kelrebec'), +(266202 , 'Kelmoi' , 'https://www.vinted.es/brand/kelmoi'), +(302152 , 'Kemei' , 'https://www.vinted.es/brand/kemei'), +(373586 , 'Kelsey Rose' , 'https://www.vinted.es/brand/kelsey-rose'), +(107634 , 'Kempa' , 'https://www.vinted.es/brand/kempa'), +(354842 , 'kemal tanca' , 'https://www.vinted.es/brand/kemal-tanca'), +(138154 , 'Kemper' , 'https://www.vinted.es/brand/kemper'), +(82238 , 'Keys' , 'https://www.vinted.es/brand/keys'), +(2335 , 'kesslord' , 'https://www.vinted.es/brand/kesslord'), +(225326 , 'Kensington' , 'https://www.vinted.es/brand/kensington'), +(3987 , 'Keds' , 'https://www.vinted.es/brand/keds'), +(295668 , 'Keya' , 'https://www.vinted.es/brand/keya'), +(480229 , 'Key Up' , 'https://www.vinted.es/brand/key-up'), +(541676 , 'Key-Di' , 'https://www.vinted.es/brand/key-di'), +(282836 , 'K&S' , 'https://www.vinted.es/brand/ks'), +(439954 , 'Kesi''Art' , 'https://www.vinted.es/brand/kesiart'), +(215968 , 'KATE' , 'https://www.vinted.es/brand/kate'), +(1773943 , 'Kate London' , 'https://www.vinted.es/brand/kate-london'), +(714615 , 'Kate by Laltramoda' , 'https://www.vinted.es/brand/kate-by-laltramoda'), +(509297 , 'Kate Cut' , 'https://www.vinted.es/brand/kate-cut'), +(225664 , 'Katelina' , 'https://www.vinted.es/brand/katelina'), +(88400 , 'Kate Lee' , 'https://www.vinted.es/brand/kate-lee'), +(141570 , 'katestorm' , 'https://www.vinted.es/brand/katestorm'), +(596206 , 'Kate Gray' , 'https://www.vinted.es/brand/kate-gray'), +(462587 , 'Kate Hill' , 'https://www.vinted.es/brand/kate-hill'), +(181420 , 'KNOT' , 'https://www.vinted.es/brand/knot'), +(1649726 , 'The Knotty Ones' , 'https://www.vinted.es/brand/the-knotty-ones'), +(937172 , 'Knolpower' , 'https://www.vinted.es/brand/knolpower'), +(184548 , 'Knowledge Cotton Apparel' , 'https://www.vinted.es/brand/knowledge-cotton-apparel'), +(1923314 , 'Knit Design' , 'https://www.vinted.es/brand/knit-design'), +(331848 , 'Knit-ted' , 'https://www.vinted.es/brand/knit-ted'), +(566517 , 'Knockout' , 'https://www.vinted.es/brand/knockout'), +(472058 , 'KNOW' , 'https://www.vinted.es/brand/know'), +(273869 , 'Knomo' , 'https://www.vinted.es/brand/knomo'), +(480817 , 'Ken Scott' , 'https://www.vinted.es/brand/ken-scott'), +(307233 , 'Ke D''la Bombe' , 'https://www.vinted.es/brand/ke-dla-bombe'), +(25221 , 'Kess' , 'https://www.vinted.es/brand/kess'), +(601013 , 'KESHIA' , 'https://www.vinted.es/brand/keshia'), +(8179 , 'Kawasaki' , 'https://www.vinted.es/brand/kawasaki'), +(36433 , 'Kokodo' , 'https://www.vinted.es/brand/kokodo'), +(28375 , 'Kokomarina' , 'https://www.vinted.es/brand/kokomarina'), +(2787064 , 'Kokosi' , 'https://www.vinted.es/brand/kokosi'), +(3859833 , 'Koko Moda' , 'https://www.vinted.es/brand/koko-moda'), +(2021 , 'The Kooples' , 'https://www.vinted.es/brand/the-kooples'), +(1978774 , 'Krüger Dirndl' , 'https://www.vinted.es/brand/kruger-dirndl'), +(1025282 , 'Kaufland' , 'https://www.vinted.es/brand/kaufland'), +(382443 , 'Katie Loxton' , 'https://www.vinted.es/brand/katie-loxton'), +(47055 , 'KY creation' , 'https://www.vinted.es/brand/ky-creation'), +(285525 , 'Kiss Pink' , 'https://www.vinted.es/brand/kiss-pink'), +(21921 , 'KISS' , 'https://www.vinted.es/brand/kiss'), +(218616 , 'kiss me' , 'https://www.vinted.es/brand/kiss-me'), +(342197 , 'Kiss Kriss' , 'https://www.vinted.es/brand/kiss-kriss'), +(106942 , 'Kiss Kiss' , 'https://www.vinted.es/brand/kiss-kiss'), +(558667 , 'Kisses Of Pearl' , 'https://www.vinted.es/brand/kisses-of-pearl'), +(197780 , 'Kiss The Sky' , 'https://www.vinted.es/brand/kiss-the-sky'), +(49781 , 'Kiss Therapy' , 'https://www.vinted.es/brand/kiss-therapy'), +(114520 , 'Kenny S.' , 'https://www.vinted.es/brand/kenny-s'), +(2097 , 'kosmika' , 'https://www.vinted.es/brand/kosmika'), +(11451 , 'Krisp' , 'https://www.vinted.es/brand/krisp'), +(20531 , 'Kristina Popovitch' , 'https://www.vinted.es/brand/kristina-popovitch'), +(83060 , 'Kristina Ti' , 'https://www.vinted.es/brand/kristina-ti'), +(69266 , 'Kriss' , 'https://www.vinted.es/brand/kriss'), +(303756 , 'Kris' , 'https://www.vinted.es/brand/kris'), +(165486 , 'Kris Van Assche' , 'https://www.vinted.es/brand/kris-van-assche'), +(409146 , 'Kris Line' , 'https://www.vinted.es/brand/kris-line'), +(343610 , 'Kristensen Du Nord' , 'https://www.vinted.es/brand/kristensen-du-nord'), +(494469 , 'Kris x Kids' , 'https://www.vinted.es/brand/kris-x-kids'), +(547088 , 'Koralline' , 'https://www.vinted.es/brand/koralline'), +(306727 , 'karstadt' , 'https://www.vinted.es/brand/karstadt'), +(111038 , 'K2' , 'https://www.vinted.es/brand/k2'), +(309982 , 'Kiddy' , 'https://www.vinted.es/brand/kiddy'), +(297380 , 'Kiddo' , 'https://www.vinted.es/brand/kiddo'), +(893320 , 'KIDDO GIRLS' , 'https://www.vinted.es/brand/kiddo-girls'), +(276244 , 'Kindy' , 'https://www.vinted.es/brand/kindy'), +(391204 , 'Kiddimoto' , 'https://www.vinted.es/brand/kiddimoto'), +(571162 , 'Kiddiezoom' , 'https://www.vinted.es/brand/kiddiezoom'), +(393144 , 'Kiddieland' , 'https://www.vinted.es/brand/kiddieland'), +(1116355 , 'Kiddie' , 'https://www.vinted.es/brand/kiddie'), +(3956733 , 'Kidly' , 'https://www.vinted.es/brand/kidly'), +(1301929 , 'Kiddinx' , 'https://www.vinted.es/brand/kiddinx'), +(10529 , 'KOR@KOR' , 'https://www.vinted.es/brand/korkor'), +(190078 , 'Kokin' , 'https://www.vinted.es/brand/kokin'), +(196180 , 'Kokinou' , 'https://www.vinted.es/brand/kokinou'), +(1522893 , 'Koiné' , 'https://www.vinted.es/brand/koine'), +(65150 , 'Korintage' , 'https://www.vinted.es/brand/korintage'), +(409726 , 'Koh-I-Noor' , 'https://www.vinted.es/brand/koh-i-noor'), +(174530 , 'Klorane' , 'https://www.vinted.es/brand/klorane'), +(337642 , 'Kloane' , 'https://www.vinted.es/brand/kloane'), +(76840 , 'Kabyle' , 'https://www.vinted.es/brand/kabyle'), +(304297 , 'Karhu' , 'https://www.vinted.es/brand/karhu'), +(1493296 , 'charhartt' , 'https://www.vinted.es/brand/charhartt'), +(3326333 , 'Karussell' , 'https://www.vinted.es/brand/karussell'), +(3088411 , 'kARTu' , 'https://www.vinted.es/brand/kartu'), +(321682 , 'Koolook' , 'https://www.vinted.es/brand/koolook'), +(853097 , 'Kooiook' , 'https://www.vinted.es/brand/kooiook'), +(177196 , 'Kid Cool' , 'https://www.vinted.es/brand/kid-cool'), +(315096 , 'Kids&Cool' , 'https://www.vinted.es/brand/kids-cool'), +(72010 , 'KTM' , 'https://www.vinted.es/brand/ktm'), +(811830 , 'K-Tinni' , 'https://www.vinted.es/brand/k-tinni'), +(81172 , 'KTZ' , 'https://www.vinted.es/brand/ktz'), +(1380681 , 'K-town' , 'https://www.vinted.es/brand/k-town'), +(1097056 , 'KTR' , 'https://www.vinted.es/brand/ktr'), +(375260 , 'Kids and Friends' , 'https://www.vinted.es/brand/kids-and-friends'), +(1419912 , 'Kids & Friends' , 'https://www.vinted.es/brand/kids-friends'), +(223854 , 'KONG' , 'https://www.vinted.es/brand/kong'), +(71388 , 'KONTESSA' , 'https://www.vinted.es/brand/kontessa'), +(318007 , 'Konix' , 'https://www.vinted.es/brand/konix'), +(174234 , 'Konad' , 'https://www.vinted.es/brand/konad'), +(295373 , 'Kooga' , 'https://www.vinted.es/brand/kooga'), +(81150 , 'K By Kookai' , 'https://www.vinted.es/brand/k-by-kookai'), +(1974738 , 'Kidz Nation' , 'https://www.vinted.es/brand/kidz-nation'), +(146572 , 'KAMMI' , 'https://www.vinted.es/brand/kammi'), +(863816 , 'Karmine' , 'https://www.vinted.es/brand/karmine'), +(581511 , 'Kaemingk' , 'https://www.vinted.es/brand/kaemingk'), +(319856 , 'Koi Footwear' , 'https://www.vinted.es/brand/koi-footwear'), +(311498 , 'Keel Toys' , 'https://www.vinted.es/brand/keel-toys'), +(176784 , 'Kiehl''s' , 'https://www.vinted.es/brand/kiehls'), +(7367068 , 'Khadi' , 'https://www.vinted.es/brand/khadi'), +(4695434 , 'Kauf Dich Glücklich' , 'https://www.vinted.es/brand/kauf-dich-glucklich'), +(22423 , 'KHRIO''' , 'https://www.vinted.es/brand/khrio'), +(1587 , 'Kulte' , 'https://www.vinted.es/brand/kulte'), +(375693 , 'Kultivate' , 'https://www.vinted.es/brand/kultivate'), +(615508 , 'Kulto' , 'https://www.vinted.es/brand/kulto'), +(733071 , 'Kult' , 'https://www.vinted.es/brand/kult'), +(207088 , 'Kujten' , 'https://www.vinted.es/brand/kujten'), +(265365 , 'Küsten Luder' , 'https://www.vinted.es/brand/kusten-luder'), +(337046 , 'KUTE' , 'https://www.vinted.es/brand/kute'), +(28503 , 'Kalisson' , 'https://www.vinted.es/brand/kalisson'), +(69388 , 'Kimberfeel' , 'https://www.vinted.es/brand/kimberfeel'), +(1822850 , 'Kaskada' , 'https://www.vinted.es/brand/kaskada'), +(68168 , 'Kakie' , 'https://www.vinted.es/brand/kakie'), +(370764 , 'Kasper' , 'https://www.vinted.es/brand/kasper'), +(313097 , 'KASZER' , 'https://www.vinted.es/brand/kaszer'), +(580996 , 'Kakiblin' , 'https://www.vinted.es/brand/kakiblin'), +(448514 , 'Kasha' , 'https://www.vinted.es/brand/kasha'), +(103404 , 'Kira' , 'https://www.vinted.es/brand/kira'), +(20729 , 'Kira Plastinina' , 'https://www.vinted.es/brand/kira-plastinina'), +(2137529 , 'Kira plastirina' , 'https://www.vinted.es/brand/kira-plastirina'), +(290397 , 'Kim & Lou' , 'https://www.vinted.es/brand/kim-lou'), +(196200 , 'Kihawo' , 'https://www.vinted.es/brand/kihawo'), +(635693 , 'KILARNY' , 'https://www.vinted.es/brand/kilarny'), +(85762 , 'Kallisté' , 'https://www.vinted.es/brand/kalliste'), +(299515 , 'Kalasity' , 'https://www.vinted.es/brand/kalasity'), +(671336 , 'Kalas' , 'https://www.vinted.es/brand/kalas'), +(7585329 , 'Kalash Exclusive' , 'https://www.vinted.es/brand/kalash-exclusive'), +(209042 , 'Kleancolor' , 'https://www.vinted.es/brand/kleancolor'), +(800322 , 'Klean Kanteen' , 'https://www.vinted.es/brand/klean-kanteen'), +(1905280 , 'Kaniowski' , 'https://www.vinted.es/brand/kaniowski'), +(7456167 , 'Kaning' , 'https://www.vinted.es/brand/kaning'), +(37921 , 'Kelsi Dagger' , 'https://www.vinted.es/brand/kelsi-dagger'), +(425015 , 'Kelsi' , 'https://www.vinted.es/brand/kelsi'), +(95018 , 'Kensie' , 'https://www.vinted.es/brand/kensie'), +(650901 , 'Kelso' , 'https://www.vinted.es/brand/kelso'), +(438287 , 'Kensie Girl' , 'https://www.vinted.es/brand/kensie-girl'), +(1892538 , 'Kesi' , 'https://www.vinted.es/brand/kesi'), +(5567945 , 'Kensis' , 'https://www.vinted.es/brand/kensis'), +(67996 , 'Koucla' , 'https://www.vinted.es/brand/koucla'), +(325707 , 'Kouela' , 'https://www.vinted.es/brand/kouela'), +(2725924 , 'Kim & Co.' , 'https://www.vinted.es/brand/kim-co'), +(1480126 , 'Kugo' , 'https://www.vinted.es/brand/kugo'), +(232844 , 'Kuxo' , 'https://www.vinted.es/brand/kuxo'), +(328476 , 'kurokawa' , 'https://www.vinted.es/brand/kurokawa'), +(849539 , 'Kuboraum' , 'https://www.vinted.es/brand/kuboraum'), +(640529 , 'Kubota' , 'https://www.vinted.es/brand/kubota'), +(679281 , 'Kuoma' , 'https://www.vinted.es/brand/kuoma'), +(1569918 , 'Kurgo' , 'https://www.vinted.es/brand/kurgo'), +(1304686 , 'Kutook' , 'https://www.vinted.es/brand/kutook'), +(4705 , 'Kukuxumusu' , 'https://www.vinted.es/brand/kukuxumusu'), +(286945 , 'Kiekeboe' , 'https://www.vinted.es/brand/kiekeboe'), +(289375 , 'KEW' , 'https://www.vinted.es/brand/kew'), +(348056 , 'Kew 159' , 'https://www.vinted.es/brand/kew-159'), +(148390 , 'Keawa' , 'https://www.vinted.es/brand/keawa'), +(1493239 , 'Karnevalswierts' , 'https://www.vinted.es/brand/karnevalswierts'), +(1436668 , 'Karneval' , 'https://www.vinted.es/brand/karneval'), +(6630148 , 'Nike x Kith' , 'https://www.vinted.es/brand/nike-x-kith'), +(6345821 , 'Versace X Kith' , 'https://www.vinted.es/brand/versace-x-kith'), +(6442417 , 'Vans x Kith' , 'https://www.vinted.es/brand/vans-x-kith'), +(37939 , 'Komodo' , 'https://www.vinted.es/brand/komodo'), +(1335002 , 'Katch Me' , 'https://www.vinted.es/brand/katch-me'), +(741222 , 'Katniss' , 'https://www.vinted.es/brand/katniss'), +(30111 , 'Karting' , 'https://www.vinted.es/brand/karting'), +(715039 , 'Kastinger' , 'https://www.vinted.es/brand/kastinger'), +(1493322 , 'Karin Glasmacher' , 'https://www.vinted.es/brand/karin-glasmacher'), +(959426 , 'Krüger Madl' , 'https://www.vinted.es/brand/kruger-madl'), +(330903 , 'KAVAT' , 'https://www.vinted.es/brand/kavat'), +(368163 , 'Kaatje' , 'https://www.vinted.es/brand/kaatje'), +(1005860 , 'Kavalkade' , 'https://www.vinted.es/brand/kavalkade'), +(265728 , 'kilpi' , 'https://www.vinted.es/brand/kilpi'), +(346775 , 'Kilian' , 'https://www.vinted.es/brand/kilian'), +(414555 , 'Kilimanjaro' , 'https://www.vinted.es/brand/kilimanjaro'), +(896469 , 'Kilian Kerner' , 'https://www.vinted.es/brand/kilian-kerner'), +(409156 , 'Krush' , 'https://www.vinted.es/brand/krush'), +(324841 , 'Krusell' , 'https://www.vinted.es/brand/krusell'), +(4495 , 'Kimchi & Blue' , 'https://www.vinted.es/brand/kimchi-blue'), +(497177 , 'Kirkland' , 'https://www.vinted.es/brand/kirkland'), +(7145333 , 'The North Face x Kaws' , 'https://www.vinted.es/brand/the-north-face-x-kaws'), +(6478327 , 'Nike x Sacai x Kaws' , 'https://www.vinted.es/brand/nike-x-sacai-x-kaws'), +(83036 , 'KAWA' , 'https://www.vinted.es/brand/kawa'), +(193210 , 'Kyra & Ko' , 'https://www.vinted.es/brand/kyra-ko'), +(253554 , 'K&L Ruppert' , 'https://www.vinted.es/brand/kl-ruppert'), +(13941 , 'k1x' , 'https://www.vinted.es/brand/k1x'), +(57512 , 'Karma Koma' , 'https://www.vinted.es/brand/karma-koma'), +(35847 , 'Keep' , 'https://www.vinted.es/brand/keep'), +(128510 , 'Keepsake' , 'https://www.vinted.es/brand/keepsake'), +(661054 , 'KEEPSAKE THE LABEL' , 'https://www.vinted.es/brand/keepsake-the-label'), +(620600 , 'Keeeper' , 'https://www.vinted.es/brand/keeeper'), +(731033 , 'Kepourel' , 'https://www.vinted.es/brand/kepourel'), +(765567 , 'KeeeArt' , 'https://www.vinted.es/brand/keeeart'), +(135492 , 'Kool' , 'https://www.vinted.es/brand/kool'), +(1493493 , 'Kools' , 'https://www.vinted.es/brand/kools'), +(1520669 , 'Koolaburra by UGG' , 'https://www.vinted.es/brand/koolaburra-by-ugg'), +(1493402 , 'kool Kat kustom' , 'https://www.vinted.es/brand/kool-kat-kustom'), +(1493340 , 'Kool Savas' , 'https://www.vinted.es/brand/kool-savas'), +(6033525 , 'The Kooples Sport' , 'https://www.vinted.es/brand/the-kooples-sport'), +(165836 , 'Keith Haring' , 'https://www.vinted.es/brand/keith-haring'), +(7108764 , 'Lacoste x Keith Haring' , 'https://www.vinted.es/brand/lacoste-x-keith-haring'), +(7489665 , 'Reebok X Keith Haring' , 'https://www.vinted.es/brand/reebok-x-keith-haring'), +(3224391 , 'Karko' , 'https://www.vinted.es/brand/karko'), +(1099203 , 'Karakorum' , 'https://www.vinted.es/brand/karakorum'), +(243782 , 'Karboon' , 'https://www.vinted.es/brand/karboon'), +(404145 , 'Karo' , 'https://www.vinted.es/brand/karo'), +(364788 , 'KARPOS' , 'https://www.vinted.es/brand/karpos'), +(409234 , 'Karol Basic' , 'https://www.vinted.es/brand/karol-basic'), +(473473 , 'Karoline' , 'https://www.vinted.es/brand/karoline'), +(259120 , 'Katia' , 'https://www.vinted.es/brand/katia'), +(330531 , 'KATIA G' , 'https://www.vinted.es/brand/katia-g'), +(3153727 , 'Katia Sanchez' , 'https://www.vinted.es/brand/katia-sanchez'), +(29237 , 'Katmai' , 'https://www.vinted.es/brand/katmai'), +(439553 , 'Katharine Hamnett' , 'https://www.vinted.es/brand/katharine-hamnett'), +(74970 , 'Kat Maconie' , 'https://www.vinted.es/brand/kat-maconie'), +(571425 , 'Kaia' , 'https://www.vinted.es/brand/kaia'), +(171830 , 'Kai-aakmann' , 'https://www.vinted.es/brand/kai-aakmann'), +(383323 , 'Ked' , 'https://www.vinted.es/brand/ked'), +(316646 , 'KÉDDO' , 'https://www.vinted.es/brand/keddo'), +(525163 , 'Kędziorek' , 'https://www.vinted.es/brand/kedziorek'), +(62652 , 'Kardashian Kollection' , 'https://www.vinted.es/brand/kardashian-kollection'), +(590997 , 'Kayou' , 'https://www.vinted.es/brand/kayou'), +(424196 , 'Kay Unger' , 'https://www.vinted.es/brand/kay-unger'), +(410132 , 'kyodan' , 'https://www.vinted.es/brand/kyodan'), +(750350 , 'Ketnet' , 'https://www.vinted.es/brand/ketnet'), +(946427 , 'Kent & Curwen' , 'https://www.vinted.es/brand/kent-curwen'), +(675389 , 'Kidooz' , 'https://www.vinted.es/brand/kidooz'), +(141044 , 'Kidrobot' , 'https://www.vinted.es/brand/kidrobot'), +(385529 , 'Kidoki' , 'https://www.vinted.es/brand/kidoki'), +(305294 , 'Kidorable' , 'https://www.vinted.es/brand/kidorable'), +(1074834 , 'KMDB' , 'https://www.vinted.es/brand/kmdb'), +(155958 , 'kmb' , 'https://www.vinted.es/brand/kmb'), +(393888 , 'KidKind' , 'https://www.vinted.es/brand/kidkind'), +(454713 , 'KIDS FASHION' , 'https://www.vinted.es/brand/kids-fashion'), +(183458 , 'Kat von D' , 'https://www.vinted.es/brand/kat-von-d'), +(656521 , 'Koelstra' , 'https://www.vinted.es/brand/koelstra'), +(619163 , 'Koel' , 'https://www.vinted.es/brand/koel'), +(1322776 , 'Koel4Kids' , 'https://www.vinted.es/brand/koel4kids'), +(944880 , 'Köln' , 'https://www.vinted.es/brand/koln'), +(343196 , 'Kellogg''s' , 'https://www.vinted.es/brand/kellogs'), +(421139 , 'kidsme' , 'https://www.vinted.es/brand/kidsme'), +(591355 , 'Kiss & Tell' , 'https://www.vinted.es/brand/kiss-tell'), +(3482604 , 'Kismet by Milka' , 'https://www.vinted.es/brand/kismet-by-milka'), +(7019379 , 'Kiss My Dress' , 'https://www.vinted.es/brand/kiss-my-dress'), +(1422814 , 'Kids by Voga Italia' , 'https://www.vinted.es/brand/kids-by-voga-italia'), +(817502 , 'Kotyl' , 'https://www.vinted.es/brand/kotyl'), +(1357713 , 'Kòty' , 'https://www.vinted.es/brand/koty'), +(113014 , 'Karen Scott' , 'https://www.vinted.es/brand/karen-scott'), +(288003 , 'Karen Style' , 'https://www.vinted.es/brand/karen-style'), +(370147 , 'Karen by Simonsen' , 'https://www.vinted.es/brand/karen-by-simonsen'), +(269594 , 'Karen' , 'https://www.vinted.es/brand/karen'), +(422976 , 'Karen Kevin' , 'https://www.vinted.es/brand/karen-kevin'), +(251450 , 'Karen Kane' , 'https://www.vinted.es/brand/karen-kane'), +(183670 , 'Karen Walker' , 'https://www.vinted.es/brand/karen-walker'), +(2912653 , 'Karen Wazen' , 'https://www.vinted.es/brand/karen-wazen'), +(2491242 , 'Karen Neuburger' , 'https://www.vinted.es/brand/karen-neuburger'), +(10 , 'Levi''s' , 'https://www.vinted.es/brand/levis'), +(5982593 , 'Levi''s Made & Crafted' , 'https://www.vinted.es/brand/levis-made-crafted'), +(6096742 , 'New Balance x Levi’s' , 'https://www.vinted.es/brand/new-balance-x-levis'), +(7063172 , 'Re/Done x Levi’s' , 'https://www.vinted.es/brand/redone-x-levis'), +(6377843 , 'Supreme x Levi''s' , 'https://www.vinted.es/brand/supreme-x-levis'), +(7136464 , 'Levi''s x Patta' , 'https://www.vinted.es/brand/levis-x-patta'), +(6378354 , 'Levi''s X Bape' , 'https://www.vinted.es/brand/levis-x-bape'), +(6413639 , 'Levi Strauss & Co.' , 'https://www.vinted.es/brand/levi-strauss-co'), +(6438538 , 'Signature by Levi Strauss & Co.' , 'https://www.vinted.es/brand/signature-by-levi-strauss-co'), +(226316 , 'Local' , 'https://www.vinted.es/brand/local'), +(87454 , 'Local Celebrity' , 'https://www.vinted.es/brand/local-celebrity'), +(286419 , 'Local Heroes' , 'https://www.vinted.es/brand/local-heroes'), +(1044865 , 'Local Authority' , 'https://www.vinted.es/brand/local-authority'), +(1185121 , 'Local Pattern' , 'https://www.vinted.es/brand/local-pattern'), +(45967 , 'LolaLiza' , 'https://www.vinted.es/brand/lolaliza'), +(313038 , 'Lola&Lisa' , 'https://www.vinted.es/brand/lolalisa'), +(20887 , 'Loca Sabiduría' , 'https://www.vinted.es/brand/loca-sabiduria'), +(968231 , 'Lolali' , 'https://www.vinted.es/brand/lolali'), +(136184 , 'Loyal Army' , 'https://www.vinted.es/brand/loyal-army'), +(187704 , 'Lupilu' , 'https://www.vinted.es/brand/lupilu'), +(304 , 'Lacoste' , 'https://www.vinted.es/brand/lacoste'), +(677891 , 'Lacoste Sport' , 'https://www.vinted.es/brand/lacoste-sport'), +(268734 , 'Lacoste LIVE' , 'https://www.vinted.es/brand/lacoste-live'), +(5988006 , 'Lacoste × Supreme' , 'https://www.vinted.es/brand/lacoste-x-supreme'), +(7278799 , 'Lacoste x Peanuts' , 'https://www.vinted.es/brand/lacoste-x-peanuts'), +(7133888 , 'Lacoste x Awake NY' , 'https://www.vinted.es/brand/lacoste-x-awake-ny'), +(205980 , 'La Poste' , 'https://www.vinted.es/brand/la-poste'), +(1129765 , 'La Conte' , 'https://www.vinted.es/brand/la-conte'), +(1242163 , 'La Costiera' , 'https://www.vinted.es/brand/la-costiera'), +(599 , 'Lefties' , 'https://www.vinted.es/brand/lefties'), +(59 , 'La Redoute' , 'https://www.vinted.es/brand/la-redoute'), +(279688 , 'La Redoute Kids' , 'https://www.vinted.es/brand/la-redoute-kids'), +(5773272 , 'La Redoute Baby' , 'https://www.vinted.es/brand/la-redoute-baby'), +(5754245 , 'La Redoute Teens' , 'https://www.vinted.es/brand/la-redoute-teens'), +(5754246 , 'La Redoute Mini' , 'https://www.vinted.es/brand/la-redoute-mini'), +(3438278 , 'La Redoute x Delphine Manivet' , 'https://www.vinted.es/brand/la-redoute-x-delphine-manivet'), +(2820685 , 'La Redoute x Balzac Paris' , 'https://www.vinted.es/brand/la-redoute-x-balzac-paris'), +(1901895 , 'Athé Vanessa Bruno x La Redoute' , 'https://www.vinted.es/brand/athe-vanessa-bruno-x-la-redoute'), +(2200583 , 'La Redoute x Cédric Charlier' , 'https://www.vinted.es/brand/la-redoute-x-cedric-charlier'), +(738740 , 'La Redoute x Koché' , 'https://www.vinted.es/brand/la-redoute-x-koche'), +(211 , 'La Halle' , 'https://www.vinted.es/brand/la-halle'), +(343480 , 'La Malle Aux Jouets' , 'https://www.vinted.es/brand/la-malle-aux-jouets'), +(356242 , 'La Galleria' , 'https://www.vinted.es/brand/la-galleria'), +(89162 , 'LEGO' , 'https://www.vinted.es/brand/lego'), +(3300333 , 'LEGO Friends' , 'https://www.vinted.es/brand/lego-friends'), +(328531 , 'LEGO Duplo' , 'https://www.vinted.es/brand/lego-duplo'), +(317260 , 'LEGO Ninjago' , 'https://www.vinted.es/brand/lego-ninjago'), +(407093 , 'LEGO Technic' , 'https://www.vinted.es/brand/lego-technic'), +(302430 , 'LEGO Star Wars' , 'https://www.vinted.es/brand/lego-star-wars'), +(7167237 , 'LEGO Creator' , 'https://www.vinted.es/brand/lego-creator'), +(174114 , 'Charles Le Golf' , 'https://www.vinted.es/brand/charles-le-golf'), +(204428 , 'LEGO Wear' , 'https://www.vinted.es/brand/lego-wear'), +(7182569 , 'LEGO Bionicle' , 'https://www.vinted.es/brand/lego-bionicle'), +(2165 , 'Liu Jo' , 'https://www.vinted.es/brand/liu-jo'), +(6479670 , 'Liu Jo Jeans' , 'https://www.vinted.es/brand/liu-jo-jeans'), +(5183895 , 'Liu Jo Kids' , 'https://www.vinted.es/brand/liu-jo-kids'), +(30377 , 'LIU Jeans' , 'https://www.vinted.es/brand/liu-jeans'), +(14811 , 'Lindex' , 'https://www.vinted.es/brand/lindex'), +(597762 , 'Linden' , 'https://www.vinted.es/brand/linden'), +(1890501 , 'Lindegruen' , 'https://www.vinted.es/brand/lindegruen'), +(174820 , 'La Compagnie des Petits' , 'https://www.vinted.es/brand/la-compagnie-des-petits'), +(495 , 'Lulu Castagnette' , 'https://www.vinted.es/brand/lulu-castagnette'), +(46 , 'Le Temps des Cerises' , 'https://www.vinted.es/brand/le-temps-des-cerises'), +(7797 , 'Les Temps des Cerises' , 'https://www.vinted.es/brand/les-temps-des-cerises'), +(1259 , 'Lipsy' , 'https://www.vinted.es/brand/lipsy'), +(89100 , 'Lipstick' , 'https://www.vinted.es/brand/lipstick'), +(15017 , 'Lip service' , 'https://www.vinted.es/brand/lip-service'), +(390151 , 'Lip Smacker' , 'https://www.vinted.es/brand/lip-smacker'), +(407 , 'Lee Cooper' , 'https://www.vinted.es/brand/lee-cooper'), +(63 , 'Lee' , 'https://www.vinted.es/brand/lee'), +(203268 , 'Leeyo Jeans' , 'https://www.vinted.es/brand/leeyo-jeans'), +(1217666 , 'Leen Bakker' , 'https://www.vinted.es/brand/leen-bakker'), +(384765 , 'Leeandme' , 'https://www.vinted.es/brand/leeandme'), +(62486 , 'Leenoy' , 'https://www.vinted.es/brand/leenoy'), +(243108 , 'Lee Stafford' , 'https://www.vinted.es/brand/lee-stafford'), +(4061425 , 'Lee X H&M' , 'https://www.vinted.es/brand/lee-x-hm'), +(311812 , 'Leeds' , 'https://www.vinted.es/brand/leeds'), +(2697985 , 'LEE MATHEWS' , 'https://www.vinted.es/brand/lee-mathews'), +(345 , 'Le Coq Sportif' , 'https://www.vinted.es/brand/le-coq-sportif'), +(417 , 'Louis Vuitton' , 'https://www.vinted.es/brand/louis-vuitton'), +(6017884 , 'Louis Vuitton × Takashi Murakami' , 'https://www.vinted.es/brand/louis-vuitton-x-takashi-murakami'), +(7448263 , 'Louis Vuitton x Supreme' , 'https://www.vinted.es/brand/louis-vuitton-x-supreme'), +(7176794 , 'Louis Vuitton x NBA' , 'https://www.vinted.es/brand/louis-vuitton-x-nba'), +(385 , 'Liberto' , 'https://www.vinted.es/brand/liberto'), +(20375 , 'liberty' , 'https://www.vinted.es/brand/liberty'), +(130548 , 'Liberty Island' , 'https://www.vinted.es/brand/liberty-island'), +(379652 , 'Libero Milano' , 'https://www.vinted.es/brand/libero-milano'), +(288664 , 'Libero' , 'https://www.vinted.es/brand/libero'), +(19761 , 'Libertie' , 'https://www.vinted.es/brand/libertie'), +(217950 , 'Libertine Libertine' , 'https://www.vinted.es/brand/libertine-libertine'), +(277080 , 'Liberté' , 'https://www.vinted.es/brand/liberte'), +(852839 , 'Liberty Love' , 'https://www.vinted.es/brand/liberty-love'), +(3781154 , 'Libero Grassetti' , 'https://www.vinted.es/brand/libero-grassetti'), +(112768 , 'Lidl' , 'https://www.vinted.es/brand/lidl'), +(30393 , 'Lili Gaufrette' , 'https://www.vinted.es/brand/lili-gaufrette'), +(180816 , 'Lili Marelle' , 'https://www.vinted.es/brand/lili-marelle'), +(248958 , 'Lilliputiens' , 'https://www.vinted.es/brand/lilliputiens'), +(178170 , 'Lili & Lala' , 'https://www.vinted.es/brand/lili-lala'), +(213998 , 'Lilie Rose' , 'https://www.vinted.es/brand/lilie-rose'), +(3335 , 'Lily shoes' , 'https://www.vinted.es/brand/lily-shoes'), +(516670 , 'Lily-Balou' , 'https://www.vinted.es/brand/lily-balou'), +(24353 , 'Lily Rose' , 'https://www.vinted.es/brand/lily-rose'), +(59426 , 'Lili' , 'https://www.vinted.es/brand/lili'), +(320693 , 'Lasocki' , 'https://www.vinted.es/brand/lasocki'), +(5842220 , 'Lasocki Kids' , 'https://www.vinted.es/brand/lasocki-kids'), +(324018 , 'Liegelind' , 'https://www.vinted.es/brand/liegelind'), +(388640 , 'L.O.L. Surprise' , 'https://www.vinted.es/brand/lol-surprise'), +(282158 , 'Loavies' , 'https://www.vinted.es/brand/loavies'), +(7531 , 'LOVIE' , 'https://www.vinted.es/brand/lovie'), +(4643873 , 'Littlest Pet Shop' , 'https://www.vinted.es/brand/littlest-pet-shop'), +(52587 , 'LC Waikiki' , 'https://www.vinted.es/brand/lc-waikiki'), +(736562 , 'LC Wakiki' , 'https://www.vinted.es/brand/lc-wakiki'), +(15511 , 'L.O.G.G.' , 'https://www.vinted.es/brand/logg'), +(556 , 'Little Marcel' , 'https://www.vinted.es/brand/little-marcel'), +(370 , 'Longchamp' , 'https://www.vinted.es/brand/longchamp'), +(84226 , 'Lana' , 'https://www.vinted.es/brand/lana'), +(569718 , 'Lanacaprina' , 'https://www.vinted.es/brand/lanacaprina'), +(100644 , 'Lanaform' , 'https://www.vinted.es/brand/lanaform'), +(170214 , 'La Naturelle' , 'https://www.vinted.es/brand/la-naturelle'), +(532788 , 'Lanard' , 'https://www.vinted.es/brand/lanard'), +(960939 , 'lana grossa' , 'https://www.vinted.es/brand/lana-grossa'), +(3809630 , 'Lana y Punto' , 'https://www.vinted.es/brand/lana-y-punto'), +(1493580 , 'LanaCare' , 'https://www.vinted.es/brand/lanacare'), +(17855 , 'LH' , 'https://www.vinted.es/brand/lh'), +(312260 , 'Little Kids' , 'https://www.vinted.es/brand/little-kids'), +(114544 , 'Little Kiss' , 'https://www.vinted.es/brand/little-kiss'), +(66644 , 'Lyle & Scott' , 'https://www.vinted.es/brand/lyle-scott'), +(5493 , 'La Fee Maraboutee' , 'https://www.vinted.es/brand/la-fee-maraboutee'), +(161950 , 'LH by La Halle' , 'https://www.vinted.es/brand/lh-by-la-halle'), +(188408 , 'L''Homme Moderne' , 'https://www.vinted.es/brand/lhomme-moderne'), +(141670 , 'Lhotse' , 'https://www.vinted.es/brand/lhotse'), +(528442 , 'LHD' , 'https://www.vinted.es/brand/lhd'), +(1091 , 'La Mode Est À Vous' , 'https://www.vinted.es/brand/la-mode-est-a-vous'), +(19183 , 'Lisa Rose' , 'https://www.vinted.es/brand/lisa-rose'), +(5129 , 'Lila Rose' , 'https://www.vinted.es/brand/lila-rose'), +(13727 , 'Lotto' , 'https://www.vinted.es/brand/lotto'), +(156490 , 'Lottusse' , 'https://www.vinted.es/brand/lottusse'), +(394860 , 'Lottie' , 'https://www.vinted.es/brand/lottie'), +(1354362 , 'L.O.E.S' , 'https://www.vinted.es/brand/loes'), +(550674 , 'Lotos' , 'https://www.vinted.es/brand/lotos'), +(1280081 , 'LOTT Gioielli' , 'https://www.vinted.es/brand/lott-gioielli'), +(243988 , 'Lotta from STOCKHOLM' , 'https://www.vinted.es/brand/lotta-from-stockholm'), +(6977497 , 'Lotties' , 'https://www.vinted.es/brand/lotties'), +(6892579 , 'adidas x Lotta Volkova' , 'https://www.vinted.es/brand/adidas-x-lotta-volkova'), +(6992016 , 'Lottie & Lysh' , 'https://www.vinted.es/brand/lottie-lysh'), +(21887 , 'Looney Tunes' , 'https://www.vinted.es/brand/looney-tunes'), +(805 , 'Les Petites Bombes' , 'https://www.vinted.es/brand/les-petites-bombes'), +(151 , 'La City' , 'https://www.vinted.es/brand/la-city'), +(208832 , 'Losan' , 'https://www.vinted.es/brand/losan'), +(507423 , 'Los Angeles Lakers' , 'https://www.vinted.es/brand/los-angeles-lakers'), +(61404 , 'Los Angeles' , 'https://www.vinted.es/brand/los-angeles'), +(464287 , 'LOS ANGELES ATELIER' , 'https://www.vinted.es/brand/los-angeles-atelier'), +(967066 , 'Los Angeles Apparel' , 'https://www.vinted.es/brand/los-angeles-apparel'), +(103386 , 'Logan' , 'https://www.vinted.es/brand/logan'), +(13081 , 'Loana' , 'https://www.vinted.es/brand/loana'), +(209832 , 'Loslandifen' , 'https://www.vinted.es/brand/loslandifen'), +(470271 , 'Loan Bor' , 'https://www.vinted.es/brand/loan-bor'), +(347061 , 'LOUANE' , 'https://www.vinted.es/brand/louane'), +(5798390 , 'L''Oréal Professionnel' , 'https://www.vinted.es/brand/loreal-professionnel'), +(11731 , 'Lancaster' , 'https://www.vinted.es/brand/lancaster'), +(8177 , 'Laura Ashley' , 'https://www.vinted.es/brand/laura-ashley'), +(2033 , 'Lancôme' , 'https://www.vinted.es/brand/lancome'), +(2281 , 'LTB' , 'https://www.vinted.es/brand/ltb'), +(270314 , 'LTD' , 'https://www.vinted.es/brand/ltd'), +(273711 , 'Love Too True' , 'https://www.vinted.es/brand/love-too-true'), +(4889386 , 'Linus Tech Tips' , 'https://www.vinted.es/brand/linus-tech-tips'), +(3457386 , 'LTH JKT' , 'https://www.vinted.es/brand/lth-jkt'), +(179006 , 'Livergy' , 'https://www.vinted.es/brand/livergy'), +(3042420 , 'Lpb' , 'https://www.vinted.es/brand/lpb'), +(359557 , 'Lpb Woman' , 'https://www.vinted.es/brand/lpb-woman'), +(49497 , 'LPC GIRLS' , 'https://www.vinted.es/brand/lpc-girls'), +(16565 , 'LPC' , 'https://www.vinted.es/brand/lpc'), +(123624 , 'LP' , 'https://www.vinted.es/brand/lp'), +(143836 , 'LPD' , 'https://www.vinted.es/brand/lpd'), +(198716 , 'LPG' , 'https://www.vinted.es/brand/lpg'), +(2193 , 'Lonsdale' , 'https://www.vinted.es/brand/lonsdale'), +(171954 , 'Lanidor' , 'https://www.vinted.es/brand/lanidor'), +(3255 , 'Little Mistress' , 'https://www.vinted.es/brand/little-mistress'), +(5952120 , 'Little Mistress Tall' , 'https://www.vinted.es/brand/little-mistress-tall'), +(1493431 , 'Little Misstress' , 'https://www.vinted.es/brand/little-misstress'), +(30929 , 'Love Moschino' , 'https://www.vinted.es/brand/love-moschino'), +(2827 , 'Lancel' , 'https://www.vinted.es/brand/lancel'), +(213052 , 'Lancetti' , 'https://www.vinted.es/brand/lancetti'), +(2665536 , 'Lancerto' , 'https://www.vinted.es/brand/lancerto'), +(2489 , 'Longboard' , 'https://www.vinted.es/brand/longboard'), +(198238 , 'Lululemon' , 'https://www.vinted.es/brand/lululemon'), +(12914593 , 'Lululemon Athletica' , 'https://www.vinted.es/brand/lululemon-athletica'), +(14229 , 'Lavorazione Artigiana' , 'https://www.vinted.es/brand/lavorazione-artigiana'), +(199 , 'Les Tropeziennes' , 'https://www.vinted.es/brand/les-tropeziennes'), +(2078365 , 'Les Trapeziennes' , 'https://www.vinted.es/brand/les-trapeziennes'), +(12981 , 'Liebeskind' , 'https://www.vinted.es/brand/liebeskind'), +(2667 , 'Lola' , 'https://www.vinted.es/brand/lola'), +(4869 , 'Lola Espeleta' , 'https://www.vinted.es/brand/lola-espeleta'), +(376665 , 'Lola Palacios' , 'https://www.vinted.es/brand/lola-palacios'), +(1983 , 'Lola Cruz' , 'https://www.vinted.es/brand/lola-cruz'), +(82692 , 'Lola Paris' , 'https://www.vinted.es/brand/lola-paris'), +(283892 , 'Lola Casademunt' , 'https://www.vinted.es/brand/lola-casademunt'), +(19015 , 'lolablue' , 'https://www.vinted.es/brand/lolablue'), +(8231 , 'Lola Jones' , 'https://www.vinted.es/brand/lola-jones'), +(2323 , 'les petites' , 'https://www.vinted.es/brand/les-petites'), +(1037 , 'Les petites parisiennes' , 'https://www.vinted.es/brand/les-petites-parisiennes'), +(5824745 , 'les petites Chéries' , 'https://www.vinted.es/brand/les-petites-cheries'), +(5824080 , 'Les Petites Fleurs' , 'https://www.vinted.es/brand/les-petites-fleurs'), +(5825194 , 'Les Petites Choses' , 'https://www.vinted.es/brand/les-petites-choses'), +(140088 , 'Les petites jupes de Prune' , 'https://www.vinted.es/brand/les-petites-jupes-de-prune'), +(238948 , 'Les Petits Coeurs à La Mer' , 'https://www.vinted.es/brand/les-petits-coeurs-a-la-mer'), +(5975538 , 'Les Petits Cailloux' , 'https://www.vinted.es/brand/les-petits-cailloux'), +(13049 , 'Leclerc' , 'https://www.vinted.es/brand/leclerc'), +(10178427 , 'Leclerc Baby' , 'https://www.vinted.es/brand/leclerc-baby'), +(196978 , 'Lecler' , 'https://www.vinted.es/brand/lecler'), +(456756 , 'Little Dutch' , 'https://www.vinted.es/brand/little-dutch'), +(197 , 'Lollipops' , 'https://www.vinted.es/brand/lollipops'), +(380 , 'Lollipop' , 'https://www.vinted.es/brand/lollipop'), +(813 , 'Ligne à Suivre' , 'https://www.vinted.es/brand/ligne-a-suivre'), +(13329 , 'Lotus' , 'https://www.vinted.es/brand/lotus'), +(50251 , 'Lorus' , 'https://www.vinted.es/brand/lorus'), +(4001310 , 'Lousy Livin Underwear' , 'https://www.vinted.es/brand/lousy-livin-underwear'), +(3648689 , 'LOMUS' , 'https://www.vinted.es/brand/lomus'), +(97 , 'La Martina' , 'https://www.vinted.es/brand/la-martina'), +(1015908 , 'La Martinica by Maria Sobrino' , 'https://www.vinted.es/brand/la-martinica-by-maria-sobrino'), +(93590 , 'Lovely Skull' , 'https://www.vinted.es/brand/lovely-skull'), +(10073 , 'Love' , 'https://www.vinted.es/brand/love'), +(94658 , 'Love to Lounge' , 'https://www.vinted.es/brand/love-to-lounge'), +(34491 , 'Lovely' , 'https://www.vinted.es/brand/lovely'), +(325635 , 'Love2Wait' , 'https://www.vinted.es/brand/love2wait'), +(280514 , 'Love Stories' , 'https://www.vinted.es/brand/love-stories'), +(825193 , 'Love Radius' , 'https://www.vinted.es/brand/love-radius'), +(62858 , 'Love Look' , 'https://www.vinted.es/brand/love-look'), +(172854 , 'Love Therapy' , 'https://www.vinted.es/brand/love-therapy'), +(2389 , 'Lois' , 'https://www.vinted.es/brand/lois'), +(7693 , 'Lois Jeans' , 'https://www.vinted.es/brand/lois-jeans'), +(294609 , 'L''Oiseau Bateau' , 'https://www.vinted.es/brand/loiseau-bateau'), +(30625 , 'Louis London' , 'https://www.vinted.es/brand/louis-london'), +(2833428 , 'Lois Hill' , 'https://www.vinted.es/brand/lois-hill'), +(103352 , 'Luisa Spagnoli' , 'https://www.vinted.es/brand/luisa-spagnoli'), +(98110 , 'Lands'' End' , 'https://www.vinted.es/brand/lands-end'), +(40897 , 'Laura Biagiotti' , 'https://www.vinted.es/brand/laura-biagiotti'), +(4644933 , 'Lili & Lola' , 'https://www.vinted.es/brand/lili-lola'), +(1209 , 'LK Bennett' , 'https://www.vinted.es/brand/lk-bennett'), +(321712 , 'Lumina' , 'https://www.vinted.es/brand/lumina'), +(483378 , 'Luminarc' , 'https://www.vinted.es/brand/luminarc'), +(49241 , 'Lumineux' , 'https://www.vinted.es/brand/lumineux'), +(295661 , 'Luminou' , 'https://www.vinted.es/brand/luminou'), +(44489 , 'Lumineux Paris' , 'https://www.vinted.es/brand/lumineux-paris'), +(518147 , 'Luminox' , 'https://www.vinted.es/brand/luminox'), +(444984 , 'Liewood' , 'https://www.vinted.es/brand/liewood'), +(168510 , 'Lascana' , 'https://www.vinted.es/brand/lascana'), +(75062 , 'La Canadienne' , 'https://www.vinted.es/brand/la-canadienne'), +(1650152 , 'Legno' , 'https://www.vinted.es/brand/legno'), +(441284 , 'Legnoland' , 'https://www.vinted.es/brand/legnoland'), +(225016 , 'Le Group' , 'https://www.vinted.es/brand/le-group'), +(198444 , 'LAINE' , 'https://www.vinted.es/brand/laine'), +(4945221 , 'Lainee' , 'https://www.vinted.es/brand/lainee'), +(3816565 , 'Laines London' , 'https://www.vinted.es/brand/laines-london'), +(334585 , 'Lait et Miel' , 'https://www.vinted.es/brand/lait-et-miel'), +(355782 , 'Lanerossi' , 'https://www.vinted.es/brand/lanerossi'), +(541112 , 'Laneus' , 'https://www.vinted.es/brand/laneus'), +(293132 , 'Laneige' , 'https://www.vinted.es/brand/laneige'), +(315043 , 'Lane Bryant' , 'https://www.vinted.es/brand/lane-bryant'), +(704968 , 'Lanieri' , 'https://www.vinted.es/brand/lanieri'), +(712916 , 'Laimer' , 'https://www.vinted.es/brand/laimer'), +(25235 , 'La Boutique' , 'https://www.vinted.es/brand/la-boutique'), +(197448 , 'La Boutique du Coiffeur' , 'https://www.vinted.es/brand/la-boutique-du-coiffeur'), +(287219 , 'Lamaze' , 'https://www.vinted.es/brand/lamaze'), +(180882 , 'Lamazuna' , 'https://www.vinted.es/brand/lamazuna'), +(2344688 , 'LAmade' , 'https://www.vinted.es/brand/lamade'), +(2508053 , 'Lamarel' , 'https://www.vinted.es/brand/lamarel'), +(1042718 , 'Lucy & Yak' , 'https://www.vinted.es/brand/lucy-yak'), +(287195 , 'Lansay' , 'https://www.vinted.es/brand/lansay'), +(274599 , 'Laura Torelli' , 'https://www.vinted.es/brand/laura-torelli'), +(2742045 , 'Laura Torelli COLLECTION' , 'https://www.vinted.es/brand/laura-torelli-collection'), +(2189 , 'Le Phare De La Baleine' , 'https://www.vinted.es/brand/le-phare-de-la-baleine'), +(345130 , 'Lief!' , 'https://www.vinted.es/brand/lief'), +(3007248 , 'Liefiess' , 'https://www.vinted.es/brand/liefiess'), +(311 , 'Laura Clément' , 'https://www.vinted.es/brand/laura-clement'), +(5755547 , 'LEGO City' , 'https://www.vinted.es/brand/lego-city'), +(2897633 , 'Little Nutmeg' , 'https://www.vinted.es/brand/little-nutmeg'), +(5257 , 'Lanvin' , 'https://www.vinted.es/brand/lanvin'), +(1784466 , 'Lanvin for H&M' , 'https://www.vinted.es/brand/lanvin-for-hm'), +(5878263 , 'H&M x Lanvin' , 'https://www.vinted.es/brand/hm-x-lanvin'), +(2488594 , 'Lanvin x Acne' , 'https://www.vinted.es/brand/lanvin-x-acne'), +(1436256 , 'LANVINO' , 'https://www.vinted.es/brand/lanvino'), +(254570 , 'Lansinoh' , 'https://www.vinted.es/brand/lansinoh'), +(60430 , 'LANTIN' , 'https://www.vinted.es/brand/lantin'), +(631119 , 'LAVINIA FONTANA' , 'https://www.vinted.es/brand/lavinia-fontana'), +(86418 , 'La nina' , 'https://www.vinted.es/brand/la-nina'), +(371607 , 'Landini' , 'https://www.vinted.es/brand/landini'), +(949840 , 'Lincoln & Sharks' , 'https://www.vinted.es/brand/lincoln-sharks'), +(35959 , 'LFT' , 'https://www.vinted.es/brand/lft'), +(370023 , 'LFTMAN' , 'https://www.vinted.es/brand/lftman'), +(41197 , 'LFDMS' , 'https://www.vinted.es/brand/lfdms'), +(303408 , 'LF' , 'https://www.vinted.es/brand/lf'), +(521687 , 'LFDY' , 'https://www.vinted.es/brand/lfdy'), +(1734178 , 'LF Markey' , 'https://www.vinted.es/brand/lf-markey'), +(1123766 , 'Laurella' , 'https://www.vinted.es/brand/laurella'), +(651853 , 'Laurelle' , 'https://www.vinted.es/brand/laurelle'), +(685688 , 'Lofty Manner' , 'https://www.vinted.es/brand/lofty-manner'), +(13641 , 'LOFT' , 'https://www.vinted.es/brand/loft'), +(1450836 , 'Loft1' , 'https://www.vinted.es/brand/loft1'), +(249008 , 'Loft37' , 'https://www.vinted.es/brand/loft37'), +(234658 , 'Lost Ink' , 'https://www.vinted.es/brand/lost-ink'), +(283831 , 'LoFff' , 'https://www.vinted.es/brand/lofff'), +(996369 , 'Lost Minds' , 'https://www.vinted.es/brand/lost-minds'), +(21013 , 'La Perla' , 'https://www.vinted.es/brand/la-perla'), +(456822 , 'La Perle Rouge' , 'https://www.vinted.es/brand/la-perle-rouge'), +(21889 , 'Laura Scott' , 'https://www.vinted.es/brand/laura-scott'), +(523886 , 'Like FLO' , 'https://www.vinted.es/brand/like-flo'), +(469263 , 'Lily & Dan' , 'https://www.vinted.es/brand/lily-dan'), +(56324 , 'Luizacco' , 'https://www.vinted.es/brand/luizacco'), +(53201 , 'Luisa Cerano' , 'https://www.vinted.es/brand/luisa-cerano'), +(50345 , 'LOU' , 'https://www.vinted.es/brand/lou'), +(55589 , 'Louche' , 'https://www.vinted.es/brand/louche'), +(198300 , 'Louis Louise' , 'https://www.vinted.es/brand/louis-louise'), +(26691 , 'Louis Féraud' , 'https://www.vinted.es/brand/louis-feraud'), +(109540 , 'La petite étoile' , 'https://www.vinted.es/brand/la-petite-etoile'), +(89232 , 'La p''tite étoile' , 'https://www.vinted.es/brand/la-ptite-etoile'), +(287507 , 'Larousse' , 'https://www.vinted.es/brand/larousse'), +(359177 , 'Liverpool' , 'https://www.vinted.es/brand/liverpool'), +(484362 , 'Liverpool Football Club' , 'https://www.vinted.es/brand/liverpool-football-club'), +(277901 , 'Lady Blush' , 'https://www.vinted.es/brand/lady-blush'), +(430791 , 'Lauren Ralph Lauren' , 'https://www.vinted.es/brand/lauren-ralph-lauren'), +(93620 , 'Loungefly' , 'https://www.vinted.es/brand/loungefly'), +(154538 , 'Linea' , 'https://www.vinted.es/brand/linea'), +(192878 , 'Linea Raffaelli' , 'https://www.vinted.es/brand/linea-raffaelli'), +(785160 , 'Lineaemme' , 'https://www.vinted.es/brand/lineaemme'), +(446117 , 'Linea Loresi' , 'https://www.vinted.es/brand/linea-loresi'), +(148686 , 'Linea Tesini' , 'https://www.vinted.es/brand/linea-tesini'), +(1014998 , 'Linea Zèta' , 'https://www.vinted.es/brand/linea-zeta'), +(1822913 , 'Linea Oro' , 'https://www.vinted.es/brand/linea-oro'), +(393791 , 'LINEA CINQUE' , 'https://www.vinted.es/brand/linea-cinque'), +(498909 , 'Linea Primero' , 'https://www.vinted.es/brand/linea-primero'), +(2996204 , 'Linea Fashion' , 'https://www.vinted.es/brand/linea-fashion'), +(147184 , 'La Roche Posay' , 'https://www.vinted.es/brand/la-roche-posay'), +(120514 , 'Laulia' , 'https://www.vinted.es/brand/laulia'), +(378703 , 'Lauria Garrelli' , 'https://www.vinted.es/brand/lauria-garrelli'), +(27227 , 'Lindy Bop' , 'https://www.vinted.es/brand/lindy-bop'), +(9249 , 'Lovely Sud' , 'https://www.vinted.es/brand/lovely-sud'), +(103572 , 'Lovely Girl' , 'https://www.vinted.es/brand/lovely-girl'), +(345469 , 'Lovely Bird' , 'https://www.vinted.es/brand/lovely-bird'), +(63558 , 'Lovely Day' , 'https://www.vinted.es/brand/lovely-day'), +(743654 , 'Lovely Casa' , 'https://www.vinted.es/brand/lovely-casa'), +(252054 , 'Lovely Sally' , 'https://www.vinted.es/brand/lovely-sally'), +(5028746 , 'Lovely Breeze' , 'https://www.vinted.es/brand/lovely-breeze'), +(1517058 , 'Lovely Disgraze' , 'https://www.vinted.es/brand/lovely-disgraze'), +(84746 , 'Lumberjack' , 'https://www.vinted.es/brand/lumberjack'), +(24209 , 'Loewe' , 'https://www.vinted.es/brand/loewe'), +(3366208 , 'Loewe Verlag' , 'https://www.vinted.es/brand/loewe-verlag'), +(5748128 , 'Loewenstein' , 'https://www.vinted.es/brand/loewenstein'), +(296806 , 'Lowepro' , 'https://www.vinted.es/brand/lowepro'), +(254204 , 'Lowe Alpine' , 'https://www.vinted.es/brand/lowe-alpine'), +(510211 , 'Lower East Side' , 'https://www.vinted.es/brand/lower-east-side'), +(723088 , 'loevenich' , 'https://www.vinted.es/brand/loevenich'), +(7674199 , 'Love Welcomes' , 'https://www.vinted.es/brand/love-welcomes'), +(5251526 , 'LO WEAR & CO' , 'https://www.vinted.es/brand/lo-wear-co'), +(3352609 , 'Löwenherz' , 'https://www.vinted.es/brand/lowenherz'), +(278709 , 'Lurchi' , 'https://www.vinted.es/brand/lurchi'), +(64206 , 'Lucchini' , 'https://www.vinted.es/brand/lucchini'), +(274656 , 'luichiny' , 'https://www.vinted.es/brand/luichiny'), +(317443 , 'La Fabrique Des Garçons' , 'https://www.vinted.es/brand/la-fabrique-des-garcons'), +(22207 , 'Lemon Beret' , 'https://www.vinted.es/brand/lemon-beret'), +(287369 , 'LeapFrog' , 'https://www.vinted.es/brand/leapfrog'), +(292647 , 'Lisciani' , 'https://www.vinted.es/brand/lisciani'), +(19829 , 'LOOK' , 'https://www.vinted.es/brand/look'), +(79802 , 'LOOKAT' , 'https://www.vinted.es/brand/lookat'), +(338496 , 'Looky' , 'https://www.vinted.es/brand/looky'), +(1602523 , 'Look After You' , 'https://www.vinted.es/brand/look-after-you'), +(6073835 , 'Lookbook Store' , 'https://www.vinted.es/brand/lookbook-store'), +(722472 , 'Look 54' , 'https://www.vinted.es/brand/look-54'), +(976582 , 'LOOK by BIPA' , 'https://www.vinted.es/brand/look-by-bipa'), +(727749 , 'Look of the Day' , 'https://www.vinted.es/brand/look-of-the-day'), +(3474679 , 'Looks by Luks' , 'https://www.vinted.es/brand/looks-by-luks'), +(315301 , 'Le Chic' , 'https://www.vinted.es/brand/le-chic'), +(467885 , 'Le Chicche' , 'https://www.vinted.es/brand/le-chicche'), +(1191866 , 'Le chic WM' , 'https://www.vinted.es/brand/le-chic-wm'), +(2852683 , 'Le Chic Radical' , 'https://www.vinted.es/brand/le-chic-radical'), +(2013 , 'Lavand' , 'https://www.vinted.es/brand/lavand'), +(145284 , 'LAB' , 'https://www.vinted.es/brand/lab'), +(245650 , 'La bande à Nana' , 'https://www.vinted.es/brand/la-bande-a-nana'), +(1794230 , 'Lamandinoise' , 'https://www.vinted.es/brand/lamandinoise'), +(253516 , 'Lavender' , 'https://www.vinted.es/brand/lavender'), +(524644 , 'La Bande a J.J.C.' , 'https://www.vinted.es/brand/la-bande-a-jjc'), +(928418 , 'Lavard' , 'https://www.vinted.es/brand/lavard'), +(751086 , 'La bande à Nanas' , 'https://www.vinted.es/brand/la-bande-a-nanas'), +(3996025 , 'Lavender Violets' , 'https://www.vinted.es/brand/lavender-violets'), +(1525958 , 'LA&B&LA' , 'https://www.vinted.es/brand/labla'), +(243290 , 'Ladybird' , 'https://www.vinted.es/brand/ladybird'), +(224522 , 'LEGEA' , 'https://www.vinted.es/brand/legea'), +(368800 , 'LC Kids' , 'https://www.vinted.es/brand/lc-kids'), +(60634 , 'Legend' , 'https://www.vinted.es/brand/legend'), +(150844 , 'Legami' , 'https://www.vinted.es/brand/legami'), +(265642 , 'Legender''s' , 'https://www.vinted.es/brand/legenders'), +(354041 , 'Legends' , 'https://www.vinted.es/brand/legends'), +(80794 , 'LeGer' , 'https://www.vinted.es/brand/leger'), +(3159 , 'Leg Avenue' , 'https://www.vinted.es/brand/leg-avenue'), +(69664 , 'Legatte' , 'https://www.vinted.es/brand/legatte'), +(40169 , 'Lolita' , 'https://www.vinted.es/brand/lolita'), +(4283 , 'Lolita Lempicka' , 'https://www.vinted.es/brand/lolita-lempicka'), +(640939 , 'Lolitas & L' , 'https://www.vinted.es/brand/lolitas-l'), +(1107 , 'Lolita Angels' , 'https://www.vinted.es/brand/lolita-angels'), +(412403 , 'Lolita Blu' , 'https://www.vinted.es/brand/lolita-blu'), +(341090 , 'LOLITAS & LOLOS' , 'https://www.vinted.es/brand/lolitas-lolos'), +(178100 , 'Lolitas' , 'https://www.vinted.es/brand/lolitas'), +(534492 , 'Lolittos' , 'https://www.vinted.es/brand/lolittos'), +(486016 , 'Lokita' , 'https://www.vinted.es/brand/lokita'), +(1076261 , 'Loleta' , 'https://www.vinted.es/brand/loleta'), +(15713 , 'La Strada' , 'https://www.vinted.es/brand/la-strada'), +(179084 , 'Les bébés sont comme ça !' , 'https://www.vinted.es/brand/les-bebes-sont-comme-ca'), +(8377 , 'Ligne Maternité' , 'https://www.vinted.es/brand/ligne-maternite'), +(1329084 , 'ligne maernité' , 'https://www.vinted.es/brand/ligne-maernite'), +(186908 , 'Limited Edition' , 'https://www.vinted.es/brand/limited-edition'), +(4435 , 'Lafuma' , 'https://www.vinted.es/brand/lafuma'), +(1493526 , 'Lauma' , 'https://www.vinted.es/brand/lauma'), +(372024 , 'Lounge' , 'https://www.vinted.es/brand/lounge'), +(383151 , 'Lounge Underwear' , 'https://www.vinted.es/brand/lounge-underwear'), +(528797 , 'Loungeable' , 'https://www.vinted.es/brand/loungeable'), +(2641003 , 'Lounge Nine' , 'https://www.vinted.es/brand/lounge-nine'), +(31449 , 'Lauren Vidal' , 'https://www.vinted.es/brand/lauren-vidal'), +(177618 , 'Lelli Kelly' , 'https://www.vinted.es/brand/lelli-kelly'), +(103010 , 'Lavish Alice' , 'https://www.vinted.es/brand/lavish-alice'), +(50723 , 'L.A. Gear' , 'https://www.vinted.es/brand/la-gear'), +(124352 , 'LA Hearts' , 'https://www.vinted.es/brand/la-hearts'), +(140272 , 'Le Pandorine' , 'https://www.vinted.es/brand/le-pandorine'), +(286421 , 'Lcdp' , 'https://www.vinted.es/brand/lcdp'), +(268111 , 'LCDN' , 'https://www.vinted.es/brand/lcdn'), +(549046 , 'LCP KIds' , 'https://www.vinted.es/brand/lcp-kids'), +(148254 , 'Lost in Paradise' , 'https://www.vinted.es/brand/lost-in-paradise'), +(4535 , 'La Fiancée du Mekong' , 'https://www.vinted.es/brand/la-fiancee-du-mekong'), +(305685 , 'LITTLE MISS CAPTAIN' , 'https://www.vinted.es/brand/little-miss-captain'), +(2907 , 'La Bottine Souriante' , 'https://www.vinted.es/brand/la-bottine-souriante'), +(229154 , 'Lodger' , 'https://www.vinted.es/brand/lodger'), +(53499 , 'L''Occitane' , 'https://www.vinted.es/brand/loccitane'), +(14987 , 'Lodi' , 'https://www.vinted.es/brand/lodi'), +(179376 , 'Loding' , 'https://www.vinted.es/brand/loding'), +(693645 , 'Lodis' , 'https://www.vinted.es/brand/lodis'), +(14559 , 'L''olive verte' , 'https://www.vinted.es/brand/lolive-verte'), +(73724 , 'Lovisa' , 'https://www.vinted.es/brand/lovisa'), +(226034 , 'Lion of PORCHES' , 'https://www.vinted.es/brand/lion-of-porches'), +(11967 , 'Le Tanneur' , 'https://www.vinted.es/brand/le-tanneur'), +(62060 , 'Les Copains' , 'https://www.vinted.es/brand/les-copains'), +(31439 , 'Laura Jo' , 'https://www.vinted.es/brand/laura-jo'), +(48733 , 'Laura Mode' , 'https://www.vinted.es/brand/laura-mode'), +(803590 , 'LAURA JIMENEZ' , 'https://www.vinted.es/brand/laura-jimenez'), +(301419 , 'Laura Jane' , 'https://www.vinted.es/brand/laura-jane'), +(1544765 , 'Laura Lombardi' , 'https://www.vinted.es/brand/laura-lombardi'), +(181 , 'Liz Claiborne' , 'https://www.vinted.es/brand/liz-claiborne'), +(345520 , 'Leggings' , 'https://www.vinted.es/brand/leggings'), +(200036 , 'Little Bird' , 'https://www.vinted.es/brand/little-bird'), +(119 , 'La Petite Française' , 'https://www.vinted.es/brand/la-petite-francaise'), +(111416 , 'Laona' , 'https://www.vinted.es/brand/laona'), +(285801 , 'LABONAL' , 'https://www.vinted.es/brand/labonal'), +(15039 , 'Lafayette' , 'https://www.vinted.es/brand/lafayette'), +(8227 , 'Lulu Love' , 'https://www.vinted.es/brand/lulu-love'), +(333268 , 'Lino' , 'https://www.vinted.es/brand/lino'), +(215808 , 'Lino Factory' , 'https://www.vinted.es/brand/lino-factory'), +(1493382 , 'Linola' , 'https://www.vinted.es/brand/linola'), +(9782983 , 'Lino pieva' , 'https://www.vinted.es/brand/lino-pieva'), +(44127 , 'Linvosges' , 'https://www.vinted.es/brand/linvosges'), +(155136 , 'Li-Ning' , 'https://www.vinted.es/brand/li-ning'), +(329936 , 'Loud + Proud' , 'https://www.vinted.es/brand/loud-proud'), +(385249 , 'little cigogne' , 'https://www.vinted.es/brand/little-cigogne'), +(44263 , 'Lerros' , 'https://www.vinted.es/brand/lerros'), +(2310410 , 'Lil'' Atelier' , 'https://www.vinted.es/brand/lil-atelier'), +(1683 , 'Lauréana' , 'https://www.vinted.es/brand/laureana'), +(329834 , 'Lovie & Co' , 'https://www.vinted.es/brand/lovie-co'), +(64142 , 'Louisa' , 'https://www.vinted.es/brand/louisa'), +(3842026 , 'Lovissima' , 'https://www.vinted.es/brand/lovissima'), +(603602 , 'Louisa Klaps' , 'https://www.vinted.es/brand/louisa-klaps'), +(1604579 , 'Luisa Beccaria' , 'https://www.vinted.es/brand/luisa-beccaria'), +(1394868 , 'Louis and Mia' , 'https://www.vinted.es/brand/louis-and-mia'), +(1493309 , 'Louis & Louisa' , 'https://www.vinted.es/brand/louis-louisa'), +(175904 , 'l''enfant do' , 'https://www.vinted.es/brand/lenfant-do'), +(147576 , 'LIST' , 'https://www.vinted.es/brand/list'), +(275998 , 'List Woman' , 'https://www.vinted.es/brand/list-woman'), +(9782984 , 'LISTEE' , 'https://www.vinted.es/brand/listee'), +(211940 , 'Little captain' , 'https://www.vinted.es/brand/little-captain'), +(25561 , 'Leone' , 'https://www.vinted.es/brand/leone'), +(21019 , 'Leon & Harper' , 'https://www.vinted.es/brand/leon-harper'), +(1621080 , 'Leone kids' , 'https://www.vinted.es/brand/leone-kids'), +(41951 , 'Leonardo' , 'https://www.vinted.es/brand/leonardo'), +(31209 , 'Les Néréides' , 'https://www.vinted.es/brand/les-nereides'), +(422445 , 'León Shoes' , 'https://www.vinted.es/brand/leon-shoes'), +(45879 , 'LEONARD' , 'https://www.vinted.es/brand/leonard'), +(265190 , 'LEON' , 'https://www.vinted.es/brand/leon'), +(298163 , 'LEO & UGO' , 'https://www.vinted.es/brand/leo-ugo'), +(1036534 , 'Leontien' , 'https://www.vinted.es/brand/leontien'), +(160632 , 'Limited Collection' , 'https://www.vinted.es/brand/limited-collection'), +(230604 , 'LOAP' , 'https://www.vinted.es/brand/loap'), +(340796 , 'Loops' , 'https://www.vinted.es/brand/loops'), +(326274 , 'LOUP' , 'https://www.vinted.es/brand/loup'), +(291997 , 'Loop' , 'https://www.vinted.es/brand/loop'), +(144600 , 'Looping' , 'https://www.vinted.es/brand/looping'), +(260780 , 'Luke' , 'https://www.vinted.es/brand/luke'), +(656497 , 'Luke 1977' , 'https://www.vinted.es/brand/luke-1977'), +(764307 , 'Luke Sport' , 'https://www.vinted.es/brand/luke-sport'), +(128662 , 'Luc-Ce' , 'https://www.vinted.es/brand/luc-ce'), +(345744 , 'Lu & Lu' , 'https://www.vinted.es/brand/lu-lu'), +(287517 , 'Luc et Léa' , 'https://www.vinted.es/brand/luc-et-lea'), +(1159816 , 'Luneville' , 'https://www.vinted.es/brand/luneville'), +(12873 , 'Luxe Collection' , 'https://www.vinted.es/brand/luxe-collection'), +(32267 , 'Luxe' , 'https://www.vinted.es/brand/luxe'), +(372806 , 'Lunella' , 'https://www.vinted.es/brand/lunella'), +(316440 , 'Leroy Merlin' , 'https://www.vinted.es/brand/leroy-merlin'), +(166170 , 'Lloyd''s' , 'https://www.vinted.es/brand/lloyds'), +(160472 , 'Lloyd' , 'https://www.vinted.es/brand/lloyd'), +(4695260 , 'Le Manège à Bijoux' , 'https://www.vinted.es/brand/le-manege-a-bijoux'), +(13955 , 'Lush' , 'https://www.vinted.es/brand/lush'), +(2981734 , 'Lush Wigs' , 'https://www.vinted.es/brand/lush-wigs'), +(6723574 , 'Lush Décor' , 'https://www.vinted.es/brand/lush-decor'), +(52733 , 'Luhta' , 'https://www.vinted.es/brand/luhta'), +(2755 , 'LUSA' , 'https://www.vinted.es/brand/lusa'), +(270973 , 'Lustre' , 'https://www.vinted.es/brand/lustre'), +(1922407 , 'LukShoes' , 'https://www.vinted.es/brand/lukshoes'), +(1372580 , 'Lusa Kids' , 'https://www.vinted.es/brand/lusa-kids'), +(5591 , 'Luna' , 'https://www.vinted.es/brand/luna'), +(481909 , 'Lunatic' , 'https://www.vinted.es/brand/lunatic'), +(18447 , 'Luna llena' , 'https://www.vinted.es/brand/luna-llena'), +(43921 , 'Lunatisme' , 'https://www.vinted.es/brand/lunatisme'), +(547476 , 'Luna Roja' , 'https://www.vinted.es/brand/luna-roja'), +(877661 , 'Lunares en Mayo' , 'https://www.vinted.es/brand/lunares-en-mayo'), +(393452 , 'Luna Novias' , 'https://www.vinted.es/brand/luna-novias'), +(167828 , 'Luna''s' , 'https://www.vinted.es/brand/lunas'), +(297283 , 'Lunar' , 'https://www.vinted.es/brand/lunar'), +(171634 , 'Luna Carina' , 'https://www.vinted.es/brand/luna-carina'), +(1317905 , 'Levv' , 'https://www.vinted.es/brand/levv'), +(151588 , 'Level' , 'https://www.vinted.es/brand/level'), +(605115 , 'Le Volière' , 'https://www.vinted.es/brand/le-voliere'), +(13687 , 'LEAVA' , 'https://www.vinted.es/brand/leava'), +(465074 , 'Levanté' , 'https://www.vinted.es/brand/levante'), +(53865 , 'Les Voiles De Saint Tropez' , 'https://www.vinted.es/brand/les-voiles-de-saint-tropez'), +(887015 , 'Le Vélo' , 'https://www.vinted.es/brand/le-velo'), +(89894 , 'La Senza' , 'https://www.vinted.es/brand/la-senza'), +(39263 , 'Lenny B.' , 'https://www.vinted.es/brand/lenny-b'), +(2507 , 'Light in the Box' , 'https://www.vinted.es/brand/light-in-the-box'), +(193678 , 'Logitech' , 'https://www.vinted.es/brand/logitech'), +(90084 , 'Lycra' , 'https://www.vinted.es/brand/lycra'), +(36555 , 'Laurel' , 'https://www.vinted.es/brand/laurel'), +(65188 , 'Laurent Cerrer' , 'https://www.vinted.es/brand/laurent-cerrer'), +(196276 , 'Laurent David' , 'https://www.vinted.es/brand/laurent-david'), +(345945 , 'Lauren' , 'https://www.vinted.es/brand/lauren'), +(37665 , 'Laurence doligé' , 'https://www.vinted.es/brand/laurence-dolige'), +(1893 , 'Lamarthe' , 'https://www.vinted.es/brand/lamarthe'), +(872009 , 'Looxs' , 'https://www.vinted.es/brand/looxs'), +(924807 , 'Looxs Revolution' , 'https://www.vinted.es/brand/looxs-revolution'), +(291727 , 'Loose' , 'https://www.vinted.es/brand/loose'), +(3569007 , 'LOOKS by Wolfgang Joop' , 'https://www.vinted.es/brand/looks-by-wolfgang-joop'), +(3166914 , 'LOOIS' , 'https://www.vinted.es/brand/loois'), +(314976 , 'Lico' , 'https://www.vinted.es/brand/lico'), +(638230 , 'Limon' , 'https://www.vinted.es/brand/limon'), +(189620 , 'Lilou Secret' , 'https://www.vinted.es/brand/lilou-secret'), +(360535 , 'Lion' , 'https://www.vinted.es/brand/lion'), +(878887 , 'Limoge' , 'https://www.vinted.es/brand/limoge'), +(169388 , 'Licean' , 'https://www.vinted.es/brand/licean'), +(287259 , 'Lito' , 'https://www.vinted.es/brand/lito'), +(1111 , 'Liorina' , 'https://www.vinted.es/brand/liorina'), +(391600 , 'La Millou' , 'https://www.vinted.es/brand/la-millou'), +(30129 , 'Leopard' , 'https://www.vinted.es/brand/leopard'), +(843428 , 'Leopard & WRL' , 'https://www.vinted.es/brand/leopard-wrl'), +(45633 , 'Leonardi' , 'https://www.vinted.es/brand/leonardi'), +(262966 , 'Leonardo Carbone' , 'https://www.vinted.es/brand/leonardo-carbone'), +(453590 , 'LeMonada' , 'https://www.vinted.es/brand/lemonada'), +(592779 , 'Lemonade' , 'https://www.vinted.es/brand/lemonade'), +(84144 , 'Lager 157' , 'https://www.vinted.es/brand/lager-157'), +(358135 , 'Lorenzo Mari' , 'https://www.vinted.es/brand/lorenzo-mari'), +(38213 , 'Lorenzo' , 'https://www.vinted.es/brand/lorenzo'), +(594961 , 'Philosophy di Lorenzo Serafini' , 'https://www.vinted.es/brand/philosophy-di-lorenzo-serafini'), +(392905 , 'Lorenzo Calvino' , 'https://www.vinted.es/brand/lorenzo-calvino'), +(285589 , 'Lorenzo Villoresi' , 'https://www.vinted.es/brand/lorenzo-villoresi'), +(5527841 , 'Lorenzo Pazzaglia' , 'https://www.vinted.es/brand/lorenzo-pazzaglia'), +(114592 , 'Lorenz' , 'https://www.vinted.es/brand/lorenz'), +(252640 , 'Lorenzetti' , 'https://www.vinted.es/brand/lorenzetti'), +(3474962 , 'Lorenzi Milano' , 'https://www.vinted.es/brand/lorenzi-milano'), +(415400 , 'LIV' , 'https://www.vinted.es/brand/liv'), +(136844 , 'Liviana Conti' , 'https://www.vinted.es/brand/liviana-conti'), +(2470022 , 'Live 978' , 'https://www.vinted.es/brand/live-978'), +(514408 , 'Livera' , 'https://www.vinted.es/brand/livera'), +(18305 , 'Livia' , 'https://www.vinted.es/brand/livia'), +(1670764 , 'Live Wild by coolCat' , 'https://www.vinted.es/brand/live-wild-by-coolcat'), +(118526 , 'Liva Girl' , 'https://www.vinted.es/brand/liva-girl'), +(881835 , 'LIVTHELABEL' , 'https://www.vinted.es/brand/liv-the-label'), +(510077 , 'Lizalù' , 'https://www.vinted.es/brand/lizalu'), +(317392 , 'Little Tikes' , 'https://www.vinted.es/brand/little-tikes'), +(229304 , 'Lovable' , 'https://www.vinted.es/brand/lovable'), +(60810 , 'Lambretta' , 'https://www.vinted.es/brand/lambretta'), +(2607 , 'Lucy' , 'https://www.vinted.es/brand/lucy'), +(26059 , 'Lucy & Co.' , 'https://www.vinted.es/brand/lucy-co'), +(19941 , 'Lucy Paris' , 'https://www.vinted.es/brand/lucy-paris'), +(275878 , 'Lucy Wang' , 'https://www.vinted.es/brand/lucy-wang'), +(438235 , 'Lucy has a secret!' , 'https://www.vinted.es/brand/lucy-has-a-secret'), +(446452 , 'Lucy In The Sky' , 'https://www.vinted.es/brand/lucy-in-the-sky'), +(240014 , 'Lucy & Sam' , 'https://www.vinted.es/brand/lucy-sam'), +(4419338 , 'Lucy Locket Loves' , 'https://www.vinted.es/brand/lucy-locket-loves'), +(23079 , 'Lise Charmel' , 'https://www.vinted.es/brand/lise-charmel'), +(83044 , 'Linzi' , 'https://www.vinted.es/brand/linzi'), +(340951 , 'Linkin Park' , 'https://www.vinted.es/brand/linkin-park'), +(593857 , 'Linaise' , 'https://www.vinted.es/brand/linaise'), +(5251661 , 'Lizzie Fortunato Jewels' , 'https://www.vinted.es/brand/lizzie-fortunato-jewels'), +(2378895 , 'Lizzie Blue' , 'https://www.vinted.es/brand/lizzie-blue'), +(5251662 , 'Lizzie Mandler Fine Jewelry' , 'https://www.vinted.es/brand/lizzie-mandler-fine-jewelry'), +(330480 , 'LMTD' , 'https://www.vinted.es/brand/lmtd'), +(19547 , 'LMODE' , 'https://www.vinted.es/brand/lmode'), +(750090 , 'LMI-D' , 'https://www.vinted.es/brand/lmi-d'), +(346899 , 'Lace & Beads' , 'https://www.vinted.es/brand/lace-beads'), +(2254720 , 'Lace & Beads Petite' , 'https://www.vinted.es/brand/lace-beads-petite'), +(2561322 , 'Lace & Beads Tall' , 'https://www.vinted.es/brand/lace-beads-tall'), +(31241 , 'L’Autre Chose' , 'https://www.vinted.es/brand/lautre-chose'), +(42337 , 'Lucky Brand' , 'https://www.vinted.es/brand/lucky-brand'), +(519598 , 'Legero' , 'https://www.vinted.es/brand/legero'), +(189326 , 'Le Group Woman' , 'https://www.vinted.es/brand/le-group-woman'), +(251874 , 'Legend & Soul' , 'https://www.vinted.es/brand/legend-soul'), +(50215 , 'Le Grand Comptoir' , 'https://www.vinted.es/brand/le-grand-comptoir'), +(201320 , 'La Sportiva' , 'https://www.vinted.es/brand/la-sportiva'), +(1201525 , 'Lily and Rose' , 'https://www.vinted.es/brand/lily-and-rose'), +(126616 , 'LILLY ROSE' , 'https://www.vinted.es/brand/lilly-rose'), +(359386 , 'Lily Rosie Girl' , 'https://www.vinted.es/brand/lily-rosie-girl'), +(7451 , 'Lewinger' , 'https://www.vinted.es/brand/lewinger'), +(105532 , 'Long Tall Sally' , 'https://www.vinted.es/brand/long-tall-sally'), +(32449 , 'LOVE LABEL' , 'https://www.vinted.es/brand/love-label'), +(226084 , 'Little Me' , 'https://www.vinted.es/brand/little-me'), +(174264 , 'Little Mary' , 'https://www.vinted.es/brand/little-mary'), +(390670 , 'LITTLE CELEBS' , 'https://www.vinted.es/brand/little-celebs'), +(181794 , 'Little Marc Jacobs' , 'https://www.vinted.es/brand/little-marc-jacobs'), +(284084 , 'Little People' , 'https://www.vinted.es/brand/little-people'), +(181634 , 'Little Rebel' , 'https://www.vinted.es/brand/little-rebel'), +(15 , 'Mango' , 'https://www.vinted.es/brand/mango'), +(5750414 , 'Mango Kids' , 'https://www.vinted.es/brand/mango-kids'), +(302705 , 'Mango Jeunesse' , 'https://www.vinted.es/brand/mango-jeunesse'), +(335540 , 'Mango Touch' , 'https://www.vinted.es/brand/mango-touch'), +(1456385 , 'Mangoo' , 'https://www.vinted.es/brand/mangoo'), +(284012 , 'Mangoon' , 'https://www.vinted.es/brand/mangoon'), +(149916 , 'MANGOTTI' , 'https://www.vinted.es/brand/mangotti'), +(1209862 , 'Mangosteen' , 'https://www.vinted.es/brand/mangosteen'), +(809908 , 'Mango Tree' , 'https://www.vinted.es/brand/mango-tree'), +(374426 , 'Mango Pratique' , 'https://www.vinted.es/brand/mango-pratique'), +(956304 , 'Merkloos' , 'https://www.vinted.es/brand/merkloos'), +(4691219 , 'Marks & Spencer' , 'https://www.vinted.es/brand/marks-spencer'), +(14509 , 'Missguided' , 'https://www.vinted.es/brand/missguided'), +(5879990 , 'Missguided Petite' , 'https://www.vinted.es/brand/missguided-petite'), +(6209433 , 'Missguided Tall' , 'https://www.vinted.es/brand/missguided-tall'), +(5999076 , 'Missguided Plus' , 'https://www.vinted.es/brand/missguided-plus'), +(5829404 , 'Missguided Maternity' , 'https://www.vinted.es/brand/missguided-maternity'), +(3941848 , 'Playboy x Missguided' , 'https://www.vinted.es/brand/playboy-x-missguided'), +(7105735 , 'Missguided Kaporal' , 'https://www.vinted.es/brand/missguided-kaporal'), +(3889532 , 'Carli Bybel x Missguided' , 'https://www.vinted.es/brand/carli-bybel-x-missguided'), +(177880 , 'Mayoral' , 'https://www.vinted.es/brand/mayoral'), +(1468313 , 'mayotal' , 'https://www.vinted.es/brand/mayotal'), +(61952 , 'Mohito' , 'https://www.vinted.es/brand/mohito'), +(43361 , 'MOJITO' , 'https://www.vinted.es/brand/mojito'), +(1329634 , 'Mokito' , 'https://www.vinted.es/brand/mokito'), +(110104 , 'Matalan' , 'https://www.vinted.es/brand/matalan'), +(36 , 'Morgan' , 'https://www.vinted.es/brand/morgan'), +(268560 , 'Morgan & Co.' , 'https://www.vinted.es/brand/morgan-co'), +(900613 , 'Morgana' , 'https://www.vinted.es/brand/morgana'), +(193032 , 'Morgano' , 'https://www.vinted.es/brand/morgano'), +(36341 , 'Morganne Bello' , 'https://www.vinted.es/brand/morganne-bello'), +(3021345 , 'Morgan Lane' , 'https://www.vinted.es/brand/morgan-lane'), +(439829 , 'Morgan Kirch' , 'https://www.vinted.es/brand/morgan-kirch'), +(46457 , 'More & More' , 'https://www.vinted.es/brand/more-more'), +(81440 , 'Moran''s' , 'https://www.vinted.es/brand/morans'), +(171134 , 'MORANGO' , 'https://www.vinted.es/brand/morango'), +(579 , 'Massimo Dutti' , 'https://www.vinted.es/brand/massimo-dutti'), +(54 , 'Mim' , 'https://www.vinted.es/brand/mim'), +(238256 , 'Mim Pi' , 'https://www.vinted.es/brand/mim-pi'), +(353170 , 'Mimi Mua' , 'https://www.vinted.es/brand/mimi-mua'), +(235676 , 'MiMOSA' , 'https://www.vinted.es/brand/mimosa'), +(17899 , 'Mimao' , 'https://www.vinted.es/brand/mimao'), +(225768 , 'MIMI' , 'https://www.vinted.es/brand/mimi'), +(222190 , 'Mimi Couette' , 'https://www.vinted.es/brand/mimi-couette'), +(196490 , 'MIMMU' , 'https://www.vinted.es/brand/mimmu'), +(314106 , 'Mimisol' , 'https://www.vinted.es/brand/mimisol'), +(170060 , 'MI/MAI' , 'https://www.vinted.es/brand/mimai'), +(6005 , 'Michael Kors' , 'https://www.vinted.es/brand/michael-kors'), +(104 , 'Monoprix' , 'https://www.vinted.es/brand/monoprix'), +(183530 , 'Monoprix Kids' , 'https://www.vinted.es/brand/monoprix-kids'), +(105526 , 'Monoprix Femme' , 'https://www.vinted.es/brand/monoprix-femme'), +(382834 , 'Monoprix Teens' , 'https://www.vinted.es/brand/monoprix-teens'), +(7580459 , 'Monoprix Autre Ton' , 'https://www.vinted.es/brand/monoprix-autre-ton'), +(505 , 'Mexx' , 'https://www.vinted.es/brand/mexx'), +(13733 , 'Mexicana' , 'https://www.vinted.es/brand/mexicana'), +(187478 , 'Mexton' , 'https://www.vinted.es/brand/mexton'), +(310 , 'Miss Selfridge' , 'https://www.vinted.es/brand/miss-selfridge'), +(2710350 , 'Miss Selfridge Petite' , 'https://www.vinted.es/brand/miss-selfridge-petite'), +(4651 , 'Monsoon' , 'https://www.vinted.es/brand/monsoon'), +(142650 , 'moonsoon' , 'https://www.vinted.es/brand/moonsoon'), +(280391 , 'Mano' , 'https://www.vinted.es/brand/mano'), +(359 , 'Manoukian' , 'https://www.vinted.es/brand/manoukian'), +(183524 , 'Manon et Valentin' , 'https://www.vinted.es/brand/manon-et-valentin'), +(1899 , 'Manoush' , 'https://www.vinted.es/brand/manoush'), +(169276 , 'MANOSQUE' , 'https://www.vinted.es/brand/manosque'), +(67448 , 'MANOR' , 'https://www.vinted.es/brand/manor'), +(89494 , 'Manolo Blahnik' , 'https://www.vinted.es/brand/manolo-blahnik'), +(126612 , 'Manolita' , 'https://www.vinted.es/brand/manolita'), +(247616 , 'Manon' , 'https://www.vinted.es/brand/manon'), +(412774 , 'Manouxx' , 'https://www.vinted.es/brand/manouxx'), +(12223 , 'Monki' , 'https://www.vinted.es/brand/monki'), +(691770 , 'Monkind' , 'https://www.vinted.es/brand/monkind'), +(10137 , 'Monsieur Madame' , 'https://www.vinted.es/brand/monsieur-madame'), +(295623 , 'Monsieur Tshirt' , 'https://www.vinted.es/brand/monsieur-tshirt'), +(478573 , 'Mondial Tissus' , 'https://www.vinted.es/brand/mondial-tissus'), +(224148 , 'Monique' , 'https://www.vinted.es/brand/monique'), +(778019 , 'Monisqui' , 'https://www.vinted.es/brand/monisqui'), +(1061747 , 'Monica Magni' , 'https://www.vinted.es/brand/monica-magni'), +(79412 , 'Monkey' , 'https://www.vinted.es/brand/monkey'), +(97330 , 'Monica''s Jeans' , 'https://www.vinted.es/brand/monicas-jeans'), +(20519 , 'Marvel' , 'https://www.vinted.es/brand/marvel'), +(479552 , 'MARVEL AVENGERS' , 'https://www.vinted.es/brand/marvel-avengers'), +(197570 , 'Marvelis' , 'https://www.vinted.es/brand/marvelis'), +(6248392 , 'adidas x Marvel' , 'https://www.vinted.es/brand/adidas-x-marvel'), +(6496328 , 'Vans x Marvel' , 'https://www.vinted.es/brand/vans-x-marvel'), +(16357 , 'Marella' , 'https://www.vinted.es/brand/marella'), +(290498 , 'Marcelo Burlon' , 'https://www.vinted.es/brand/marcelo-burlon'), +(256436 , 'Marc Ellis' , 'https://www.vinted.es/brand/marc-ellis'), +(113244 , 'Mariella Burani' , 'https://www.vinted.es/brand/mariella-burani'), +(21357 , 'Marcel' , 'https://www.vinted.es/brand/marcel'), +(116 , 'Maje' , 'https://www.vinted.es/brand/maje'), +(5725 , 'Majestic' , 'https://www.vinted.es/brand/majestic'), +(82746 , 'Majestic Filatures' , 'https://www.vinted.es/brand/majestic-filatures'), +(10391840 , 'Made In Italy' , 'https://www.vinted.es/brand/made-in-italy'), +(14307 , 'Marese' , 'https://www.vinted.es/brand/marese'), +(45807 , 'Max&Co.' , 'https://www.vinted.es/brand/maxco'), +(287689 , 'Majorette' , 'https://www.vinted.es/brand/majorette'), +(245004 , 'maternité' , 'https://www.vinted.es/brand/maternite'), +(62502 , 'Mademoiselle R' , 'https://www.vinted.es/brand/mademoiselle-r'), +(204166 , 'M&S Collection' , 'https://www.vinted.es/brand/ms-collection'), +(18317 , 'M&W' , 'https://www.vinted.es/brand/mw'), +(513 , 'M&S Mode' , 'https://www.vinted.es/brand/ms-mode'), +(202664 , 'Mothercare' , 'https://www.vinted.es/brand/mothercare'), +(3267584 , 'Minnie' , 'https://www.vinted.es/brand/minnie'), +(12527 , 'minnetonka' , 'https://www.vinted.es/brand/minnetonka'), +(17251 , 'Marc O''Polo' , 'https://www.vinted.es/brand/marc-opolo'), +(5794217 , 'Marc O''Polo Denim' , 'https://www.vinted.es/brand/marc-opolo-denim'), +(3466506 , 'Marc O''Polo Pure' , 'https://www.vinted.es/brand/marc-opolo-pure'), +(693 , 'motivi' , 'https://www.vinted.es/brand/motivi'), +(2424716 , 'Motive&More' , 'https://www.vinted.es/brand/motivemore'), +(11925 , 'Moschino' , 'https://www.vinted.es/brand/moschino'), +(5166083 , 'Moschino Jeans' , 'https://www.vinted.es/brand/moschino-jeans'), +(5168695 , 'Moschino Cheap and Chic' , 'https://www.vinted.es/brand/moschino-cheap-and-chic'), +(1147406 , 'Moschino Couture' , 'https://www.vinted.es/brand/moschino-couture'), +(2501689 , 'Moschino Baby' , 'https://www.vinted.es/brand/moschino-baby'), +(4104252 , 'Moschino Teen' , 'https://www.vinted.es/brand/moschino-teen'), +(5372898 , 'Moschino Kids' , 'https://www.vinted.es/brand/moschino-kids'), +(723616 , 'H&M x Moschino' , 'https://www.vinted.es/brand/hm-x-moschino'), +(160 , 'Miss Captain' , 'https://www.vinted.es/brand/miss-captain'), +(161742 , 'MISS CAPTAIN TREND' , 'https://www.vinted.es/brand/miss-captain-trend'), +(118 , 'minelli' , 'https://www.vinted.es/brand/minelli'), +(9461 , 'Marypaz' , 'https://www.vinted.es/brand/marypaz'), +(103320 , 'Maripaz' , 'https://www.vinted.es/brand/maripaz'), +(187204 , 'M&Co.' , 'https://www.vinted.es/brand/mco'), +(263944 , 'Mattel' , 'https://www.vinted.es/brand/mattel'), +(133510 , 'Matt & Nat' , 'https://www.vinted.es/brand/matt-nat'), +(337265 , 'Matterhorn' , 'https://www.vinted.es/brand/matterhorn'), +(462242 , 'Martel' , 'https://www.vinted.es/brand/martel'), +(2509658 , 'Matteau' , 'https://www.vinted.es/brand/matteau'), +(1151 , 'Molly Bracken' , 'https://www.vinted.es/brand/molly-bracken'), +(11897 , 'Mustang' , 'https://www.vinted.es/brand/mustang'), +(174262 , 'Monster High' , 'https://www.vinted.es/brand/monster-high'), +(176458 , 'Mots d''enfants' , 'https://www.vinted.es/brand/mots-denfants'), +(174654 , 'Mes Petits Cailloux' , 'https://www.vinted.es/brand/mes-petits-cailloux'), +(427632 , 'Mes petis cailloux' , 'https://www.vinted.es/brand/mes-petis-cailloux'), +(6539 , 'Moncler' , 'https://www.vinted.es/brand/moncler'), +(5093921 , 'Palm Angels x Moncler' , 'https://www.vinted.es/brand/palm-angels-x-moncler'), +(7074580 , 'Converse x Moncler' , 'https://www.vinted.es/brand/converse-x-moncler'), +(6608465 , 'Moncler x Rick Owens' , 'https://www.vinted.es/brand/moncler-x-rick-owens'), +(882259 , 'Mon Cheri' , 'https://www.vinted.es/brand/mon-cheri'), +(7440268 , 'Valentino x Moncler' , 'https://www.vinted.es/brand/valentino-x-moncler'), +(6679167 , 'Moncler x Off-White' , 'https://www.vinted.es/brand/moncler-x-off-white'), +(11679 , 'MNG' , 'https://www.vinted.es/brand/mng'), +(36805 , 'MNG Suit' , 'https://www.vinted.es/brand/mng-suit'), +(21501 , 'MNG Jeans' , 'https://www.vinted.es/brand/mng-jeans'), +(290460 , 'MNG Casual' , 'https://www.vinted.es/brand/mng-casual'), +(416976 , 'MNG Kids' , 'https://www.vinted.es/brand/mng-kids'), +(506468 , 'MNG Man' , 'https://www.vinted.es/brand/mng-man'), +(336171 , 'Mnml' , 'https://www.vinted.es/brand/mnml'), +(178568 , 'M&N' , 'https://www.vinted.es/brand/mn'), +(4194087 , 'MNMAL' , 'https://www.vinted.es/brand/mnmal'), +(550 , 'Miss Sixty' , 'https://www.vinted.es/brand/miss-sixty'), +(124344 , 'Maisons du Monde' , 'https://www.vinted.es/brand/maisons-du-monde'), +(6515548 , 'Maison du Monde' , 'https://www.vinted.es/brand/maison-du-monde'), +(228018 , 'Marseille' , 'https://www.vinted.es/brand/marseille'), +(291664 , 'Mares' , 'https://www.vinted.es/brand/mares'), +(45765 , 'Olympique De Marseille' , 'https://www.vinted.es/brand/olympique-de-marseille'), +(307434 , 'Marsèll' , 'https://www.vinted.es/brand/marsell'), +(7154006 , 'adidas x Marseille' , 'https://www.vinted.es/brand/adidas-x-marseille'), +(505056 , 'Marselini' , 'https://www.vinted.es/brand/marselini'), +(5483 , 'Max Mara' , 'https://www.vinted.es/brand/max-mara'), +(313266 , 'Weekend Max Mara' , 'https://www.vinted.es/brand/weekend-max-mara'), +(1567260 , 'Magmara' , 'https://www.vinted.es/brand/magmara'), +(372 , 'Marc Jacobs' , 'https://www.vinted.es/brand/marc-jacobs'), +(1423 , 'Marco Tozzi' , 'https://www.vinted.es/brand/marco-tozzi'), +(1493366 , 'Marko Tozzi' , 'https://www.vinted.es/brand/marko-tozzi'), +(2078368 , 'Marci Tozzi' , 'https://www.vinted.es/brand/marci-tozzi'), +(289602 , 'MEDICINE' , 'https://www.vinted.es/brand/medicine'), +(115786 , 'MEDECINE DOUCE' , 'https://www.vinted.es/brand/medecine-douce'), +(278 , 'Maison Scotch' , 'https://www.vinted.es/brand/maison-scotch'), +(11131 , 'Mickey Mouse' , 'https://www.vinted.es/brand/mickey-mouse'), +(96500 , 'McKinley' , 'https://www.vinted.es/brand/mckinley'), +(506331 , 'mixed' , 'https://www.vinted.es/brand/mixed'), +(125718 , 'Mixerí' , 'https://www.vinted.es/brand/mixeri'), +(307174 , 'Mike Davis' , 'https://www.vinted.es/brand/mike-davis'), +(12009 , 'Mine de rien' , 'https://www.vinted.es/brand/mine-de-rien'), +(542266 , 'Mixer' , 'https://www.vinted.es/brand/mixer'), +(287199 , 'MAM' , 'https://www.vinted.es/brand/mam'), +(4694493 , 'Mamalicious' , 'https://www.vinted.es/brand/mamalicious'), +(100338 , 'Mamouchka' , 'https://www.vinted.es/brand/mamouchka'), +(14231 , 'Mam''Zelle' , 'https://www.vinted.es/brand/mamzelle'), +(285513 , 'Mama' , 'https://www.vinted.es/brand/mama'), +(7323 , 'Mamatayoe' , 'https://www.vinted.es/brand/mamatayoe'), +(476432 , 'Mama Koala' , 'https://www.vinted.es/brand/mama-koala'), +(315763 , 'Mamas & Papas' , 'https://www.vinted.es/brand/mamas-papas'), +(209084 , 'Mammut' , 'https://www.vinted.es/brand/mammut'), +(289055 , 'Mini Boden' , 'https://www.vinted.es/brand/mini-boden'), +(407487 , 'My Jewellery' , 'https://www.vinted.es/brand/my-jewellery'), +(339256 , 'MIXTE' , 'https://www.vinted.es/brand/mixte'), +(291759 , 'Mix' , 'https://www.vinted.es/brand/mix'), +(324558 , 'Mixture' , 'https://www.vinted.es/brand/mixture'), +(422488 , 'Mix Feel' , 'https://www.vinted.es/brand/mix-feel'), +(85144 , 'Mixa' , 'https://www.vinted.es/brand/mixa'), +(76782 , 'Mixin' , 'https://www.vinted.es/brand/mixin'), +(589693 , 'Mixtillo' , 'https://www.vinted.es/brand/mixtillo'), +(67744 , 'Marco' , 'https://www.vinted.es/brand/marco'), +(730753 , 'Maglia' , 'https://www.vinted.es/brand/maglia'), +(3652260 , 'Maglione' , 'https://www.vinted.es/brand/maglione'), +(315914 , 'MAGIA' , 'https://www.vinted.es/brand/magia'), +(1210204 , 'Magilano' , 'https://www.vinted.es/brand/magilano'), +(7946403 , 'Magia Zakupów' , 'https://www.vinted.es/brand/magia-zakupow'), +(217224 , 'Mountain Warehouse' , 'https://www.vinted.es/brand/mountain-warehouse'), +(294690 , 'Monnari' , 'https://www.vinted.es/brand/monnari'), +(184926 , 'Monnalisa' , 'https://www.vinted.es/brand/monnalisa'), +(85822 , 'Monari' , 'https://www.vinted.es/brand/monari'), +(3260427 , 'Monariss' , 'https://www.vinted.es/brand/monariss'), +(3993 , 'MAC' , 'https://www.vinted.es/brand/mac'), +(3857 , 'Mac Douglas' , 'https://www.vinted.es/brand/mac-douglas'), +(216888 , 'Macron' , 'https://www.vinted.es/brand/macron'), +(317509 , 'MacDonald' , 'https://www.vinted.es/brand/macdonald'), +(141864 , 'Maclaren' , 'https://www.vinted.es/brand/maclaren'), +(14629 , 'MACHIN CHOSE' , 'https://www.vinted.es/brand/machin-chose'), +(436136 , 'Mac Ilusion' , 'https://www.vinted.es/brand/mac-ilusion'), +(59686 , 'Mac Alyster' , 'https://www.vinted.es/brand/mac-alyster'), +(392619 , 'MACSON' , 'https://www.vinted.es/brand/macson'), +(34937 , 'Machine' , 'https://www.vinted.es/brand/machine'), +(6271867 , 'Mamalicious Curve' , 'https://www.vinted.es/brand/mamalicious-curve'), +(1607 , 'Multiples' , 'https://www.vinted.es/brand/multiples'), +(18185 , 'Met' , 'https://www.vinted.es/brand/met'), +(55645 , 'Mo' , 'https://www.vinted.es/brand/mo'), +(43171 , 'MB' , 'https://www.vinted.es/brand/mb'), +(3703 , 'M&G' , 'https://www.vinted.es/brand/mg'), +(13703 , 'M&M''s' , 'https://www.vinted.es/brand/mms'), +(281861 , 'Metal' , 'https://www.vinted.es/brand/metal'), +(49861 , 'M&V' , 'https://www.vinted.es/brand/mv'), +(225190 , 'Medela' , 'https://www.vinted.es/brand/medela'), +(466021 , 'Medea' , 'https://www.vinted.es/brand/medea'), +(7167 , 'Manguun' , 'https://www.vinted.es/brand/manguun'), +(15541 , 'Motel Rocks' , 'https://www.vinted.es/brand/motel-rocks'), +(212166 , 'Mint Velvet' , 'https://www.vinted.es/brand/mint-velvet'), +(106756 , 'McGregor' , 'https://www.vinted.es/brand/mcgregor'), +(257680 , 'MARIELLA ROSATI' , 'https://www.vinted.es/brand/mariella-rosati'), +(177490 , 'Marelle' , 'https://www.vinted.es/brand/marelle'), +(15015 , 'Maella' , 'https://www.vinted.es/brand/maella'), +(298323 , 'Mariella' , 'https://www.vinted.es/brand/mariella'), +(147458 , 'Marbella' , 'https://www.vinted.es/brand/marbella'), +(2450669 , 'Mariella Ferrari' , 'https://www.vinted.es/brand/mariella-ferrari'), +(284284 , 'Magellan' , 'https://www.vinted.es/brand/magellan'), +(41199 , 'Marc Cain' , 'https://www.vinted.es/brand/marc-cain'), +(489714 , 'MarcCain Sports' , 'https://www.vinted.es/brand/marccain-sports'), +(236788 , 'My Little Pony' , 'https://www.vinted.es/brand/my-little-pony'), +(175564 , 'Moulin Roty' , 'https://www.vinted.es/brand/moulin-roty'), +(220570 , 'MyProtein' , 'https://www.vinted.es/brand/myprotein'), +(33311 , 'MODA' , 'https://www.vinted.es/brand/moda'), +(166816 , 'Modalfa' , 'https://www.vinted.es/brand/modalfa'), +(206856 , 'Modanisa' , 'https://www.vinted.es/brand/modanisa'), +(150588 , 'MODAVISTA' , 'https://www.vinted.es/brand/modavista'), +(315 , 'Modatoi' , 'https://www.vinted.es/brand/modatoi'), +(350874 , 'Moda Italiana' , 'https://www.vinted.es/brand/moda-italiana'), +(261362 , 'Moda Alice' , 'https://www.vinted.es/brand/moda-alice'), +(90514 , 'Moda.H' , 'https://www.vinted.es/brand/modah'), +(402741 , 'Moda Ana' , 'https://www.vinted.es/brand/moda-ana'), +(16035 , 'McKenzie' , 'https://www.vinted.es/brand/mckenzie'), +(129344 , 'Merry Scott' , 'https://www.vinted.es/brand/merry-scott'), +(466517 , 'Miss Etam' , 'https://www.vinted.es/brand/miss-etam'), +(360089 , 'MISS&MAX' , 'https://www.vinted.es/brand/missmax'), +(159570 , 'McDonald''s' , 'https://www.vinted.es/brand/mcdonalds'), +(5200632 , 'Travis Scott x McDonald''s' , 'https://www.vinted.es/brand/travis-scott-x-mc-donalds'), +(1467 , 'Motel' , 'https://www.vinted.es/brand/motel'), +(12093 , 'Morellato' , 'https://www.vinted.es/brand/morellato'), +(501308 , 'MODELLO' , 'https://www.vinted.es/brand/modello'), +(284138 , 'Monella Vagabonda' , 'https://www.vinted.es/brand/monella-vagabonda'), +(58888 , 'MODEL' , 'https://www.vinted.es/brand/model'), +(174634 , 'Modelite' , 'https://www.vinted.es/brand/modelite'), +(176294 , 'Model co' , 'https://www.vinted.es/brand/model-co'), +(1610602 , 'MORE LOVE' , 'https://www.vinted.es/brand/more-love'), +(370714 , 'Morelli' , 'https://www.vinted.es/brand/morelli'), +(5944966 , 'Minions' , 'https://www.vinted.es/brand/minions'), +(723475 , 'Maison 123' , 'https://www.vinted.es/brand/maison-123'), +(291722 , 'un1deux2trois3' , 'https://www.vinted.es/brand/un1deux2trois3'), +(389307 , 'Mona Lisa' , 'https://www.vinted.es/brand/mona-lisa'), +(425 , 'Moa' , 'https://www.vinted.es/brand/moa'), +(1640025 , 'Moa Master Of Arts' , 'https://www.vinted.es/brand/moa-master-of-arts'), +(308722 , 'MO&Co.' , 'https://www.vinted.es/brand/moco'), +(1081617 , 'Mo accessories' , 'https://www.vinted.es/brand/mo-accessories'), +(7030562 , 'Moana Bikini' , 'https://www.vinted.es/brand/moana-bikini'), +(354452 , 'Miniclub' , 'https://www.vinted.es/brand/miniclub'), +(9127521 , 'Mini Club' , 'https://www.vinted.es/brand/mini-club'), +(236850 , 'Mini Club Baby' , 'https://www.vinted.es/brand/mini-club-baby'), +(17155 , 'Milano' , 'https://www.vinted.es/brand/milano'), +(354323 , 'Milano Italy' , 'https://www.vinted.es/brand/milano-italy'), +(795 , 'Milanoo' , 'https://www.vinted.es/brand/milanoo'), +(76842 , 'Milano Moda' , 'https://www.vinted.es/brand/milano-moda'), +(3556909 , 'Milano Brush' , 'https://www.vinted.es/brand/milano-brush'), +(1637169 , 'Milanówek' , 'https://www.vinted.es/brand/milanowek'), +(297854 , 'Milan jeunesse' , 'https://www.vinted.es/brand/milan-jeunesse'), +(681296 , 'Milan Kiss' , 'https://www.vinted.es/brand/milan-kiss'), +(14859 , 'Mila Louise' , 'https://www.vinted.es/brand/mila-louise'), +(174164 , 'Milani' , 'https://www.vinted.es/brand/milani'), +(287221 , 'Maxi Cosi' , 'https://www.vinted.es/brand/maxi-cosi'), +(282451 , 'Mantaray' , 'https://www.vinted.es/brand/mantaray'), +(443 , 'Millenium' , 'https://www.vinted.es/brand/millenium'), +(5777 , 'Madonna' , 'https://www.vinted.es/brand/madonna'), +(239416 , 'Miranda' , 'https://www.vinted.es/brand/miranda'), +(327244 , 'MISSPAP' , 'https://www.vinted.es/brand/misspap'), +(1319082 , 'Miss Pappalea' , 'https://www.vinted.es/brand/miss-pappalea'), +(179466 , 'Miss Papillon' , 'https://www.vinted.es/brand/miss-papillon'), +(66494 , 'Miss Paris' , 'https://www.vinted.es/brand/miss-paris'), +(170668 , 'Miss Passion' , 'https://www.vinted.es/brand/miss-passion'), +(150796 , 'Miss Patina' , 'https://www.vinted.es/brand/miss-patina'), +(229540 , 'Miss Parisienne' , 'https://www.vinted.es/brand/miss-parisienne'), +(2591888 , 'Miss Patisserie' , 'https://www.vinted.es/brand/miss-patisserie'), +(1473 , 'Maybelline' , 'https://www.vinted.es/brand/maybelline'), +(7832543 , 'Maybelline x Gigi Hadid' , 'https://www.vinted.es/brand/maybelline-x-gigi-hadid'), +(282927 , 'Miss Liberto' , 'https://www.vinted.es/brand/miss-liberto'), +(218308 , 'MAIN' , 'https://www.vinted.es/brand/main'), +(418030 , 'Maine' , 'https://www.vinted.es/brand/maine'), +(462398 , 'Maine New England' , 'https://www.vinted.es/brand/maine-new-england'), +(556831 , 'Mainio' , 'https://www.vinted.es/brand/mainio'), +(1355033 , 'Mainpol' , 'https://www.vinted.es/brand/mainpol'), +(3097789 , 'Mainzel Männchen' , 'https://www.vinted.es/brand/mainzel-mannchen'), +(897115 , 'Maingold' , 'https://www.vinted.es/brand/maingold'), +(1745 , 'Miu Miu' , 'https://www.vinted.es/brand/miu-miu'), +(813084 , 'Moodo' , 'https://www.vinted.es/brand/moodo'), +(336019 , 'Moodstreet' , 'https://www.vinted.es/brand/moodstreet'), +(1293 , 'Moody''s' , 'https://www.vinted.es/brand/moodys'), +(108090 , 'Mood' , 'https://www.vinted.es/brand/mood'), +(55683 , 'Modo' , 'https://www.vinted.es/brand/modo'), +(287549 , 'Mondo' , 'https://www.vinted.es/brand/mondo'), +(287164 , 'Mon Doudou' , 'https://www.vinted.es/brand/mon-doudou'), +(331695 , 'Mondo Motors' , 'https://www.vinted.es/brand/mondo-motors'), +(276765 , 'Mondor' , 'https://www.vinted.es/brand/mondor'), +(379644 , 'moods of norway' , 'https://www.vinted.es/brand/moods-of-norway'), +(61534 , 'Montego' , 'https://www.vinted.es/brand/montego'), +(63854 , 'MONTEGO BAY CLUB' , 'https://www.vinted.es/brand/montego-bay-club'), +(407205 , 'Montecore' , 'https://www.vinted.es/brand/montecore'), +(232374 , 'Montgomery' , 'https://www.vinted.es/brand/montgomery'), +(1025836 , 'Monte Rosso' , 'https://www.vinted.es/brand/monte-rosso'), +(10989 , 'moto' , 'https://www.vinted.es/brand/moto'), +(209730 , 'Motorola' , 'https://www.vinted.es/brand/motorola'), +(127530 , 'Motomod' , 'https://www.vinted.es/brand/motomod'), +(165956 , 'MOTOR' , 'https://www.vinted.es/brand/motor'), +(292403 , 'MQP' , 'https://www.vinted.es/brand/mqp'), +(337866 , 'Moto Guzzi' , 'https://www.vinted.es/brand/moto-guzzi'), +(20981 , 'Mint & Berry' , 'https://www.vinted.es/brand/mint-berry'), +(623364 , 'M&S Baby' , 'https://www.vinted.es/brand/ms-baby'), +(280627 , 'M&C baby' , 'https://www.vinted.es/brand/mc-baby'), +(413 , 'Mellow Yellow' , 'https://www.vinted.es/brand/mellow-yellow'), +(260600 , 'MbyM' , 'https://www.vinted.es/brand/mbym'), +(287227 , 'MB Jeux' , 'https://www.vinted.es/brand/mb-jeux'), +(109256 , 'M by Mosquitos' , 'https://www.vinted.es/brand/m-by-mosquitos'), +(80928 , 'MBT' , 'https://www.vinted.es/brand/mbt'), +(29069 , 'mbj' , 'https://www.vinted.es/brand/mbj'), +(819320 , 'Milton Bradley Company' , 'https://www.vinted.es/brand/milton-bradley-company'), +(618322 , 'MBL' , 'https://www.vinted.es/brand/mbl'), +(498731 , 'MB21' , 'https://www.vinted.es/brand/mb21'), +(17411 , 'Mosquitos' , 'https://www.vinted.es/brand/mosquitos'), +(28997 , 'Mosquito' , 'https://www.vinted.es/brand/mosquito'), +(4463 , 'Missoni' , 'https://www.vinted.es/brand/missoni'), +(2720679 , 'Missoni Mare' , 'https://www.vinted.es/brand/missoni-mare'), +(2776470 , 'Missoni Home' , 'https://www.vinted.es/brand/missoni-home'), +(452911 , 'Converse x Missoni' , 'https://www.vinted.es/brand/converse-x-missoni'), +(4004364 , 'adidas x Missoni' , 'https://www.vinted.es/brand/adidas-x-missoni'), +(45203 , 'Miss one' , 'https://www.vinted.es/brand/miss-one'), +(27807 , 'Miss United' , 'https://www.vinted.es/brand/miss-united'), +(681348 , 'missony' , 'https://www.vinted.es/brand/missony'), +(947576 , 'Miss Olive' , 'https://www.vinted.es/brand/miss-olive'), +(7081320 , 'Palm Angels x Missoni' , 'https://www.vinted.es/brand/palm-angels-x-missoni'), +(901475 , 'Most Wanted' , 'https://www.vinted.es/brand/most-wanted'), +(1170860 , 'MOOST Wanted' , 'https://www.vinted.es/brand/moost-wanted'), +(19163 , 'MINIMUM' , 'https://www.vinted.es/brand/minimum'), +(633835 , 'Minimu' , 'https://www.vinted.es/brand/minimu'), +(340776 , 'Mini Môme' , 'https://www.vinted.es/brand/mini-mome'), +(723 , 'MELISSA' , 'https://www.vinted.es/brand/melissa'), +(314023 , 'Melissa & Doug' , 'https://www.vinted.es/brand/melissa-doug'), +(185068 , 'Melissa Brown' , 'https://www.vinted.es/brand/melissa-brown'), +(145926 , 'Melissa Odabash' , 'https://www.vinted.es/brand/melissa-odabash'), +(4963960 , 'Melissa Kaye' , 'https://www.vinted.es/brand/melissa-kaye'), +(911003 , 'Melissa Joy Manning' , 'https://www.vinted.es/brand/melissa-joy-manning'), +(310901 , 'Mela London' , 'https://www.vinted.es/brand/mela-london'), +(215184 , 'minoti' , 'https://www.vinted.es/brand/minoti'), +(182318 , 'MINORITY' , 'https://www.vinted.es/brand/minority'), +(608052 , 'Mintini Baby' , 'https://www.vinted.es/brand/mintini-baby'), +(6377169 , 'Minories' , 'https://www.vinted.es/brand/minories'), +(399547 , 'Magic: The Gathering' , 'https://www.vinted.es/brand/magic-the-gathering'), +(5935 , 'Mado et les Autres' , 'https://www.vinted.es/brand/mado-et-les-autres'), +(7089 , 'Mavi' , 'https://www.vinted.es/brand/mavi'), +(303882 , 'Mavic' , 'https://www.vinted.es/brand/mavic'), +(417206 , 'Mavi Jeans' , 'https://www.vinted.es/brand/mavi-jeans'), +(1311043 , 'Mavie' , 'https://www.vinted.es/brand/mavie'), +(10178428 , 'MáViJa' , 'https://www.vinted.es/brand/mavija'), +(73058 , 'Manila Grace' , 'https://www.vinted.es/brand/manila-grace'), +(159064 , 'Martes' , 'https://www.vinted.es/brand/martes'), +(13939 , 'Marie Sixtine' , 'https://www.vinted.es/brand/marie-sixtine'), +(380844 , 'Martissima' , 'https://www.vinted.es/brand/martissima'), +(986235 , 'Martex' , 'https://www.vinted.es/brand/martex'), +(5323 , 'misako' , 'https://www.vinted.es/brand/misako'), +(309550 , 'Misskoo' , 'https://www.vinted.es/brand/misskoo'), +(36883 , 'Misaki' , 'https://www.vinted.es/brand/misaki'), +(271574 , 'Misskow' , 'https://www.vinted.es/brand/misskow'), +(392829 , 'Minako' , 'https://www.vinted.es/brand/minako'), +(212682 , 'MIYAKoo' , 'https://www.vinted.es/brand/miyakoo'), +(308688 , 'Misa Los Angeles' , 'https://www.vinted.es/brand/misa-los-angeles'), +(7279518 , 'Misoko & Co' , 'https://www.vinted.es/brand/misoko-co'), +(5984489 , 'Miszkomaszko' , 'https://www.vinted.es/brand/miszkomaszko'), +(28571 , 'MIZUNO' , 'https://www.vinted.es/brand/mizuno'), +(101700 , 'Marine' , 'https://www.vinted.es/brand/marine'), +(718194 , 'E.Marinella' , 'https://www.vinted.es/brand/emarinella'), +(293847 , 'Marine & Co' , 'https://www.vinted.es/brand/marine-co'), +(321243 , 'MARINE CORPS' , 'https://www.vinted.es/brand/marine-corps'), +(154456 , 'Mariner' , 'https://www.vinted.es/brand/mariner'), +(150460 , 'Marineland' , 'https://www.vinted.es/brand/marineland'), +(9753319 , 'Marinepool' , 'https://www.vinted.es/brand/marinepool'), +(780179 , 'Marine Serre' , 'https://www.vinted.es/brand/marine-serre'), +(468910 , 'Marinello' , 'https://www.vinted.es/brand/marinello'), +(1946303 , 'Marinex' , 'https://www.vinted.es/brand/marinex'), +(383055 , 'Missy Empire' , 'https://www.vinted.es/brand/missy-empire'), +(38239 , 'Murano' , 'https://www.vinted.es/brand/murano'), +(391262 , 'Murandum' , 'https://www.vinted.es/brand/murandum'), +(19827 , 'Marcona' , 'https://www.vinted.es/brand/marcona'), +(370250 , 'Macarons' , 'https://www.vinted.es/brand/macarons'), +(668035 , 'Marconi' , 'https://www.vinted.es/brand/marconi'), +(1493411 , 'Maronski' , 'https://www.vinted.es/brand/maronski'), +(181572 , 'MaxiMo' , 'https://www.vinted.es/brand/maximo'), +(291299 , 'Maxi Toys' , 'https://www.vinted.es/brand/maxi-toys'), +(181236 , 'Max&More' , 'https://www.vinted.es/brand/maxmore'), +(307066 , 'Maxomorra' , 'https://www.vinted.es/brand/maxomorra'), +(76146 , 'Maxime' , 'https://www.vinted.es/brand/maxime'), +(60092 , 'MAX&MOI' , 'https://www.vinted.es/brand/max-moi'), +(576551 , 'Maxi Zoo' , 'https://www.vinted.es/brand/maxi-zoo'), +(278370 , 'Maxima' , 'https://www.vinted.es/brand/maxima'), +(287547 , 'Megableu' , 'https://www.vinted.es/brand/megableu'), +(14233 , 'Maison Martin Margiela' , 'https://www.vinted.es/brand/maison-martin-margiela'), +(639289 , 'Maison Margiela' , 'https://www.vinted.es/brand/maison-margiela'), +(503975 , 'Maison Espin' , 'https://www.vinted.es/brand/maison-espin'), +(151432 , 'Maison Lejaby' , 'https://www.vinted.es/brand/maison-lejaby'), +(90034 , 'Maison Kitsuné' , 'https://www.vinted.es/brand/maison-kitsune'), +(1559933 , 'MAISON 9 PARIS' , 'https://www.vinted.es/brand/maison-9-paris'), +(172880 , 'Maison Labiche' , 'https://www.vinted.es/brand/maison-labiche'), +(313686 , 'Miraculous' , 'https://www.vinted.es/brand/miraculous'), +(278326 , 'Megis' , 'https://www.vinted.es/brand/megis'), +(1151401 , 'MEGi' , 'https://www.vinted.es/brand/megi'), +(885973 , 'Megi Collection' , 'https://www.vinted.es/brand/megi-collection'), +(287387 , 'Mega Bloks' , 'https://www.vinted.es/brand/mega-bloks'), +(3263 , 'Méliné' , 'https://www.vinted.es/brand/meline'), +(300376 , 'Meisie' , 'https://www.vinted.es/brand/meisie'), +(78104 , 'Megusto' , 'https://www.vinted.es/brand/megusto'), +(537993 , 'Melitea' , 'https://www.vinted.es/brand/melitea'), +(1795 , 'Mystic' , 'https://www.vinted.es/brand/mystic'), +(845933 , 'MYSTICA' , 'https://www.vinted.es/brand/mystica'), +(272112 , 'Mystify' , 'https://www.vinted.es/brand/mystify'), +(1131796 , 'My Still Life' , 'https://www.vinted.es/brand/my-still-life'), +(83028 , 'Maria Mare' , 'https://www.vinted.es/brand/maria-mare'), +(2777843 , 'Maria Maleta' , 'https://www.vinted.es/brand/maria-maleta'), +(314970 , 'Moda Fashion' , 'https://www.vinted.es/brand/moda-fashion'), +(290427 , 'ModaLand' , 'https://www.vinted.es/brand/modaland'), +(14281 , 'Marshall' , 'https://www.vinted.es/brand/marshall'), +(19813 , 'Marshall Original' , 'https://www.vinted.es/brand/marshall-original'), +(87538 , 'Marshalls' , 'https://www.vinted.es/brand/marshalls'), +(648428 , 'Marshall Artist' , 'https://www.vinted.es/brand/marshall-artist'), +(457460 , 'MARSHMALLOW' , 'https://www.vinted.es/brand/marshmallow'), +(395282 , 'M.Sara' , 'https://www.vinted.es/brand/msara'), +(185602 , 'Manière De Voir' , 'https://www.vinted.es/brand/maniere-de-voir'), +(285890 , 'Molo' , 'https://www.vinted.es/brand/molo'), +(36943 , 'Moloko' , 'https://www.vinted.es/brand/moloko'), +(574968 , 'Molo Kids' , 'https://www.vinted.es/brand/molo-kids'), +(319319 , 'MOLTO' , 'https://www.vinted.es/brand/molto'), +(298260 , 'Matchbox' , 'https://www.vinted.es/brand/matchbox'), +(294922 , 'Monopoly' , 'https://www.vinted.es/brand/monopoly'), +(5815 , 'Meltin Pot' , 'https://www.vinted.es/brand/meltin-pot'), +(22975 , 'Mademoiselle' , 'https://www.vinted.es/brand/mademoiselle'), +(163552 , 'Mademoiselle chic' , 'https://www.vinted.es/brand/mademoiselle-chic'), +(223772 , 'Mademoiselle D' , 'https://www.vinted.es/brand/mademoiselle-d'), +(15197 , 'Mademoiselle Lola' , 'https://www.vinted.es/brand/mademoiselle-lola'), +(1328714 , 'Mademoiselle Frenchy' , 'https://www.vinted.es/brand/mademoiselle-frenchy'), +(210570 , 'mademoiselle tara' , 'https://www.vinted.es/brand/mademoiselle-tara'), +(362696 , 'Mademoiselle S' , 'https://www.vinted.es/brand/mademoiselle-s'), +(501554 , 'Mademoiselle Yéyé' , 'https://www.vinted.es/brand/mademoiselle-yeye'), +(173430 , 'Munich' , 'https://www.vinted.es/brand/munich'), +(311855 , 'Munich Freedom' , 'https://www.vinted.es/brand/munich-freedom'), +(294038 , 'Munchkin' , 'https://www.vinted.es/brand/munchkin'), +(431676 , 'München' , 'https://www.vinted.es/brand/munchen'), +(6937204 , 'Munchkin & Bear' , 'https://www.vinted.es/brand/munchkin-bear'), +(307281 , 'Multiblu' , 'https://www.vinted.es/brand/multiblu'), +(7119 , 'Marlboro Classics' , 'https://www.vinted.es/brand/marlboro-classics'), +(296024 , 'MADNESS' , 'https://www.vinted.es/brand/madness'), +(13085 , 'Maner' , 'https://www.vinted.es/brand/maner'), +(175740 , 'Mini Gang' , 'https://www.vinted.es/brand/mini-gang'), +(3183247 , 'Mini Gang (Französisch)' , 'https://www.vinted.es/brand/mini-gang-franzosisch'), +(383599 , 'Mi Canesú' , 'https://www.vinted.es/brand/mi-canesu'), +(166828 , 'Mulaya' , 'https://www.vinted.es/brand/mulaya'), +(40189 , 'Marciano' , 'https://www.vinted.es/brand/marciano'), +(673 , 'Menbur' , 'https://www.vinted.es/brand/menbur'), +(557 , 'Madeleine' , 'https://www.vinted.es/brand/madeleine'), +(259140 , 'Madeline' , 'https://www.vinted.es/brand/madeline'), +(524053 , 'MADELiNE Girl' , 'https://www.vinted.es/brand/madeline-girl'), +(337720 , 'Mini Rodini' , 'https://www.vinted.es/brand/mini-rodini'), +(351033 , 'Molton Brown' , 'https://www.vinted.es/brand/molton-brown'), +(6170374 , 'Molton' , 'https://www.vinted.es/brand/molton'), +(10697 , 'MONTOTO' , 'https://www.vinted.es/brand/montoto'), +(613449 , 'Moyto' , 'https://www.vinted.es/brand/moyto'), +(3223 , 'Manfield' , 'https://www.vinted.es/brand/manfield'), +(28915 , 'Mulberry' , 'https://www.vinted.es/brand/mulberry'), +(1832323 , 'Mulberry Street' , 'https://www.vinted.es/brand/mulberry-street'), +(4952105 , 'Mulberry & Grand' , 'https://www.vinted.es/brand/mulberry-grand'), +(50045 , 'Marie Lund' , 'https://www.vinted.es/brand/marie-lund'), +(329729 , 'Marie Mero' , 'https://www.vinted.es/brand/marie-mero'), +(1493415 , 'Maria Lund' , 'https://www.vinted.es/brand/maria-lund'), +(1493625 , 'Marcel&Mel' , 'https://www.vinted.es/brand/marcelmel'), +(16283 , 'Mise Au Green' , 'https://www.vinted.es/brand/mise-au-green'), +(19127 , 'Melrose' , 'https://www.vinted.es/brand/melrose'), +(3554329 , 'Mario Valentino' , 'https://www.vinted.es/brand/mario-valentino'), +(39883 , 'Mer du Nord' , 'https://www.vinted.es/brand/mer-du-nord'), +(158498 , 'Miss Roberta' , 'https://www.vinted.es/brand/miss-roberta'), +(482 , 'Miss June' , 'https://www.vinted.es/brand/miss-june'), +(3861 , 'Miss JCL' , 'https://www.vinted.es/brand/miss-jcl'), +(556550 , 'Miss Ribellina' , 'https://www.vinted.es/brand/miss-ribellina'), +(182362 , 'Miss Rose' , 'https://www.vinted.es/brand/miss-rose'), +(331435 , 'Miss Republic' , 'https://www.vinted.es/brand/miss-republic'), +(206946 , 'Miss Right' , 'https://www.vinted.es/brand/miss-right'), +(56760 , 'Miss jolie' , 'https://www.vinted.es/brand/miss-jolie'), +(19679 , 'Marina Rinaldi' , 'https://www.vinted.es/brand/marina-rinaldi'), +(23715 , 'Mais il est où le soleil ?' , 'https://www.vinted.es/brand/mais-il-est-ou-le-soleil'), +(24637 , 'Mandarina Duck' , 'https://www.vinted.es/brand/mandarina-duck'), +(5723 , 'Mitchell & Ness' , 'https://www.vinted.es/brand/mitchell-ness'), +(6827894 , 'Supreme x Mitchell & Ness' , 'https://www.vinted.es/brand/supreme-x-mitchell-ness'), +(148034 , 'MARE' , 'https://www.vinted.es/brand/mare'), +(123448 , 'Marea' , 'https://www.vinted.es/brand/marea'), +(732330 , 'Marengo' , 'https://www.vinted.es/brand/marengo'), +(179994 , 'Maretto' , 'https://www.vinted.es/brand/maretto'), +(197462 , 'Mare di latte' , 'https://www.vinted.es/brand/mare-di-latte'), +(129956 , 'Meme Pas Peur' , 'https://www.vinted.es/brand/meme-pas-peur'), +(138200 , 'MSGM' , 'https://www.vinted.es/brand/msgm'), +(532034 , 'MS Mode' , 'https://www.vinted.es/brand/ms-moda'), +(316524 , 'MSM' , 'https://www.vinted.es/brand/msm'), +(386224 , 'MSMG' , 'https://www.vinted.es/brand/msmg'), +(3090781 , 'Ms. Mermaid' , 'https://www.vinted.es/brand/ms-mermaid'), +(98860 , 'Merrell' , 'https://www.vinted.es/brand/merrell'), +(291361 , 'Merell' , 'https://www.vinted.es/brand/merell'), +(181448 , 'Mary Kay' , 'https://www.vinted.es/brand/mary-kay'), +(138716 , 'Mary-Kate and Ashley' , 'https://www.vinted.es/brand/mary-kate-and-ashley'), +(301244 , 'Mary Katrantzou' , 'https://www.vinted.es/brand/mary-katrantzou'), +(267542 , 'Me To You' , 'https://www.vinted.es/brand/me-to-you'), +(377893 , 'Misslook' , 'https://www.vinted.es/brand/misslook'), +(3515 , 'Miss Loona' , 'https://www.vinted.es/brand/miss-loona'), +(287016 , 'Manduca' , 'https://www.vinted.es/brand/manduca'), +(383766 , 'Manduka' , 'https://www.vinted.es/brand/manduka'), +(4153 , 'My Little Box' , 'https://www.vinted.es/brand/my-little-box'), +(308933 , 'Melby' , 'https://www.vinted.es/brand/melby'), +(187050 , 'Melya Melody' , 'https://www.vinted.es/brand/melya-melody'), +(295491 , 'Mebby' , 'https://www.vinted.es/brand/mebby'), +(39567 , 'MELYA' , 'https://www.vinted.es/brand/melya'), +(456000 , 'Melly & Co' , 'https://www.vinted.es/brand/melly-co'), +(633091 , 'Mely & Melö' , 'https://www.vinted.es/brand/mely-melo'), +(341830 , 'Mon Ami' , 'https://www.vinted.es/brand/mon-ami'), +(3595282 , 'Moncrief' , 'https://www.vinted.es/brand/moncrief'), +(3116793 , 'Mondri' , 'https://www.vinted.es/brand/mondri'), +(12251 , 'Marni' , 'https://www.vinted.es/brand/marni'), +(2828463 , 'H&M x Marni' , 'https://www.vinted.es/brand/hm-x-marni'), +(103706 , 'Marina Yachting' , 'https://www.vinted.es/brand/marina-yachting'), +(259182 , 'Mister Tee' , 'https://www.vinted.es/brand/mister-tee'), +(15793 , 'Madison' , 'https://www.vinted.es/brand/madison'), +(5489557 , 'Madison James' , 'https://www.vinted.es/brand/madison-james'), +(5251669 , 'Madison.Maison' , 'https://www.vinted.es/brand/madisonmaison'), +(141480 , 'Maui and Sons' , 'https://www.vinted.es/brand/maui-and-sons'), +(25 , 'Mascara' , 'https://www.vinted.es/brand/mascara'), +(160048 , 'Mascaro' , 'https://www.vinted.es/brand/mascaro'), +(418799 , 'Mala' , 'https://www.vinted.es/brand/mala'), +(1344355 , 'Malagrida' , 'https://www.vinted.es/brand/malagrida'), +(54175 , 'Malafolie' , 'https://www.vinted.es/brand/malafolie'), +(167524 , 'Mala Mujer' , 'https://www.vinted.es/brand/mala-mujer'), +(35181 , 'Malati' , 'https://www.vinted.es/brand/malati'), +(154702 , 'Malababa' , 'https://www.vinted.es/brand/malababa'), +(2989525 , 'Malandrina' , 'https://www.vinted.es/brand/malandrina'), +(39331 , 'Malaika' , 'https://www.vinted.es/brand/malaika'), +(1145237 , 'MałaMi' , 'https://www.vinted.es/brand/malami'), +(30935 , 'Mtng' , 'https://www.vinted.es/brand/mtng'), +(1996467 , 'Multicolor' , 'https://www.vinted.es/brand/multicolor'), +(400942 , 'multi' , 'https://www.vinted.es/brand/multi'), +(883984 , 'Multiopticas' , 'https://www.vinted.es/brand/multiopticas'), +(1007140 , 'Multi-mam' , 'https://www.vinted.es/brand/multi-mam'), +(583426 , 'Multimalin' , 'https://www.vinted.es/brand/multimalin'), +(1843615 , 'Mulino Bianco' , 'https://www.vinted.es/brand/mulino-bianco'), +(315038 , 'Musti' , 'https://www.vinted.es/brand/musti'), +(448695 , 'Mulish' , 'https://www.vinted.es/brand/mulish'), +(297487 , 'Metal Boxe' , 'https://www.vinted.es/brand/metal-boxe'), +(178988 , 'Metallica' , 'https://www.vinted.es/brand/metallica'), +(6865 , 'Metalika' , 'https://www.vinted.es/brand/metalika'), +(53889 , 'METAL POINTU''S' , 'https://www.vinted.es/brand/metal-pointus'), +(139318 , 'Metal Mulisha' , 'https://www.vinted.es/brand/metal-mulisha'), +(33039 , 'Métamorf''ose' , 'https://www.vinted.es/brand/metamorfose'), +(83484 , 'M&L' , 'https://www.vinted.es/brand/ml'), +(22159 , 'Metamorphose' , 'https://www.vinted.es/brand/metamorphose'), +(35105 , 'Mistral' , 'https://www.vinted.es/brand/mistral'), +(137682 , 'Murphy & Nye' , 'https://www.vinted.es/brand/murphy-nye'), +(87578 , 'Mini Molly' , 'https://www.vinted.es/brand/mini-molly'), +(190402 , 'Mil-Tec' , 'https://www.vinted.es/brand/mil-tec'), +(324292 , 'Mister Gadget' , 'https://www.vinted.es/brand/mister-gadget'), +(552703 , 'Mister Baby' , 'https://www.vinted.es/brand/mister-baby'), +(598919 , 'Miss Globo' , 'https://www.vinted.es/brand/miss-globo'), +(212552 , 'Miss Grant' , 'https://www.vinted.es/brand/miss-grant'), +(24731 , 'Miss Glammy' , 'https://www.vinted.es/brand/miss-glammy'), +(4903 , 'Miss K' , 'https://www.vinted.es/brand/miss-k'), +(266073 , 'Miss Kiss' , 'https://www.vinted.es/brand/miss-kiss'), +(53183 , 'Misska' , 'https://www.vinted.es/brand/misska'), +(169250 , 'Miss Good' , 'https://www.vinted.es/brand/miss-good'), +(316014 , 'Montessori' , 'https://www.vinted.es/brand/montessori'), +(3749974 , 'Mercedes' , 'https://www.vinted.es/brand/mercedes'), +(260666 , 'Mercedes-Benz' , 'https://www.vinted.es/brand/mercedes-benz'), +(722423 , 'Mercedes Romero' , 'https://www.vinted.es/brand/mercedes-romero'), +(6906668 , 'Puma x Mercedes AMG' , 'https://www.vinted.es/brand/puma-x-mercedes-amg'), +(1307717 , 'Mercedes Castillo' , 'https://www.vinted.es/brand/mercedes-castillo'), +(1295879 , 'Mercedes Salazar' , 'https://www.vinted.es/brand/mercedes-salazar'), +(20711 , 'Miss bonbon' , 'https://www.vinted.es/brand/miss-bonbon'), +(5065771 , 'Marcelo Burlon County of Milan' , 'https://www.vinted.es/brand/marcelo-burlon-county-of-milan'), +(224432 , 'Ma Boutique Plus' , 'https://www.vinted.es/brand/ma-boutique-plus'), +(326292 , 'Mayerline' , 'https://www.vinted.es/brand/mayerline'), +(4514189 , 'MAYERLINE PARTY' , 'https://www.vinted.es/brand/mayerline-party'), +(3539 , 'Miss Avant Premiere' , 'https://www.vinted.es/brand/miss-avant-premiere'), +(89846 , 'Max Studio' , 'https://www.vinted.es/brand/max-studio'), +(3129300 , 'M&S Autograph' , 'https://www.vinted.es/brand/ms-autograph'), +(5858424 , 'miss miss' , 'https://www.vinted.es/brand/miss-miss'), +(14277 , 'Miss Miss by Valentina' , 'https://www.vinted.es/brand/miss-miss-by-valentina'), +(4767 , 'Miss Sissi' , 'https://www.vinted.es/brand/miss-sissi'), +(2752013 , 'mississippivintage' , 'https://www.vinted.es/brand/mississippivintage'), +(175054 , 'Miniman' , 'https://www.vinted.es/brand/miniman'), +(205436 , 'Minibanda' , 'https://www.vinted.es/brand/minibanda'), +(533135 , 'Minimal' , 'https://www.vinted.es/brand/minimal'), +(331346 , 'Miniland' , 'https://www.vinted.es/brand/miniland'), +(193682 , 'Mini Malice' , 'https://www.vinted.es/brand/mini-malice'), +(35493 , 'Minimarket' , 'https://www.vinted.es/brand/minimarket'), +(1567470 , 'Mini Matters' , 'https://www.vinted.es/brand/mini-matters'), +(315999 , 'minimonkey' , 'https://www.vinted.es/brand/minimonkey'), +(461210 , 'Minimalisma' , 'https://www.vinted.es/brand/minimalisma'), +(894821 , 'Miss Money Money' , 'https://www.vinted.es/brand/miss-money-money'), +(160336 , 'Miss News' , 'https://www.vinted.es/brand/miss-news'), +(572313 , 'Miss Evie' , 'https://www.vinted.es/brand/miss-evie'), +(290349 , 'Minecraft' , 'https://www.vinted.es/brand/minecraft'), +(116082 , 'MOD8' , 'https://www.vinted.es/brand/mod8'), +(143470 , 'Modström' , 'https://www.vinted.es/brand/modstrom'), +(35779 , 'Mode' , 'https://www.vinted.es/brand/mode'), +(274073 , 'Moss Copenhagen' , 'https://www.vinted.es/brand/moss-copenhagen'), +(36939 , 'Marlboro' , 'https://www.vinted.es/brand/marlboro'), +(12125 , 'Malboro' , 'https://www.vinted.es/brand/malboro'), +(71472 , 'Marc Aurel' , 'https://www.vinted.es/brand/marc-aurel'), +(87962 , 'Mangano' , 'https://www.vinted.es/brand/mangano'), +(483968 , 'Manganaro' , 'https://www.vinted.es/brand/manganaro'), +(272437 , 'Mini Rebel' , 'https://www.vinted.es/brand/mini-rebel'), +(967481 , 'Mini Rebels' , 'https://www.vinted.es/brand/mini-rebels'), +(1467984 , 'MamaQuevo' , 'https://www.vinted.es/brand/mamaquevo'), +(129206 , 'Mamatayou' , 'https://www.vinted.es/brand/mamatayou'), +(238940 , 'Mamaband' , 'https://www.vinted.es/brand/mamaband'), +(1885521 , 'M''Ama Non M''Ama' , 'https://www.vinted.es/brand/mama-non-mama'), +(1250962 , 'Mama BPC' , 'https://www.vinted.es/brand/mama-bpc'), +(530 , 'My Collection' , 'https://www.vinted.es/brand/my-collection'), +(80262 , 'MCM' , 'https://www.vinted.es/brand/mcm'), +(59072 , 'mcs' , 'https://www.vinted.es/brand/mcs'), +(356636 , 'Mc Lorene' , 'https://www.vinted.es/brand/mc-lorene'), +(32197 , 'MC PLANET' , 'https://www.vinted.es/brand/mc-planet'), +(479332 , 'McFarlane' , 'https://www.vinted.es/brand/mcfarlane'), +(400 , 'Mugler' , 'https://www.vinted.es/brand/mugler'), +(4677866 , 'Müller' , 'https://www.vinted.es/brand/muller'), +(4458954 , 'Muller of Yoshiokubo' , 'https://www.vinted.es/brand/muller-of-yoshiokubo'), +(56002 , 'MY BRAND' , 'https://www.vinted.es/brand/my-brand'), +(538546 , 'My Bandage Dress' , 'https://www.vinted.es/brand/my-bandage-dress'), +(53 , 'Nike' , 'https://www.vinted.es/brand/nike'), +(5977 , 'Nike Air' , 'https://www.vinted.es/brand/nike-air'), +(941408 , 'NIK&NIK' , 'https://www.vinted.es/brand/niknik'), +(283953 , 'Nike SB' , 'https://www.vinted.es/brand/nike-sb'), +(370427 , 'Nike Mercurial' , 'https://www.vinted.es/brand/nike-mercurial'), +(5774166 , 'Nike Sportswear' , 'https://www.vinted.es/brand/nike-sportswear'), +(5750136 , 'Nike x Off-White' , 'https://www.vinted.es/brand/nike-x-off-white'), +(687713 , 'Nike ACG' , 'https://www.vinted.es/brand/nike-acg'), +(5761505 , 'Nike Golf' , 'https://www.vinted.es/brand/nike-golf'), +(2287 , 'Next' , 'https://www.vinted.es/brand/next'), +(5750094 , 'Next Baby' , 'https://www.vinted.es/brand/next-baby'), +(346278 , 'Nextenso' , 'https://www.vinted.es/brand/nextenso'), +(375099 , 'Next Stage' , 'https://www.vinted.es/brand/next-stage'), +(350212 , 'Nextmia' , 'https://www.vinted.es/brand/nextmia'), +(379185 , 'Next Level' , 'https://www.vinted.es/brand/next-level'), +(157338 , 'Next Level Apparel' , 'https://www.vinted.es/brand/next-level-apparel'), +(5780370 , 'NEXT Petite' , 'https://www.vinted.es/brand/next-petite'), +(602938 , 'Nextmod' , 'https://www.vinted.es/brand/nextmod'), +(1333218 , 'Next LVL' , 'https://www.vinted.es/brand/next-lvl'), +(9 , 'New Look' , 'https://www.vinted.es/brand/new-look'), +(5759802 , 'New Look Petite' , 'https://www.vinted.es/brand/new-look-petite'), +(5751092 , 'New Look Maternity' , 'https://www.vinted.es/brand/new-look-maternity'), +(5752603 , 'New Look Curves' , 'https://www.vinted.es/brand/new-look-curves'), +(5789342 , 'New look 915 generation' , 'https://www.vinted.es/brand/new-look-915-generation'), +(5773202 , 'New Look Tall' , 'https://www.vinted.es/brand/new-look-tall'), +(6362828 , 'New Look Wide Fit' , 'https://www.vinted.es/brand/new-look-wide-fit'), +(12793227 , 'New Looxs' , 'https://www.vinted.es/brand/new-looxs'), +(13707 , 'NoName' , 'https://www.vinted.es/brand/noname'), +(177 , 'Naf Naf' , 'https://www.vinted.es/brand/naf-naf'), +(372796 , 'Nanaf Organic' , 'https://www.vinted.es/brand/nanaf-organic'), +(393 , 'New Yorker' , 'https://www.vinted.es/brand/new-yorker'), +(4263 , 'New York & Company' , 'https://www.vinted.es/brand/new-york-company'), +(131010 , 'Name It' , 'https://www.vinted.es/brand/name-it'), +(77600 , 'Nintendo' , 'https://www.vinted.es/brand/nintendo'), +(5754912 , 'Nintendo Switch' , 'https://www.vinted.es/brand/nintendo-switch'), +(5510901 , 'Vans x Nintendo' , 'https://www.vinted.es/brand/vans-x-nintendo'), +(1775 , 'New Balance' , 'https://www.vinted.es/brand/new-balance'), +(6430888 , 'New Balance x Aimé Leon Dore' , 'https://www.vinted.es/brand/new-balance-x-aime-leon-dore'), +(6177144 , 'New Balance x Casablanca' , 'https://www.vinted.es/brand/new-balance-x-casablanca'), +(5547922 , 'New Balance × Stüssy' , 'https://www.vinted.es/brand/new-balance-x-stussy'), +(425886 , 'NO LABEL' , 'https://www.vinted.es/brand/no-label'), +(2977676 , 'No Labels Kidswear' , 'https://www.vinted.es/brand/no-labels-kidswear'), +(5931042 , 'Nike x Fear Of God' , 'https://www.vinted.es/brand/nike-x-fear-of-god'), +(6021666 , 'Nike x Undefeated' , 'https://www.vinted.es/brand/nike-x-undefeated'), +(278833 , 'Nutmeg' , 'https://www.vinted.es/brand/nutmeg'), +(60158 , 'New Collection' , 'https://www.vinted.es/brand/new-collection'), +(252712 , 'NA-KD' , 'https://www.vinted.es/brand/na-kd'), +(13407 , 'Noppies' , 'https://www.vinted.es/brand/noppies'), +(155894 , 'Noopies' , 'https://www.vinted.es/brand/noopies'), +(149892 , 'Nopples' , 'https://www.vinted.es/brand/nopples'), +(268284 , 'Newbie' , 'https://www.vinted.es/brand/newbie'), +(195644 , 'New View' , 'https://www.vinted.es/brand/new-view'), +(214 , 'Napapijri' , 'https://www.vinted.es/brand/napapijri'), +(6250974 , 'Vans x Napapijri' , 'https://www.vinted.es/brand/vans-x-napapijri'), +(4718328 , 'NAPA by Martine Rose' , 'https://www.vinted.es/brand/napa-by-martine-rose'), +(7397730 , 'Vans x Napapjri' , 'https://www.vinted.es/brand/vans-x-napapjri'), +(3245 , 'NKY' , 'https://www.vinted.es/brand/nky'), +(204848 , 'NKD' , 'https://www.vinted.es/brand/nkd'), +(299736 , 'Nkds.372' , 'https://www.vinted.es/brand/nkds372'), +(321181 , 'NK' , 'https://www.vinted.es/brand/nk'), +(371954 , 'NKI' , 'https://www.vinted.es/brand/nki'), +(301641 , 'NKN' , 'https://www.vinted.es/brand/nkn'), +(3425214 , 'NKM Naturkosmetik Muenchen' , 'https://www.vinted.es/brand/nkm-naturkosmetik-muenchen'), +(4313 , 'Nasty Gal' , 'https://www.vinted.es/brand/nasty-gal'), +(3061 , 'Nabaiji' , 'https://www.vinted.es/brand/nabaiji'), +(176934 , 'Noukie''s' , 'https://www.vinted.es/brand/noukies'), +(382776 , 'Nuevo' , 'https://www.vinted.es/brand/nuevo'), +(716842 , 'NUVOLARI' , 'https://www.vinted.es/brand/nuvolari'), +(396251 , 'Nuvola' , 'https://www.vinted.es/brand/nuvola'), +(4027 , 'Nickelodeon' , 'https://www.vinted.es/brand/nickelodeon'), +(5746884 , 'Nikelodeon' , 'https://www.vinted.es/brand/nikelodeon'), +(75122 , 'Noisy May' , 'https://www.vinted.es/brand/noisy-may'), +(180092 , 'Nathan' , 'https://www.vinted.es/brand/nathan'), +(5784074 , 'Nathan Baume' , 'https://www.vinted.es/brand/nathan-baume'), +(31955 , 'Nathalie Andersen' , 'https://www.vinted.es/brand/nathalie-andersen'), +(42303 , 'Nathalie Chaize' , 'https://www.vinted.es/brand/nathalie-chaize'), +(6235 , 'Nat & Nin' , 'https://www.vinted.es/brand/nat-nin'), +(349874 , 'Natan' , 'https://www.vinted.es/brand/natan'), +(361744 , 'Nathalie Vleeschouwer' , 'https://www.vinted.es/brand/nathalie-vleeschouwer'), +(29789 , 'Nathalie Garçon' , 'https://www.vinted.es/brand/nathalie-garcon'), +(742980 , 'natan edouard vermeulen' , 'https://www.vinted.es/brand/natan-edouard-vermeulen'), +(3546921 , 'Nathalie Lété x H&M' , 'https://www.vinted.es/brand/nathalie-lete-x-hm'), +(232 , 'New Era' , 'https://www.vinted.es/brand/new-era'), +(7489659 , 'Champion x New Era' , 'https://www.vinted.es/brand/champion-x-new-era'), +(6668985 , 'Vans X New Era' , 'https://www.vinted.es/brand/vans-x-new-era'), +(394678 , 'New Ray' , 'https://www.vinted.es/brand/new-ray'), +(1173810 , 'Neera' , 'https://www.vinted.es/brand/neera'), +(691127 , 'Nehera' , 'https://www.vinted.es/brand/nehera'), +(54387 , 'novo' , 'https://www.vinted.es/brand/novo'), +(147878 , 'novo style' , 'https://www.vinted.es/brand/novo-style'), +(576776 , 'novocento' , 'https://www.vinted.es/brand/novocento'), +(202444 , 'Nova' , 'https://www.vinted.es/brand/nova'), +(108086 , 'NoNo' , 'https://www.vinted.es/brand/nono'), +(278422 , 'NOON' , 'https://www.vinted.es/brand/noon'), +(1139239 , 'Novia' , 'https://www.vinted.es/brand/novia'), +(269219 , 'Nobodinoz' , 'https://www.vinted.es/brand/nobodinoz'), +(389373 , 'NO COMPROMISE' , 'https://www.vinted.es/brand/no-compromise'), +(285257 , 'NERF' , 'https://www.vinted.es/brand/nerf'), +(18683 , 'Nero Giardini' , 'https://www.vinted.es/brand/nero-giardini'), +(348089 , 'Nero' , 'https://www.vinted.es/brand/nero'), +(15949 , 'Newfeel' , 'https://www.vinted.es/brand/newfeel'), +(20141 , 'New Fashion' , 'https://www.vinted.es/brand/new-fashion'), +(395360 , 'Netflix' , 'https://www.vinted.es/brand/netflix'), +(32573 , 'Neff' , 'https://www.vinted.es/brand/neff'), +(51245 , 'NEW FEELING' , 'https://www.vinted.es/brand/new-feeling'), +(46023 , 'New Fast' , 'https://www.vinted.es/brand/new-fast'), +(481983 , 'NIKKIE' , 'https://www.vinted.es/brand/nikkie'), +(439511 , 'Nikki' , 'https://www.vinted.es/brand/nikki'), +(437117 , 'Nikki Beach' , 'https://www.vinted.es/brand/nikki-beach'), +(47311 , 'Naketano' , 'https://www.vinted.es/brand/naketano'), +(49175 , 'NBA' , 'https://www.vinted.es/brand/nba'), +(6112919 , 'Nike x NBA' , 'https://www.vinted.es/brand/nike-x-nba'), +(6243394 , 'Reebok x NBA' , 'https://www.vinted.es/brand/reebok-x-nba'), +(118638 , 'N by Naf Naf' , 'https://www.vinted.es/brand/n-by-naf-naf'), +(200984 , 'N&B' , 'https://www.vinted.es/brand/nb'), +(17299 , 'No Boundaries' , 'https://www.vinted.es/brand/no-boundaries'), +(217864 , 'N&B CLASSIC' , 'https://www.vinted.es/brand/nb-classic'), +(2269 , 'No Excuse' , 'https://www.vinted.es/brand/no-excuse'), +(192980 , 'No Excuses' , 'https://www.vinted.es/brand/no-excuses'), +(181424 , 'NUK' , 'https://www.vinted.es/brand/nuk'), +(210144 , 'Nukutavake' , 'https://www.vinted.es/brand/nukutavake'), +(1470903 , 'NUKUS' , 'https://www.vinted.es/brand/nukus'), +(113450 , 'Nuna Lie' , 'https://www.vinted.es/brand/nuna-lie'), +(195812 , 'Nucleo' , 'https://www.vinted.es/brand/nucleo'), +(13185 , 'Nümph' , 'https://www.vinted.es/brand/numph'), +(381193 , 'Numero' , 'https://www.vinted.es/brand/numero'), +(50975 , 'Nuxe' , 'https://www.vinted.es/brand/nuxe'), +(187774 , 'NUIT D''ÉTOILES' , 'https://www.vinted.es/brand/nuit-detoiles'), +(189806 , 'Neck & Neck' , 'https://www.vinted.es/brand/neck-neck'), +(307556 , 'NASA' , 'https://www.vinted.es/brand/nasa'), +(436628 , 'NASASEASONS' , 'https://www.vinted.es/brand/nasaseasons'), +(6465000 , 'Vans X Nasa' , 'https://www.vinted.es/brand/vans-x-nasa'), +(53797 , 'Natalys' , 'https://www.vinted.es/brand/natalys'), +(168030 , 'Naracamicie' , 'https://www.vinted.es/brand/naracamicie'), +(89610 , 'Nada' , 'https://www.vinted.es/brand/nada'), +(214832 , 'Nazareno Gabrielli' , 'https://www.vinted.es/brand/nazareno-gabrielli'), +(14199 , 'Natura' , 'https://www.vinted.es/brand/natura'), +(60192 , 'natural world' , 'https://www.vinted.es/brand/natural-world'), +(103134 , 'Natural' , 'https://www.vinted.es/brand/natural'), +(186348 , 'Naturana' , 'https://www.vinted.es/brand/naturana'), +(388284 , 'Natural B' , 'https://www.vinted.es/brand/natural-b'), +(854217 , 'Natural by Lila' , 'https://www.vinted.es/brand/natural-by-lila'), +(309862 , 'naturaline' , 'https://www.vinted.es/brand/naturaline'), +(283580 , 'NATURAL OPTION' , 'https://www.vinted.es/brand/natural-option'), +(16681 , 'Naturale' , 'https://www.vinted.es/brand/naturale'), +(37263 , 'Naturalizer' , 'https://www.vinted.es/brand/naturalizer'), +(1493496 , 'Natali Silhouette' , 'https://www.vinted.es/brand/natali-silhouette'), +(186456 , 'Naturino' , 'https://www.vinted.es/brand/naturino'), +(3211697 , 'Natulino' , 'https://www.vinted.es/brand/natulino'), +(6617 , 'Nine West' , 'https://www.vinted.es/brand/nine-west'), +(118270 , 'North Sails' , 'https://www.vinted.es/brand/north-sails'), +(6587303 , 'NIK & NIK' , 'https://www.vinted.es/brand/nik-en-nik'), +(7030383 , 'Nike SB x Parra' , 'https://www.vinted.es/brand/nike-sb-x-parra'), +(1952232 , 'Nike x Stüssy' , 'https://www.vinted.es/brand/nike-x-stussy'), +(644222 , 'Nike x Supreme' , 'https://www.vinted.es/brand/nike-x-supreme'), +(2232450 , 'Nike x Sacai' , 'https://www.vinted.es/brand/nike-x-sacai'), +(6530518 , 'Nike x Swarovski' , 'https://www.vinted.es/brand/nike-x-swarovski'), +(993737 , 'Nelli Blu' , 'https://www.vinted.es/brand/nelli-blu'), +(189388 , 'Noël' , 'https://www.vinted.es/brand/noel'), +(387643 , 'Noël KIDS' , 'https://www.vinted.es/brand/noel-kids'), +(193496 , 'Nattou' , 'https://www.vinted.es/brand/nattou'), +(516782 , 'NECKLACE' , 'https://www.vinted.es/brand/necklace'), +(174350 , 'NYX' , 'https://www.vinted.es/brand/nyx'), +(409900 , 'NY Collection' , 'https://www.vinted.es/brand/ny-collection'), +(163578 , 'N.Y.K.' , 'https://www.vinted.es/brand/nyk'), +(446420 , 'NYC INDUSTRY' , 'https://www.vinted.es/brand/nyc-industry'), +(431560 , 'NYMOS' , 'https://www.vinted.es/brand/nymos'), +(269641 , 'NYPD' , 'https://www.vinted.es/brand/nypd'), +(390260 , 'NYMPHAEA ALBA' , 'https://www.vinted.es/brand/nymphaea-alba'), +(2185364 , 'Nyamba' , 'https://www.vinted.es/brand/nyamba'), +(584731 , 'Nydel' , 'https://www.vinted.es/brand/nydel'), +(537398 , 'NY London' , 'https://www.vinted.es/brand/ny-london'), +(28557 , 'Noir' , 'https://www.vinted.es/brand/noir'), +(815910 , 'Noir Sur Blanc' , 'https://www.vinted.es/brand/noir-sur-blanc'), +(5512234 , 'Noire Swimwear' , 'https://www.vinted.es/brand/noire-swimwear'), +(2319 , 'The North Face' , 'https://www.vinted.es/brand/the-north-face'), +(7700458 , 'NOBRAND.PT' , 'https://www.vinted.es/brand/nobrandpt'), +(276249 , 'Norah' , 'https://www.vinted.es/brand/norah'), +(16767 , 'Northland' , 'https://www.vinted.es/brand/northland'), +(295969 , 'Norev' , 'https://www.vinted.es/brand/norev'), +(286113 , 'Nanos' , 'https://www.vinted.es/brand/nanos'), +(232466 , 'Nano & nanette' , 'https://www.vinted.es/brand/nano-nanette'), +(270850 , 'NANO' , 'https://www.vinted.es/brand/nano'), +(389258 , 'Nanushka' , 'https://www.vinted.es/brand/nanushka'), +(345437 , 'Nanoblock' , 'https://www.vinted.es/brand/nanoblock'), +(586530 , 'Naxos' , 'https://www.vinted.es/brand/naxos'), +(647868 , 'Nanobebe' , 'https://www.vinted.es/brand/nanobebe'), +(835450 , 'Nano de la Rosa' , 'https://www.vinted.es/brand/nano-de-la-rosa'), +(1142845 , 'Nanok' , 'https://www.vinted.es/brand/nanok'), +(235232 , 'Nanso' , 'https://www.vinted.es/brand/nanso'), +(241500 , 'Naruto' , 'https://www.vinted.es/brand/naruto'), +(7489645 , 'BAPE x Naruto' , 'https://www.vinted.es/brand/bape-x-naruto'), +(52259 , 'Nautica' , 'https://www.vinted.es/brand/nautica'), +(351484 , 'NAUTICAL' , 'https://www.vinted.es/brand/nautical'), +(1649540 , 'nautica compétition' , 'https://www.vinted.es/brand/nautica-competition'), +(14491 , 'Nice Things' , 'https://www.vinted.es/brand/nice-things'), +(202896 , 'North Pole' , 'https://www.vinted.es/brand/north-pole'), +(202354 , 'NORTHWAVE' , 'https://www.vinted.es/brand/northwave'), +(25357 , 'nora.z' , 'https://www.vinted.es/brand/noraz'), +(330679 , 'NORTH' , 'https://www.vinted.es/brand/north'), +(321228 , 'Northville' , 'https://www.vinted.es/brand/northville'), +(6855 , 'North Star' , 'https://www.vinted.es/brand/north-star'), +(268447 , 'Nobody''s Child' , 'https://www.vinted.es/brand/nobodys-child'), +(1493238 , 'nümpf' , 'https://www.vinted.es/brand/numpf'), +(291619 , 'Novalac' , 'https://www.vinted.es/brand/novalac'), +(277320 , 'Novadry' , 'https://www.vinted.es/brand/novadry'), +(364944 , 'Novastar' , 'https://www.vinted.es/brand/novastar'), +(1359 , 'Noa Noa' , 'https://www.vinted.es/brand/noa-noa'), +(259124 , 'Nude' , 'https://www.vinted.es/brand/nude'), +(383497 , 'N°21' , 'https://www.vinted.es/brand/n21'), +(219144 , 'Nutella' , 'https://www.vinted.es/brand/nutella'), +(868784 , 'Nueces' , 'https://www.vinted.es/brand/nueces'), +(486527 , 'Núñez de Arenas' , 'https://www.vinted.es/brand/nunez-de-arenas'), +(1460578 , 'Numeroventidue' , 'https://www.vinted.es/brand/numeroventidue'), +(1649026 , 'Numero 22' , 'https://www.vinted.es/brand/numero-22'), +(479186 , 'Noa Noa Miniature' , 'https://www.vinted.es/brand/noa-noa-miniature'), +(29487 , 'Nocibé' , 'https://www.vinted.es/brand/nocibe'), +(78458 , 'Nicoli' , 'https://www.vinted.es/brand/nicoli'), +(4379 , 'Nicole' , 'https://www.vinted.es/brand/nicole'), +(442216 , 'Nico Nico' , 'https://www.vinted.es/brand/nico-nico'), +(345316 , 'NICOLAS' , 'https://www.vinted.es/brand/nicolas'), +(270556 , 'Nicola Benson' , 'https://www.vinted.es/brand/nicola-benson'), +(282238 , 'Nicolette' , 'https://www.vinted.es/brand/nicolette'), +(310016 , 'Nicole Miller' , 'https://www.vinted.es/brand/nicole-miller'), +(1108014 , 'Nicoletta Fanna' , 'https://www.vinted.es/brand/nicoletta-fanna'), +(183702 , 'Nicole Lee' , 'https://www.vinted.es/brand/nicole-lee'), +(340228 , 'Nico Dingo' , 'https://www.vinted.es/brand/nico-dingo'), +(33275 , 'NFL' , 'https://www.vinted.es/brand/nfl'), +(6559520 , 'Reebok x NFL' , 'https://www.vinted.es/brand/reebok-x-nfl'), +(432704 , 'Never Fully Dressed' , 'https://www.vinted.es/brand/never-fully-dressed'), +(366474 , 'Nfinity' , 'https://www.vinted.es/brand/nfinity'), +(29125 , 'Npo' , 'https://www.vinted.es/brand/npo'), +(275286 , 'NPO Junior' , 'https://www.vinted.es/brand/npo-junior'), +(5498870 , 'Npo Baby' , 'https://www.vinted.es/brand/npo-baby'), +(312774 , 'Npo Casual' , 'https://www.vinted.es/brand/npo-casual'), +(3962326 , 'NPO Kid' , 'https://www.vinted.es/brand/npo-kid'), +(99572 , 'N&P' , 'https://www.vinted.es/brand/np'), +(311479 , 'NPPS' , 'https://www.vinted.es/brand/npps'), +(286053 , 'N&P .79' , 'https://www.vinted.es/brand/np-79'), +(186790 , 'NPW' , 'https://www.vinted.es/brand/npw'), +(693165 , 'N.Peal' , 'https://www.vinted.es/brand/npeal'), +(112 , 'New Man' , 'https://www.vinted.es/brand/new-man'), +(273974 , 'New Mentality' , 'https://www.vinted.es/brand/new-mentality'), +(28137 , 'New Lander' , 'https://www.vinted.es/brand/new-lander'), +(398994 , 'New Fantasy' , 'https://www.vinted.es/brand/new-fantasy'), +(83128 , 'New Men' , 'https://www.vinted.es/brand/new-men'), +(56004 , 'Neiman Marcus' , 'https://www.vinted.es/brand/neiman-marcus'), +(703676 , 'New & Lingwood' , 'https://www.vinted.es/brand/new-lingwood'), +(13485 , 'Nici' , 'https://www.vinted.es/brand/nici'), +(223758 , 'Nini & Girls' , 'https://www.vinted.es/brand/nini-girls'), +(286351 , 'Nicotoy' , 'https://www.vinted.es/brand/nicotoy'), +(567024 , 'Nice & Chic' , 'https://www.vinted.es/brand/nice-chic'), +(1317 , 'NIKITA' , 'https://www.vinted.es/brand/nikita'), +(279776 , 'NICE' , 'https://www.vinted.es/brand/nice'), +(241692 , 'New Born' , 'https://www.vinted.es/brand/new-born'), +(30809 , 'Nivea' , 'https://www.vinted.es/brand/nivea'), +(1801510 , 'Nike x Ambush' , 'https://www.vinted.es/brand/nike-x-ambush'), +(3708181 , 'Nike x Atmos' , 'https://www.vinted.es/brand/nike-x-atmos'), +(6937716 , 'Nike x A-Cold-Wall' , 'https://www.vinted.es/brand/nike-x-a-cold-wall'), +(282143 , 'Navy Paris' , 'https://www.vinted.es/brand/navy-paris'), +(308382 , 'NAVY' , 'https://www.vinted.es/brand/navy'), +(18109 , 'Navyboot' , 'https://www.vinted.es/brand/navyboot'), +(366625 , 'Navystar' , 'https://www.vinted.es/brand/navystar'), +(340551 , 'NAVIGARE' , 'https://www.vinted.es/brand/navigare'), +(468458 , 'Nava' , 'https://www.vinted.es/brand/nava'), +(523849 , 'Navahoo' , 'https://www.vinted.es/brand/navahoo'), +(1032142 , 'Navigazione' , 'https://www.vinted.es/brand/navigazione'), +(2980471 , 'Nayeco' , 'https://www.vinted.es/brand/nayeco'), +(1424900 , 'Nayyar' , 'https://www.vinted.es/brand/nayyar'), +(318118 , 'Neonato' , 'https://www.vinted.es/brand/neonato'), +(40101 , 'Nemo' , 'https://www.vinted.es/brand/nemo'), +(178372 , 'neosoft' , 'https://www.vinted.es/brand/neosoft'), +(23551 , 'Neosens' , 'https://www.vinted.es/brand/neosens'), +(348270 , 'Neo Noir' , 'https://www.vinted.es/brand/neo-noir'), +(432 , 'New Rock' , 'https://www.vinted.es/brand/new-rock'), +(4696246 , 'Nature & Decouvertes' , 'https://www.vinted.es/brand/nature-decouvertes'), +(276239 , 'NUBY' , 'https://www.vinted.es/brand/nuby'), +(264782 , 'Nubikk' , 'https://www.vinted.es/brand/nubikk'), +(6085610 , 'Nubee' , 'https://www.vinted.es/brand/nubee'), +(1952397 , 'NUBU' , 'https://www.vinted.es/brand/nubu'), +(3434996 , 'NuBrilliance' , 'https://www.vinted.es/brand/nubrilliance'), +(3371961 , 'Nübler' , 'https://www.vinted.es/brand/nubler'), +(4148243 , 'Nudyess' , 'https://www.vinted.es/brand/nudyess'), +(81184 , 'Noemié & Co.' , 'https://www.vinted.es/brand/noemie-co'), +(751432 , 'No7' , 'https://www.vinted.es/brand/no7'), +(19549 , 'Nelly' , 'https://www.vinted.es/brand/nelly'), +(404069 , 'Nell & Me' , 'https://www.vinted.es/brand/nell-me'), +(22233 , 'Nell by Sj' , 'https://www.vinted.es/brand/nell-by-sj'), +(544017 , 'Nijntje Miffy' , 'https://www.vinted.es/brand/nijntje-miffy'), +(1118983 , 'No nonsense' , 'https://www.vinted.es/brand/no-nonsense'), +(605670 , 'Nonomo' , 'https://www.vinted.es/brand/nonomo'), +(295929 , 'Nounours' , 'https://www.vinted.es/brand/nounours'), +(281028 , 'nonito kids' , 'https://www.vinted.es/brand/nonito-kids'), +(455393 , 'Non Grada' , 'https://www.vinted.es/brand/non-grada'), +(83 , 'Nothing Else' , 'https://www.vinted.es/brand/nothing-else'), +(279907 , 'Nicce' , 'https://www.vinted.es/brand/nicce'), +(269484 , 'Nicce London' , 'https://www.vinted.es/brand/nicce-london'), +(235124 , 'Nickelson' , 'https://www.vinted.es/brand/nickelson'), +(415110 , 'Nice Girl' , 'https://www.vinted.es/brand/nice-girl'), +(726390 , 'NICETA' , 'https://www.vinted.es/brand/niceta'), +(115236 , 'Nice Day' , 'https://www.vinted.es/brand/nice-day'), +(87530 , 'NLY Trend' , 'https://www.vinted.es/brand/nly-trend'), +(311003 , 'Newco' , 'https://www.vinted.es/brand/newco'), +(165610 , 'New York Yankees' , 'https://www.vinted.es/brand/new-york-yankees'), +(60322 , 'New Caro' , 'https://www.vinted.es/brand/new-caro'), +(717 , 'Nina Ricci' , 'https://www.vinted.es/brand/nina-ricci'), +(427366 , 'Nadadelazos' , 'https://www.vinted.es/brand/nadadelazos'), +(49931 , 'Nadine' , 'https://www.vinted.es/brand/nadine'), +(25077 , 'NA!' , 'https://www.vinted.es/brand/na'), +(2108778 , 'Na! Na! Na! Surprise' , 'https://www.vinted.es/brand/na-na-na-surprise'), +(338682 , 'Nose' , 'https://www.vinted.es/brand/nose'), +(182572 , 'No Secret' , 'https://www.vinted.es/brand/no-secret'), +(89230 , 'No Excess' , 'https://www.vinted.es/brand/no-excess'), +(7227 , 'Noe' , 'https://www.vinted.es/brand/noe'), +(26101 , 'No Fear' , 'https://www.vinted.es/brand/no-fear'), +(394221 , 'Noeser' , 'https://www.vinted.es/brand/noeser'), +(17867 , 'Nina Kalio' , 'https://www.vinted.es/brand/nina-kalio'), +(6975798 , 'No Fear x H&M' , 'https://www.vinted.es/brand/no-fear-x-hm'), +(6893 , 'Nolita' , 'https://www.vinted.es/brand/nolita'), +(6393008 , 'Nolita Pocket' , 'https://www.vinted.es/brand/nolita-pocket'), +(7832542 , 'Nolita de Nimes' , 'https://www.vinted.es/brand/nolita-de-nimes'), +(676804 , 'Novita' , 'https://www.vinted.es/brand/novita'), +(1112788 , 'Noritake' , 'https://www.vinted.es/brand/noritake'), +(174012 , 'Naked' , 'https://www.vinted.es/brand/naked'), +(468786 , 'Naked Wolfe' , 'https://www.vinted.es/brand/naked-wolfe'), +(182028 , 'naked zebra' , 'https://www.vinted.es/brand/naked-zebra'), +(1148437 , 'Naked & Famous Denim' , 'https://www.vinted.es/brand/naked-famous-denim'), +(539601 , 'nakedshirt' , 'https://www.vinted.es/brand/nakedshirt'), +(435316 , 'Naked Wardrobe' , 'https://www.vinted.es/brand/naked-wardrobe'), +(3663229 , 'NAMED collective' , 'https://www.vinted.es/brand/named-collective'), +(7456188 , 'NAKED x adidas Consortium' , 'https://www.vinted.es/brand/naked-x-adidas-consortium'), +(720465 , 'NEMA' , 'https://www.vinted.es/brand/nema'), +(453741 , 'Nekane' , 'https://www.vinted.es/brand/nekane'), +(801093 , 'Neak Peak' , 'https://www.vinted.es/brand/neak-peak'), +(348666 , 'NECA' , 'https://www.vinted.es/brand/neca'), +(7183 , 'NEW AGE' , 'https://www.vinted.es/brand/new-age'), +(308642 , 'Nemonic' , 'https://www.vinted.es/brand/nemonic'), +(341123 , 'Nevada Love' , 'https://www.vinted.es/brand/nevada-love'), +(36977 , 'Nevada' , 'https://www.vinted.es/brand/nevada'), +(4731 , 'Nirvana' , 'https://www.vinted.es/brand/nirvana'), +(96410 , 'Napoli' , 'https://www.vinted.es/brand/napoli'), +(461843 , 'Napoleon' , 'https://www.vinted.es/brand/napoleon'), +(495663 , 'Napoleoni' , 'https://www.vinted.es/brand/napoleoni'), +(87200 , 'Nicole Farhi' , 'https://www.vinted.es/brand/nicole-farhi'), +(285669 , 'NICOLE BENISTI' , 'https://www.vinted.es/brand/nicole-benisti'), +(1983972 , 'NICOLE SALDANA' , 'https://www.vinted.es/brand/nicole-saldana'), +(3068880 , 'Nicole Enea' , 'https://www.vinted.es/brand/nicole-enea'), +(420275 , 'Numero 00' , 'https://www.vinted.es/brand/numero-00'), +(316188 , 'Numero 74' , 'https://www.vinted.es/brand/numero-74'), +(293282 , 'numero 10' , 'https://www.vinted.es/brand/numero-10'), +(348413 , 'Number One' , 'https://www.vinted.es/brand/number-one'), +(1459734 , 'Notbranded' , 'https://www.vinted.es/brand/notbranded'), +(174048 , 'NARS' , 'https://www.vinted.es/brand/nars'), +(484397 , 'Narcos' , 'https://www.vinted.es/brand/narcos'), +(4383 , 'Nais' , 'https://www.vinted.es/brand/nais'), +(169878 , 'Narciso Rodriguez' , 'https://www.vinted.es/brand/narciso-rodriguez'), +(739 , 'Nardelli' , 'https://www.vinted.es/brand/nardelli'), +(446539 , 'Nardini' , 'https://www.vinted.es/brand/nardini'), +(7389493 , 'Champion x New York Yankees' , 'https://www.vinted.es/brand/champion-x-new-york-yankees'), +(294015 , 'Niente' , 'https://www.vinted.es/brand/niente'), +(49345 , 'Nomination' , 'https://www.vinted.es/brand/nomination'), +(396042 , 'Nazzaro' , 'https://www.vinted.es/brand/nazzaro'), +(1417425 , 'NVGTN' , 'https://www.vinted.es/brand/nvgtn'), +(272363 , 'newness' , 'https://www.vinted.es/brand/newness'), +(423307 , 'Newness Baby' , 'https://www.vinted.es/brand/newness-baby'), +(185618 , 'NaaNaa' , 'https://www.vinted.es/brand/naanaa'), +(572723 , 'Naanaa Wang' , 'https://www.vinted.es/brand/naanaa-wang'), +(309694 , 'NOONE' , 'https://www.vinted.es/brand/noone'), +(3286280 , 'No. 1 Como' , 'https://www.vinted.es/brand/no-1-como'), +(1099514 , 'NOON GOONS' , 'https://www.vinted.es/brand/noon-goons'), +(320410 , 'Nancy' , 'https://www.vinted.es/brand/nancy'), +(991219 , 'Nancy Baby' , 'https://www.vinted.es/brand/nancy-baby'), +(2307480 , 'Nancy Gonzalez' , 'https://www.vinted.es/brand/nancy-gonzalez'), +(344526 , 'Nannystate' , 'https://www.vinted.es/brand/nannystate'), +(319609 , 'Nanny' , 'https://www.vinted.es/brand/nanny'), +(384755 , 'Nanny Care' , 'https://www.vinted.es/brand/nanny-care'), +(556352 , 'Neo Baby' , 'https://www.vinted.es/brand/neo-baby'), +(163232 , 'Neon' , 'https://www.vinted.es/brand/neon'), +(95256 , 'Nudie Jeans' , 'https://www.vinted.es/brand/nudie-jeans'), +(136918 , 'Noreva' , 'https://www.vinted.es/brand/noreva'), +(350131 , 'Noreve' , 'https://www.vinted.es/brand/noreve'), +(332765 , 'Nörvik' , 'https://www.vinted.es/brand/norvik'), +(1394540 , 'NOTRE-V' , 'https://www.vinted.es/brand/notre-v'), +(341598 , 'Noret' , 'https://www.vinted.es/brand/noret'), +(973311 , 'North Valley' , 'https://www.vinted.es/brand/north-valley'), +(2709 , 'Nixon' , 'https://www.vinted.es/brand/nixon'), +(18583 , 'Nio Nio' , 'https://www.vinted.es/brand/nio-nio'), +(683469 , 'Nixnut' , 'https://www.vinted.es/brand/nixnut'), +(330032 , 'Nikon' , 'https://www.vinted.es/brand/nikon'), +(331009 , 'NÜ DENMARK' , 'https://www.vinted.es/brand/nu-denmark'), +(3351928 , 'Nude Project' , 'https://www.vinted.es/brand/nude-project'), +(278678 , 'Nudestix' , 'https://www.vinted.es/brand/nudestix'), +(2206616 , 'The Nude Label' , 'https://www.vinted.es/brand/the-nude-label'), +(200518 , 'Nenuco' , 'https://www.vinted.es/brand/nenuco'), +(458966 , 'Natural Life' , 'https://www.vinted.es/brand/natural-life'), +(1922083 , 'Natural Instinct' , 'https://www.vinted.es/brand/natural-instinct'), +(504766 , 'North Wood' , 'https://www.vinted.es/brand/north-wood'), +(222030 , 'Northfield' , 'https://www.vinted.es/brand/northfield'), +(2301773 , 'NeoNail' , 'https://www.vinted.es/brand/neonail'), +(739941 , 'Niebieski Księżyc' , 'https://www.vinted.es/brand/niebieski-ksiezyc'), +(16371 , 'Nature' , 'https://www.vinted.es/brand/nature'), +(85768 , 'Naturel' , 'https://www.vinted.es/brand/naturel'), +(59602 , 'Nature Bijoux' , 'https://www.vinted.es/brand/nature-bijoux'), +(273360 , 'Natura Siberica' , 'https://www.vinted.es/brand/natura-siberica'), +(102318 , 'Nature et Liberté' , 'https://www.vinted.es/brand/nature-et-liberte'), +(390896 , 'Nature Club' , 'https://www.vinted.es/brand/nature-club'), +(580533 , 'NatureBond' , 'https://www.vinted.es/brand/naturebond'), +(531045 , 'Nature''s' , 'https://www.vinted.es/brand/natures'), +(861818 , 'Nature Box' , 'https://www.vinted.es/brand/nature-box'), +(43729 , 'Ness' , 'https://www.vinted.es/brand/ness'), +(993743 , 'Nessi' , 'https://www.vinted.es/brand/nessi'), +(109052 , 'New Saks' , 'https://www.vinted.es/brand/new-saks'), +(302261 , 'Nelson' , 'https://www.vinted.es/brand/nelson'), +(36435 , 'NEW Stone' , 'https://www.vinted.es/brand/new-stone'), +(174846 , 'New Sensation' , 'https://www.vinted.es/brand/new-sensation'), +(1753 , 'New Style' , 'https://www.vinted.es/brand/new-style'), +(289170 , 'Nestlé' , 'https://www.vinted.es/brand/nestle'), +(247860 , 'Nenette' , 'https://www.vinted.es/brand/nenette'), +(5942369 , 'Nowa Era' , 'https://www.vinted.es/brand/nowa-era'), +(66724 , 'Nina Carter' , 'https://www.vinted.es/brand/nina-carter'), +(34471 , 'Naj Oleari' , 'https://www.vinted.es/brand/naj-oleari'), +(44903 , 'Nana' , 'https://www.vinted.es/brand/nana'), +(12601 , 'nana baila' , 'https://www.vinted.es/brand/nana-baila'), +(681948 , 'Nanan' , 'https://www.vinted.es/brand/nanan'), +(58708 , 'Nana Belle' , 'https://www.vinted.es/brand/nana-belle'), +(184608 , 'NANA LOVE' , 'https://www.vinted.es/brand/nana-love'), +(275077 , 'Nanà Nucci' , 'https://www.vinted.es/brand/nana-nucci'), +(1285960 , 'Nanami' , 'https://www.vinted.es/brand/nanami'), +(580477 , 'NANA JUDY' , 'https://www.vinted.es/brand/nana-judy'), +(1188327 , 'Nana-Nana' , 'https://www.vinted.es/brand/nana-nana'), +(206124 , 'Nu Skin' , 'https://www.vinted.es/brand/nu-skin'), +(1998574 , 'nicebrand' , 'https://www.vinted.es/brand/nicebrand'), +(102342 , 'Nice Connection' , 'https://www.vinted.es/brand/nice-connection'), +(322913 , 'Nice Bay' , 'https://www.vinted.es/brand/nice-bay'), +(146812 , 'Nice Size' , 'https://www.vinted.es/brand/nice-size'), +(328678 , 'Noris' , 'https://www.vinted.es/brand/noris'), +(554161 , 'Noris Sfjam' , 'https://www.vinted.es/brand/noris-sfjam'), +(199622 , 'Norse Projects' , 'https://www.vinted.es/brand/norse-projects'), +(52167 , 'Nordstrom' , 'https://www.vinted.es/brand/nordstrom'), +(294670 , 'Nomis' , 'https://www.vinted.es/brand/nomis'), +(210980 , 'Nobis' , 'https://www.vinted.es/brand/nobis'), +(7489660 , 'adidas Consortium x Norse Projects' , 'https://www.vinted.es/brand/adidas-consortium-x-norse-projects'), +(332778 , 'Nijntje' , 'https://www.vinted.es/brand/nijntje'), +(184100 , 'Miffy' , 'https://www.vinted.es/brand/miffy'), +(6339 , 'Nannini' , 'https://www.vinted.es/brand/nannini'), +(29939 , 'Nina' , 'https://www.vinted.es/brand/nina'), +(146584 , 'Nina Kaufmann' , 'https://www.vinted.es/brand/nina-kaufmann'), +(57682 , 'Ninati' , 'https://www.vinted.es/brand/ninati'), +(306644 , 'Nina Leonard' , 'https://www.vinted.es/brand/nina-leonard'), +(194088 , 'New Baby' , 'https://www.vinted.es/brand/new-baby'), +(33455 , 'nife' , 'https://www.vinted.es/brand/nife'), +(168020 , 'Nadine H' , 'https://www.vinted.es/brand/nadine-h'), +(634853 , 'Nadine Merabi' , 'https://www.vinted.es/brand/nadine-merabi'), +(6513424 , 'Naine' , 'https://www.vinted.es/brand/naine'), +(3758407 , 'Naminė Krautuvėlė' , 'https://www.vinted.es/brand/namine-krautuvele'), +(350605 , 'Nini' , 'https://www.vinted.es/brand/nini'), +(326715 , 'NINJA' , 'https://www.vinted.es/brand/ninja'), +(283162 , 'NORDICA' , 'https://www.vinted.es/brand/nordica'), +(1605444 , 'Nordic Pandas' , 'https://www.vinted.es/brand/nordic-pandas'), +(1709009 , 'Nordcap' , 'https://www.vinted.es/brand/nordcap'), +(5067270 , 'Nordicdots' , 'https://www.vinted.es/brand/nordicdots'), +(3367253 , 'Nordic Socks' , 'https://www.vinted.es/brand/nordic-socks'), +(183008 , 'Nali' , 'https://www.vinted.es/brand/nali'), +(264870 , 'Nalini' , 'https://www.vinted.es/brand/nalini'), +(647210 , 'NABILA' , 'https://www.vinted.es/brand/nabila'), +(320155 , 'National Geographic' , 'https://www.vinted.es/brand/national-geographic'), +(98772 , 'Native youth' , 'https://www.vinted.es/brand/native-youth'), +(296514 , 'Nania' , 'https://www.vinted.es/brand/nania'), +(32909 , 'Native' , 'https://www.vinted.es/brand/native'), +(318762 , 'NATURE PLANET' , 'https://www.vinted.es/brand/nature-planet'), +(7320047 , 'Vans x National Geographic' , 'https://www.vinted.es/brand/vans-x-national-geographic'), +(694758 , 'Nordblanc' , 'https://www.vinted.es/brand/nordblanc'), +(237944 , 'Nakamura' , 'https://www.vinted.es/brand/nakamura'), +(6064504 , 'Nensi Dojaka' , 'https://www.vinted.es/brand/nensi-dojaka'), +(1370451 , 'Nescior' , 'https://www.vinted.es/brand/nescior'), +(7804377 , 'Nešk Idėja' , 'https://www.vinted.es/brand/nesk-ideja'), +(189516 , 'NAIL ART' , 'https://www.vinted.es/brand/nail-art'), +(157478 , 'Nail' , 'https://www.vinted.es/brand/nail'), +(176252 , 'nailmatic' , 'https://www.vinted.es/brand/nailmatic'), +(174040 , 'Nails inc' , 'https://www.vinted.es/brand/nails-inc'), +(402353 , 'Nails Company' , 'https://www.vinted.es/brand/nails-company'), +(1914258 , 'Nailwind' , 'https://www.vinted.es/brand/nailwind'), +(1493400 , 'NAIL TEK' , 'https://www.vinted.es/brand/nail-tek'), +(6807189 , 'Nailmatic Kids' , 'https://www.vinted.es/brand/nailmatic-kids'), +(361950 , 'Numoco' , 'https://www.vinted.es/brand/numoco'), +(510206 , 'Nielsson' , 'https://www.vinted.es/brand/nielsson'), +(1090012 , 'New Girl Order' , 'https://www.vinted.es/brand/new-girl-order'), +(1935468 , 'Naice Couture' , 'https://www.vinted.es/brand/naice-couture'), +(319321 , 'Naïf' , 'https://www.vinted.es/brand/naif'), +(4696252 , 'Noemie L' , 'https://www.vinted.es/brand/noemie-l'), +(343430 , 'Noemi Kent' , 'https://www.vinted.es/brand/noemi-kent'), +(381022 , 'Naumy' , 'https://www.vinted.es/brand/naumy'), +(6852475 , 'Nera Pantelleria' , 'https://www.vinted.es/brand/nera-pantelleria'), +(390715 , 'Nebbia' , 'https://www.vinted.es/brand/nebbia'), +(530935 , 'natini' , 'https://www.vinted.es/brand/natini'), +(240900 , 'Natalia Blanco' , 'https://www.vinted.es/brand/natalia-blanco'), +(31001 , 'Newplay' , 'https://www.vinted.es/brand/newplay'), +(608364 , 'Necix''s' , 'https://www.vinted.es/brand/necixs'), +(285990 , 'Name' , 'https://www.vinted.es/brand/name'), +(171482 , 'Nameless' , 'https://www.vinted.es/brand/nameless'), +(2961350 , 'Naheva' , 'https://www.vinted.es/brand/naheva'), +(471793 , 'Naëlle' , 'https://www.vinted.es/brand/naelle'), +(93698 , 'namaste' , 'https://www.vinted.es/brand/namaste'), +(106956 , 'Nobody' , 'https://www.vinted.es/brand/nobody'), +(117102 , 'No Box' , 'https://www.vinted.es/brand/no-box'), +(471725 , 'Nobo' , 'https://www.vinted.es/brand/nobo'), +(362123 , 'NOBODY DENIM' , 'https://www.vinted.es/brand/nobody-denim'), +(221522 , 'NOZONE' , 'https://www.vinted.es/brand/nozone'), +(345440 , 'Noose & Monkey' , 'https://www.vinted.es/brand/noose-monkey'), +(215024 , 'Naoko' , 'https://www.vinted.es/brand/naoko'), +(77452 , 'Narkotic' , 'https://www.vinted.es/brand/narkotic'), +(3087059 , 'Nakko' , 'https://www.vinted.es/brand/nakko'), +(52863 , 'Niza' , 'https://www.vinted.es/brand/niza'), +(348212 , 'Niama Woman' , 'https://www.vinted.es/brand/niama-woman'), +(323393 , 'Nila & Nila' , 'https://www.vinted.es/brand/nila-nila'), +(1919923 , 'Nevin' , 'https://www.vinted.es/brand/nevin'), +(90844 , 'nevica' , 'https://www.vinted.es/brand/nevica'), +(809442 , 'New in Town' , 'https://www.vinted.es/brand/new-in-town'), +(275860 , 'Nespresso' , 'https://www.vinted.es/brand/nespresso'), +(377129 , 'Nuvita' , 'https://www.vinted.es/brand/nuvita'), +(184282 , 'Neil Barrett' , 'https://www.vinted.es/brand/neil-barrett'), +(3058722 , 'Neil Barrett Kids' , 'https://www.vinted.es/brand/neil-barrett-kids'), +(7162297 , 'Puma x Neil Barrett' , 'https://www.vinted.es/brand/puma-x-neil-barrett'), +(50721 , 'Notthesame' , 'https://www.vinted.es/brand/notthesame'), +(217380 , 'New Penny' , 'https://www.vinted.es/brand/new-penny'), +(471562 , 'New Style Italy' , 'https://www.vinted.es/brand/new-style-italy'), +(422265 , 'NOR-BI' , 'https://www.vinted.es/brand/nor-bi'), +(29075 , 'NITYA' , 'https://www.vinted.es/brand/nitya'), +(874230 , 'Niyama Sol' , 'https://www.vinted.es/brand/niyama-sol'), +(100754 , 'Neon Rose' , 'https://www.vinted.es/brand/neon-rose'), +(283603 , 'Ninni Vi' , 'https://www.vinted.es/brand/ninni-vi'), +(13347 , 'Orchestra' , 'https://www.vinted.es/brand/orchestra'), +(7163883 , 'Orchestra bébé' , 'https://www.vinted.es/brand/orchestra-bebe'), +(1308133 , 'Ohne' , 'https://www.vinted.es/brand/ohne'), +(580031 , 'Oh yeah' , 'https://www.vinted.es/brand/oh-yeah'), +(571 , 'Okaïdi' , 'https://www.vinted.es/brand/okaidi'), +(100 , 'ONLY' , 'https://www.vinted.es/brand/only'), +(4694046 , 'ONLY & SONS' , 'https://www.vinted.es/brand/only-sons'), +(57110 , 'Only Play' , 'https://www.vinted.es/brand/only-play'), +(47823 , 'Only One' , 'https://www.vinted.es/brand/only-one'), +(5989967 , 'Only Fashion' , 'https://www.vinted.es/brand/only-fashion'), +(526618 , 'ONLY Carmakoma' , 'https://www.vinted.es/brand/only-carmakoma'), +(155074 , 'Only You' , 'https://www.vinted.es/brand/only-you'), +(49519 , 'Only U' , 'https://www.vinted.es/brand/only-u'), +(10935 , 'Only Jeans' , 'https://www.vinted.es/brand/only-jeans'), +(5576310 , 'Only maternity' , 'https://www.vinted.es/brand/only-maternity'), +(174100 , 'Obaïbi' , 'https://www.vinted.es/brand/obaibi'), +(297 , 'ORSAY' , 'https://www.vinted.es/brand/orsay'), +(284372 , 'Orsey' , 'https://www.vinted.es/brand/orsey'), +(1493377 , 'Orasy' , 'https://www.vinted.es/brand/orasy'), +(7651 , 'OVS' , 'https://www.vinted.es/brand/ovs'), +(1742705 , 'OVS Kids' , 'https://www.vinted.es/brand/ovs-kids'), +(322198 , 'Overkids' , 'https://www.vinted.es/brand/overkids'), +(39195 , 'OverGame' , 'https://www.vinted.es/brand/overgame'), +(40651 , 'Ovyé' , 'https://www.vinted.es/brand/ovye'), +(663244 , 'Over-D' , 'https://www.vinted.es/brand/over-d'), +(385498 , 'OVERWATCH' , 'https://www.vinted.es/brand/overwatch'), +(344010 , 'Overland' , 'https://www.vinted.es/brand/overland'), +(289619 , 'Over 16' , 'https://www.vinted.es/brand/over-16'), +(1795903 , 'Ovks' , 'https://www.vinted.es/brand/ovks'), +(23495 , 'Original Marines' , 'https://www.vinted.es/brand/original-marines'), +(4947 , 'Oasis' , 'https://www.vinted.es/brand/oasis'), +(698842 , 'Oasi' , 'https://www.vinted.es/brand/oasi'), +(402724 , 'Oh Polly' , 'https://www.vinted.es/brand/oh-polly'), +(354 , 'Oysho' , 'https://www.vinted.es/brand/oysho'), +(4325 , 'O''Neill' , 'https://www.vinted.es/brand/oneill'), +(338957 , 'O’Neills' , 'https://www.vinted.es/brand/oneills'), +(5677 , 'O''Neil' , 'https://www.vinted.es/brand/oneil'), +(1987 , 'One step' , 'https://www.vinted.es/brand/one-step'), +(5793428 , 'One Step Up' , 'https://www.vinted.es/brand/one-step-up'), +(227 , 'Oxbow' , 'https://www.vinted.es/brand/oxbow'), +(4045 , 'Old Navy' , 'https://www.vinted.es/brand/old-navy'), +(500564 , 'Oceans Apart' , 'https://www.vinted.es/brand/oceans-apart'), +(38289 , 'Okay' , 'https://www.vinted.es/brand/okay'), +(104862 , 'Okeysi' , 'https://www.vinted.es/brand/okeysi'), +(5675 , 'o.ka.ou' , 'https://www.vinted.es/brand/okaou'), +(4899 , 'okanagan' , 'https://www.vinted.es/brand/okanagan'), +(775739 , 'OkaaSpain' , 'https://www.vinted.es/brand/okaaspain'), +(227946 , 'OKY-COKY' , 'https://www.vinted.es/brand/oky-coky'), +(682718 , 'Okaa' , 'https://www.vinted.es/brand/okaa'), +(510976 , 'OKY' , 'https://www.vinted.es/brand/oky'), +(278936 , 'Okapi' , 'https://www.vinted.es/brand/okapi'), +(109360 , 'OPUS' , 'https://www.vinted.es/brand/opus'), +(905755 , 'OPSobjects' , 'https://www.vinted.es/brand/opsobjects'), +(4771 , 'Opullence' , 'https://www.vinted.es/brand/opullence'), +(5962211 , 'Ops' , 'https://www.vinted.es/brand/ops'), +(219404 , 'Opsial' , 'https://www.vinted.es/brand/opsial'), +(221736 , 'Oppus' , 'https://www.vinted.es/brand/oppus'), +(324829 , 'O Bag' , 'https://www.vinted.es/brand/o-bag'), +(291901 , 'Oball' , 'https://www.vinted.es/brand/oball'), +(620010 , 'Obakki' , 'https://www.vinted.es/brand/obakki'), +(12011 , 'Object' , 'https://www.vinted.es/brand/object'), +(6105085 , 'Object Petite' , 'https://www.vinted.es/brand/object-petite'), +(6901908 , 'Object Tall' , 'https://www.vinted.es/brand/object-tall'), +(173850 , 'Oxelo' , 'https://www.vinted.es/brand/oxelo'), +(7612186 , 'Oxcloth' , 'https://www.vinted.es/brand/oxcloth'), +(114518 , 'Oltre' , 'https://www.vinted.es/brand/oltre'), +(360898 , 'OltreModo' , 'https://www.vinted.es/brand/oltremodo'), +(413011 , 'Old Trend' , 'https://www.vinted.es/brand/old-trend'), +(28647 , 'Oxylane' , 'https://www.vinted.es/brand/oxylane'), +(170880 , 'Off-White' , 'https://www.vinted.es/brand/off-white'), +(6005897 , 'Converse x Off-White' , 'https://www.vinted.es/brand/converse-x-off-white'), +(7489666 , 'Off-White x Vlone' , 'https://www.vinted.es/brand/off-white-x-vlone'), +(6198238 , 'Off-White × Undercover' , 'https://www.vinted.es/brand/off-white-x-undercover'), +(7397736 , 'Off-White x Stüssy' , 'https://www.vinted.es/brand/off-white-x-stussy'), +(58418 , 'Of White' , 'https://www.vinted.es/brand/of-white'), +(4347 , 'OFFICE' , 'https://www.vinted.es/brand/office'), +(20269 , 'Office London' , 'https://www.vinted.es/brand/office-london'), +(12855 , 'OFFICIAL US. MARSHALL' , 'https://www.vinted.es/brand/official-us-marshall'), +(696027 , 'Officina36' , 'https://www.vinted.es/brand/officina36'), +(311071 , 'Official' , 'https://www.vinted.es/brand/official'), +(141152 , 'L''Officina Della Moda' , 'https://www.vinted.es/brand/lofficina-della-moda'), +(229248 , 'OFFICIAL NEW YORK' , 'https://www.vinted.es/brand/official-new-york'), +(270536 , 'Officine Creative' , 'https://www.vinted.es/brand/officine-creative'), +(4090635 , 'Officina Naturae' , 'https://www.vinted.es/brand/officina-naturae'), +(1320706 , 'Officine Panerai' , 'https://www.vinted.es/brand/officine-panerai'), +(2069 , 'Obey' , 'https://www.vinted.es/brand/obey'), +(6591230 , 'OBEY Clothing' , 'https://www.vinted.es/brand/obey-clothing'), +(7688056 , 'obey worldwide' , 'https://www.vinted.es/brand/obey-worldwide'), +(8805 , 'Ober' , 'https://www.vinted.es/brand/ober'), +(123604 , 'oberthur' , 'https://www.vinted.es/brand/oberthur'), +(310966 , 'ober jeans' , 'https://www.vinted.es/brand/ober-jeans'), +(678642 , 'Obermeyer' , 'https://www.vinted.es/brand/obermeyer'), +(245470 , 'Oben' , 'https://www.vinted.es/brand/oben'), +(3198264 , 'Obersee' , 'https://www.vinted.es/brand/obersee'), +(182942 , 'Oxybul' , 'https://www.vinted.es/brand/oxybul'), +(59190 , 'OWK' , 'https://www.vinted.es/brand/owk'), +(182292 , 'Own' , 'https://www.vinted.es/brand/own'), +(485084 , 'OWN THE STREETS' , 'https://www.vinted.es/brand/own-the-streets'), +(483961 , 'Owl' , 'https://www.vinted.es/brand/owl'), +(263646 , 'Owind' , 'https://www.vinted.es/brand/owind'), +(617980 , 'Owlcrate' , 'https://www.vinted.es/brand/owlcrate'), +(4981107 , 'ow collection' , 'https://www.vinted.es/brand/ow-collection'), +(1194041 , 'OW Intimates' , 'https://www.vinted.es/brand/ow-intimates'), +(529376 , 'Owlet' , 'https://www.vinted.es/brand/owlet'), +(8843781 , 'Own. Denim' , 'https://www.vinted.es/brand/own-denim'), +(187384 , 'Oriflame' , 'https://www.vinted.es/brand/oriflame'), +(174994 , 'Oshkosh' , 'https://www.vinted.es/brand/oshkosh'), +(792412 , 'Otra' , 'https://www.vinted.es/brand/otra'), +(834480 , 'Otra cosa mariposa' , 'https://www.vinted.es/brand/otra-cosa-mariposa'), +(2691812 , 'Otravez' , 'https://www.vinted.es/brand/otravez'), +(560049 , 'Otre' , 'https://www.vinted.es/brand/otre'), +(202562 , 'OTTAVIANI' , 'https://www.vinted.es/brand/ottaviani'), +(171820 , 'OTAGO' , 'https://www.vinted.es/brand/otago'), +(414011 , 'Otazu' , 'https://www.vinted.es/brand/otazu'), +(21897 , 'OTW' , 'https://www.vinted.es/brand/otw'), +(63392 , 'Otaku' , 'https://www.vinted.es/brand/otaku'), +(204868 , 'OTW Athletic' , 'https://www.vinted.es/brand/otw-athletic'), +(422441 , 'Olaian' , 'https://www.vinted.es/brand/olaian'), +(523032 , 'Oli & Carol' , 'https://www.vinted.es/brand/oli-carol'), +(13197 , 'Oakley' , 'https://www.vinted.es/brand/oakley'), +(5569523 , 'Oakley x Samuel Ross' , 'https://www.vinted.es/brand/oakley-x-samuel-ross'), +(6414907 , 'Oakley x Highsnobiety' , 'https://www.vinted.es/brand/oakley-x-highsnobiety'), +(105152 , 'Oliver' , 'https://www.vinted.es/brand/oliver'), +(45205 , 'Oliver Grant' , 'https://www.vinted.es/brand/oliver-grant'), +(339561 , 'Oliver Bonas' , 'https://www.vinted.es/brand/oliver-bonas'), +(201966 , 'Oliver Jung' , 'https://www.vinted.es/brand/oliver-jung'), +(90006 , 'Oliver Peoples' , 'https://www.vinted.es/brand/oliver-peoples'), +(275096 , 'Oliver Weber' , 'https://www.vinted.es/brand/oliver-weber'), +(379288 , 'Oliver Spencer' , 'https://www.vinted.es/brand/oliver-spencer'), +(362438 , 'Oliver Goldsmith' , 'https://www.vinted.es/brand/oliver-goldsmith'), +(320226 , 'Oliver Sweeney' , 'https://www.vinted.es/brand/oliver-sweeney'), +(1574853 , 'Oliver Cabell' , 'https://www.vinted.es/brand/oliver-cabell'), +(403075 , 'Poem By Oliver Bonas' , 'https://www.vinted.es/brand/poem-by-oliver-bonas'), +(6389 , 'OAKWOOD' , 'https://www.vinted.es/brand/oakwood'), +(173664 , 'Outfit' , 'https://www.vinted.es/brand/outfit'), +(4575 , 'Outfitters Nation' , 'https://www.vinted.es/brand/outfitters-nation'), +(122148 , 'OutfitBook' , 'https://www.vinted.es/brand/outfitbook'), +(485322 , 'Outfitter' , 'https://www.vinted.es/brand/outfitter'), +(364333 , 'Outfit Classic' , 'https://www.vinted.es/brand/outfit-classic'), +(348360 , 'Outfit Fashion' , 'https://www.vinted.es/brand/outfit-fashion'), +(89766 , 'OnePiece' , 'https://www.vinted.es/brand/onepiece'), +(141126 , 'ORO' , 'https://www.vinted.es/brand/oro'), +(3425007 , 'Orologio' , 'https://www.vinted.es/brand/orologio'), +(455702 , 'OROBLU' , 'https://www.vinted.es/brand/oroblu'), +(316469 , 'oro vivo' , 'https://www.vinted.es/brand/oro-vivo'), +(174818 , 'Orofluido' , 'https://www.vinted.es/brand/orofluido'), +(986006 , 'Oroks' , 'https://www.vinted.es/brand/oroks'), +(3365500 , 'orolino' , 'https://www.vinted.es/brand/orolino'), +(54037 , 'Olympique Lyonnais' , 'https://www.vinted.es/brand/olympique-lyonnais'), +(225122 , 'Olymp' , 'https://www.vinted.es/brand/olymp'), +(270451 , 'Olympia' , 'https://www.vinted.es/brand/olympia'), +(296216 , 'Olympic' , 'https://www.vinted.es/brand/olympic'), +(349574 , 'Olympus' , 'https://www.vinted.es/brand/olympus'), +(338080 , 'Olymp Luxor' , 'https://www.vinted.es/brand/olymp-luxor'), +(6106951 , 'OLYMP LEVEL Five' , 'https://www.vinted.es/brand/olymp-level-five'), +(2911766 , 'Olympiacos' , 'https://www.vinted.es/brand/olympiacos'), +(1493276 , 'Olymp & Hades' , 'https://www.vinted.es/brand/olymp-hades'), +(69186 , 'Orange' , 'https://www.vinted.es/brand/orange'), +(1028952 , 'Orange Stars' , 'https://www.vinted.es/brand/orange-stars'), +(92212 , 'Orange D''or' , 'https://www.vinted.es/brand/orange-dor'), +(691271 , 'Orange Tree Toys' , 'https://www.vinted.es/brand/orange-tree-toys'), +(5599524 , 'Orange Culture' , 'https://www.vinted.es/brand/orange-culture'), +(5752806 , 'Orange Duke' , 'https://www.vinted.es/brand/orange-duke'), +(41177 , 'orage' , 'https://www.vinted.es/brand/orage'), +(255016 , 'Orangina' , 'https://www.vinted.es/brand/orangina'), +(1021146 , 'O''la Voga' , 'https://www.vinted.es/brand/ola-voga'), +(128000 , 'Oui' , 'https://www.vinted.es/brand/oui'), +(8310864 , 'Oui-Oui' , 'https://www.vinted.es/brand/oui-oui'), +(331991 , 'Oui Moments' , 'https://www.vinted.es/brand/oui-moments'), +(291283 , 'Oui Set' , 'https://www.vinted.es/brand/oui-set'), +(4613177 , 'OUI SET COLLECTION' , 'https://www.vinted.es/brand/oui-set-collection'), +(57258 , 'Outerwear' , 'https://www.vinted.es/brand/outerwear'), +(287615 , 'Ouaps' , 'https://www.vinted.es/brand/ouaps'), +(24447 , 'Oilily' , 'https://www.vinted.es/brand/oilily'), +(20191 , 'oodji' , 'https://www.vinted.es/brand/oodji'), +(3293437 , 'The Oodie' , 'https://www.vinted.es/brand/the-oodie'), +(418557 , 'Orsolino' , 'https://www.vinted.es/brand/orsolino'), +(159966 , 'Ochnik' , 'https://www.vinted.es/brand/ochnik'), +(12703 , 'Olly Gan' , 'https://www.vinted.es/brand/olly-gan'), +(26843 , 'Odlo' , 'https://www.vinted.es/brand/odlo'), +(32465 , 'Odeon' , 'https://www.vinted.es/brand/odeon'), +(3862721 , 'Odolls' , 'https://www.vinted.es/brand/odolls'), +(1422457 , 'Odilon' , 'https://www.vinted.es/brand/odilon'), +(4053575 , 'Odos Guru' , 'https://www.vinted.es/brand/odos-guru'), +(3138443 , 'Odoro' , 'https://www.vinted.es/brand/odoro'), +(32797 , 'Oxford' , 'https://www.vinted.es/brand/oxford'), +(265621 , 'Oxford University' , 'https://www.vinted.es/brand/oxford-university'), +(81900 , 'Oxford Street' , 'https://www.vinted.es/brand/oxford-street'), +(70330 , 'Olsen' , 'https://www.vinted.es/brand/olsen'), +(1094745 , 'Olsenboye' , 'https://www.vinted.es/brand/olsenboye'), +(275645 , 'Old England' , 'https://www.vinted.es/brand/old-england'), +(7674240 , 'Olenka Didyk Ethnic Studio' , 'https://www.vinted.es/brand/olenka-didyk-ethnic-studio'), +(2499 , 'Onado' , 'https://www.vinted.es/brand/onado'), +(17891 , 'Onado Jeans' , 'https://www.vinted.es/brand/onado-jeans'), +(379038 , 'Onako' , 'https://www.vinted.es/brand/onako'), +(16343 , 'Ocean Club' , 'https://www.vinted.es/brand/ocean-club'), +(5147 , 'Orcelly' , 'https://www.vinted.es/brand/orcelly'), +(2131 , 'Osley' , 'https://www.vinted.es/brand/osley'), +(70452 , 'OSEY' , 'https://www.vinted.es/brand/osey'), +(127970 , 'ONYX' , 'https://www.vinted.es/brand/onyx'), +(293014 , 'on you' , 'https://www.vinted.es/brand/on-you'), +(575788 , 'Onix' , 'https://www.vinted.es/brand/onix'), +(846265 , 'ONE X ONETEASPOON' , 'https://www.vinted.es/brand/one-x-oneteaspoon'), +(353580 , 'ONYGO' , 'https://www.vinted.es/brand/onygo'), +(1445958 , 'Onex' , 'https://www.vinted.es/brand/onex'), +(56798 , 'One Love' , 'https://www.vinted.es/brand/one-love'), +(1010753 , 'one love denim' , 'https://www.vinted.es/brand/one-love-denim'), +(47219 , 'ooxoo' , 'https://www.vinted.es/brand/ooxoo'), +(51089 , 'Oozoo' , 'https://www.vinted.es/brand/oozoo'), +(209658 , 'Octopus' , 'https://www.vinted.es/brand/octopus'), +(309284 , 'Olaplex' , 'https://www.vinted.es/brand/olaplex'), +(273287 , 'october' , 'https://www.vinted.es/brand/october'), +(148564 , 'OVO' , 'https://www.vinted.es/brand/ovo'), +(285081 , 'OCTOBER''S VERY OWN' , 'https://www.vinted.es/brand/octobers-very-own'), +(469029 , 'Octobre Editions' , 'https://www.vinted.es/brand/octobre-editions'), +(3087 , 'OPI' , 'https://www.vinted.es/brand/opi'), +(3549 , 'Opio' , 'https://www.vinted.es/brand/opio'), +(348946 , 'Opium' , 'https://www.vinted.es/brand/opium'), +(48511 , 'opia' , 'https://www.vinted.es/brand/opia'), +(464481 , 'OPILILAI' , 'https://www.vinted.es/brand/opililai'), +(7801138 , 'OPI GelColor' , 'https://www.vinted.es/brand/opi-gelcolor'), +(3874616 , 'Opificio Emiliano' , 'https://www.vinted.es/brand/opificio-emiliano'), +(301297 , 'Osprey' , 'https://www.vinted.es/brand/osprey'), +(359373 , 'Osprey London' , 'https://www.vinted.es/brand/osprey-london'), +(55299 , 'ottod''Ame' , 'https://www.vinted.es/brand/ottodame'), +(173068 , 'One by Gémo' , 'https://www.vinted.es/brand/one-by-gemo'), +(26195 , 'One' , 'https://www.vinted.es/brand/one'), +(304401 , 'one by one' , 'https://www.vinted.es/brand/one-by-one'), +(3191 , 'One Direction' , 'https://www.vinted.es/brand/one-direction'), +(676413 , 'One Two Fun' , 'https://www.vinted.es/brand/one-two-fun'), +(301930 , 'Oneal' , 'https://www.vinted.es/brand/oneal'), +(5419432 , 'Otrera Beauty' , 'https://www.vinted.es/brand/otrera-beauty'), +(5426817 , 'Otrera' , 'https://www.vinted.es/brand/otrera'), +(267935 , 'OtterBox' , 'https://www.vinted.es/brand/otterbox'), +(499544 , 'Others follow' , 'https://www.vinted.es/brand/others-follow'), +(1229958 , 'Othertees' , 'https://www.vinted.es/brand/othertees'), +(267947 , 'On Running' , 'https://www.vinted.es/brand/on-running'), +(97494 , 'One Size' , 'https://www.vinted.es/brand/one-size'), +(1294330 , 'Onesies' , 'https://www.vinted.es/brand/onesies'), +(455495 , 'Odenwälder' , 'https://www.vinted.es/brand/odenwalder'), +(222078 , 'Opera' , 'https://www.vinted.es/brand/opera'), +(107366 , 'op' , 'https://www.vinted.es/brand/op'), +(441470 , 'OPPO' , 'https://www.vinted.es/brand/oppo'), +(28237 , 'opale' , 'https://www.vinted.es/brand/opale'), +(333675 , 'Orchard Toys' , 'https://www.vinted.es/brand/orchard-toys'), +(7431 , 'Olivier Strelli' , 'https://www.vinted.es/brand/olivier-strelli'), +(3079408 , 'Oner Active' , 'https://www.vinted.es/brand/oner-active'), +(314630 , 'OUTDOOR' , 'https://www.vinted.es/brand/outdoor'), +(507717 , 'Outdoor Research' , 'https://www.vinted.es/brand/outdoor-research'), +(25099 , 'Odd Molly' , 'https://www.vinted.es/brand/odd-molly'), +(33863 , 'Onitsuka Tiger' , 'https://www.vinted.es/brand/onitsuka-tiger'), +(26601 , 'On The Town' , 'https://www.vinted.es/brand/on-the-town'), +(75030 , 'Orfeo' , 'https://www.vinted.es/brand/orfeo'), +(3417 , 'ORFEO NEGRO' , 'https://www.vinted.es/brand/orfeo-negro'), +(267976 , 'Orfeo Paris' , 'https://www.vinted.es/brand/orfeo-paris'), +(201960 , 'Oreo' , 'https://www.vinted.es/brand/oreo'), +(3480495 , 'OpéraSPORT' , 'https://www.vinted.es/brand/operasport'), +(52409 , 'Otto' , 'https://www.vinted.es/brand/otto'), +(221118 , 'Otto Kern' , 'https://www.vinted.es/brand/otto-kern'), +(1542420 , 'OttOmobile' , 'https://www.vinted.es/brand/ottomobile'), +(2443790 , 'OTTOLINGER' , 'https://www.vinted.es/brand/ottolinger'), +(6106005 , 'Otto + Ivy' , 'https://www.vinted.es/brand/otto-ivy'), +(294655 , 'Ottimo' , 'https://www.vinted.es/brand/ottimo'), +(143882 , 'OTTAWA' , 'https://www.vinted.es/brand/ottawa'), +(194842 , 'Omega' , 'https://www.vinted.es/brand/omega'), +(7467552 , 'Omega x Swatch' , 'https://www.vinted.es/brand/omega-x-swatch'), +(106392 , 'O''kids' , 'https://www.vinted.es/brand/okids'), +(435189 , 'Outhorn' , 'https://www.vinted.es/brand/outhorn'), +(110474 , 'Obsel' , 'https://www.vinted.es/brand/obsel'), +(3035 , 'Obsessive' , 'https://www.vinted.es/brand/obsessive'), +(6397 , 'Obsession' , 'https://www.vinted.es/brand/obsession'), +(10319 , 'Original' , 'https://www.vinted.es/brand/original'), +(240384 , 'original vintage' , 'https://www.vinted.es/brand/original-vintage'), +(72104 , 'Originals' , 'https://www.vinted.es/brand/originals'), +(46829 , 'Original Ado' , 'https://www.vinted.es/brand/original-ado'), +(144454 , 'Original wear' , 'https://www.vinted.es/brand/original-wear'), +(281841 , 'Original Trend' , 'https://www.vinted.es/brand/original-trend'), +(299687 , 'The Original Brand' , 'https://www.vinted.es/brand/original-brand'), +(168746 , 'Original Penguin' , 'https://www.vinted.es/brand/original-penguin'), +(93274 , 'OÔRA' , 'https://www.vinted.es/brand/oora'), +(15059 , 'oh my love' , 'https://www.vinted.es/brand/oh-my-love'), +(180838 , 'Oliphil' , 'https://www.vinted.es/brand/oliphil'), +(3366498 , 'Oace' , 'https://www.vinted.es/brand/oace'), +(155612 , 'Oak & Fort' , 'https://www.vinted.es/brand/oak-fort'), +(6918022 , 'Oake' , 'https://www.vinted.es/brand/oake'), +(148464 , 'OMG' , 'https://www.vinted.es/brand/omg'), +(127006 , 'Omai' , 'https://www.vinted.es/brand/omai'), +(30597 , 'Omoda' , 'https://www.vinted.es/brand/omoda'), +(331433 , 'omsa' , 'https://www.vinted.es/brand/omsa'), +(138704 , 'Ombelle' , 'https://www.vinted.es/brand/ombelle'), +(68836 , 'O''Moda Libra Pop' , 'https://www.vinted.es/brand/omoda-libra-pop'), +(195390 , 'Omonsim' , 'https://www.vinted.es/brand/omonsim'), +(546382 , 'Our Generation' , 'https://www.vinted.es/brand/our-generation'), +(282503 , 'Omar Piragino' , 'https://www.vinted.es/brand/omar-piragino'), +(432636 , 'Omini' , 'https://www.vinted.es/brand/omini'), +(794615 , 'OMNIA' , 'https://www.vinted.es/brand/omnia'), +(161956 , 'OMIGHTY' , 'https://www.vinted.es/brand/omighty'), +(532694 , 'Omax' , 'https://www.vinted.es/brand/omax'), +(517330 , 'OMNIBUS' , 'https://www.vinted.es/brand/omnibus'), +(7620522 , 'Omniawear' , 'https://www.vinted.es/brand/omniawear'), +(3880992 , 'oma the label' , 'https://www.vinted.es/brand/oma-the-label'), +(317299 , 'Okbaby' , 'https://www.vinted.es/brand/okbaby'), +(13353 , 'Orcanta' , 'https://www.vinted.es/brand/orcanta'), +(603116 , 'Osaga' , 'https://www.vinted.es/brand/osaga'), +(319688 , 'Osaka' , 'https://www.vinted.es/brand/osaka'), +(316743 , 'Ots' , 'https://www.vinted.es/brand/ots'), +(202670 , 'Ötzi' , 'https://www.vinted.es/brand/otzi'), +(136794 , 'Orla Kiely' , 'https://www.vinted.es/brand/orla-kiely'), +(6296775 , 'Orla Kiely X Uniqlo' , 'https://www.vinted.es/brand/orla-kiely-x-uniqlo'), +(362622 , 'Ongle24' , 'https://www.vinted.es/brand/ongle24'), +(379675 , 'Ombre' , 'https://www.vinted.es/brand/ombre'), +(184162 , 'Original Shearling' , 'https://www.vinted.es/brand/original-shearling'), +(820102 , 'Original Source' , 'https://www.vinted.es/brand/original-source'), +(1104407 , 'Original Steindl' , 'https://www.vinted.es/brand/original-steindl'), +(270377 , 'Olang' , 'https://www.vinted.es/brand/olang'), +(182636 , 'O Lingerie' , 'https://www.vinted.es/brand/o-lingerie'), +(322478 , 'Open' , 'https://www.vinted.es/brand/open'), +(244796 , 'Openfield' , 'https://www.vinted.es/brand/openfield'), +(170102 , 'Opening Ceremony' , 'https://www.vinted.es/brand/opening-ceremony'), +(315608 , 'Open End' , 'https://www.vinted.es/brand/open-end'), +(7087159 , 'adidas X Opening Ceremony' , 'https://www.vinted.es/brand/adidas-x-opening-ceremony'), +(32491 , 'Opex' , 'https://www.vinted.es/brand/opex'), +(309223 , 'Opel' , 'https://www.vinted.es/brand/opel'), +(13335 , 'On n''est pas des anges' , 'https://www.vinted.es/brand/on-nest-pas-des-anges'), +(21319 , 'On parle de Vous' , 'https://www.vinted.es/brand/on-parle-de-vous'), +(43255 , 'OXXO' , 'https://www.vinted.es/brand/oxxo'), +(2605 , 'OXMO' , 'https://www.vinted.es/brand/oxmo'), +(195264 , 'Oxmox' , 'https://www.vinted.es/brand/oxmox'), +(4057 , 'Oxxyzen' , 'https://www.vinted.es/brand/oxxyzen'), +(20791 , 'OXXY' , 'https://www.vinted.es/brand/oxxy'), +(13457 , 'OXO' , 'https://www.vinted.es/brand/oxo'), +(276626 , 'Origins' , 'https://www.vinted.es/brand/origins'), +(79766 , 'O Clock' , 'https://www.vinted.es/brand/o-clock'), +(4412742 , 'On Gossamer' , 'https://www.vinted.es/brand/on-gossamer'), +(23589 , 'One Green Elephant' , 'https://www.vinted.es/brand/one-green-elephant'), +(57178 , 'One Teaspoon' , 'https://www.vinted.es/brand/one-teaspoon'), +(62320 , 'Oca-Loca' , 'https://www.vinted.es/brand/oca-loca'), +(371213 , 'OLAF' , 'https://www.vinted.es/brand/olaf'), +(320346 , 'Olaf Benz' , 'https://www.vinted.es/brand/olaf-benz'), +(7401915 , 'Olaf Hussein' , 'https://www.vinted.es/brand/olaf-hussein'), +(177010 , 'Olay' , 'https://www.vinted.es/brand/olay'), +(13779 , 'O''lala' , 'https://www.vinted.es/brand/olala'), +(386002 , 'OLA' , 'https://www.vinted.es/brand/ola'), +(610486 , 'O Boticário' , 'https://www.vinted.es/brand/o-boticario'), +(780094 , 'Osier' , 'https://www.vinted.es/brand/osier'), +(14045 , 'Osiris' , 'https://www.vinted.es/brand/osiris'), +(1444902 , 'Oséree' , 'https://www.vinted.es/brand/oseree'), +(370678 , 'Oster' , 'https://www.vinted.es/brand/oster'), +(58338 , 'Olive' , 'https://www.vinted.es/brand/olive'), +(151380 , 'Olive des Olive' , 'https://www.vinted.es/brand/olive-des-olive'), +(219020 , 'olive & oak' , 'https://www.vinted.es/brand/olive-oak'), +(8001 , 'Osmose' , 'https://www.vinted.es/brand/osmose'), +(412834 , 'Oskar''s' , 'https://www.vinted.es/brand/oskars'), +(185748 , 'Oups' , 'https://www.vinted.es/brand/oups'), +(1169838 , 'OUaPC' , 'https://www.vinted.es/brand/ouapc'), +(150908 , 'One Touch' , 'https://www.vinted.es/brand/one-touch'), +(32175 , 'Oxygene' , 'https://www.vinted.es/brand/oxygene'), +(35295 , 'Oxygen' , 'https://www.vinted.es/brand/oxygen'), +(265700 , 'Oaks Valley' , 'https://www.vinted.es/brand/oaks-valley'), +(70938 , 'one & unik' , 'https://www.vinted.es/brand/one-unik'), +(234230 , 'One Way' , 'https://www.vinted.es/brand/one-way'), +(344336 , 'OnePlus' , 'https://www.vinted.es/brand/oneplus'), +(358337 , 'One Clothing Los Angeles' , 'https://www.vinted.es/brand/one-clothing-los-angeles'), +(363927 , 'One Above Another' , 'https://www.vinted.es/brand/one-above-another'), +(320177 , 'Outburst' , 'https://www.vinted.es/brand/outburst'), +(118478 , 'Opposite' , 'https://www.vinted.es/brand/opposite'), +(322721 , 'OppoSuits' , 'https://www.vinted.es/brand/opposuits'), +(409632 , 'Opposé' , 'https://www.vinted.es/brand/oppose'), +(729970 , 'Opp' , 'https://www.vinted.es/brand/opp'), +(392235 , 'Outshock' , 'https://www.vinted.es/brand/outshock'), +(130830 , 'Olivia' , 'https://www.vinted.es/brand/olivia'), +(78148 , 'Olivia K.' , 'https://www.vinted.es/brand/olivia-k'), +(1381833 , 'Olivia & Kate' , 'https://www.vinted.es/brand/olivia-kate'), +(753064 , 'Olivia Hops' , 'https://www.vinted.es/brand/olivia-hops'), +(281668 , 'Olivia Burton' , 'https://www.vinted.es/brand/olivia-burton'), +(342746 , 'Olivia Garden' , 'https://www.vinted.es/brand/olivia-garden'), +(1780317 , 'Olivia Rae' , 'https://www.vinted.es/brand/olivia-rae'), +(585839 , 'Olivia Westwood' , 'https://www.vinted.es/brand/olivia-westwood'), +(188074 , 'Olivia Miller' , 'https://www.vinted.es/brand/olivia-miller'), +(2904429 , 'OLIVIA RUBIN' , 'https://www.vinted.es/brand/olivia-rubin'), +(420597 , 'O''Chill' , 'https://www.vinted.es/brand/ochill'), +(149900 , 'Ocean Pacific' , 'https://www.vinted.es/brand/ocean-pacific'), +(692422 , 'ORGVSM' , 'https://www.vinted.es/brand/orgvsm'), +(652286 , 'Oxox' , 'https://www.vinted.es/brand/oxox'), +(7643427 , 'Ox Workwear' , 'https://www.vinted.es/brand/ox-workwear'), +(242916 , 'On Line' , 'https://www.vinted.es/brand/on-line'), +(765463 , 'Online Shoes' , 'https://www.vinted.es/brand/online-shoes'), +(302833 , 'Okoia' , 'https://www.vinted.es/brand/okoia'), +(137998 , 'orwell' , 'https://www.vinted.es/brand/orwell'), +(263400 , 'Ornella' , 'https://www.vinted.es/brand/ornella'), +(48849 , 'Orna Farho' , 'https://www.vinted.es/brand/orna-farho'), +(304668 , 'Ocean' , 'https://www.vinted.es/brand/ocean'), +(244810 , 'Oceano' , 'https://www.vinted.es/brand/oceano'), +(418592 , 'Ocean Buddies' , 'https://www.vinted.es/brand/ocean-buddies'), +(118780 , 'OCEANE' , 'https://www.vinted.es/brand/oceane'), +(104354 , 'Ocean Wear' , 'https://www.vinted.es/brand/ocean-wear'), +(4807856 , 'Oceanstar' , 'https://www.vinted.es/brand/oceanstar'), +(358932 , 'Ocean Drive' , 'https://www.vinted.es/brand/ocean-drive'), +(3213845 , 'Olympiah' , 'https://www.vinted.es/brand/olympiah'), +(347291 , 'Olimpias' , 'https://www.vinted.es/brand/olimpias'), +(537596 , 'Olimpia' , 'https://www.vinted.es/brand/olimpia'), +(331974 , 'On Cloud' , 'https://www.vinted.es/brand/on-cloud'), +(98180 , 'ODB' , 'https://www.vinted.es/brand/odb'), +(637319 , 'Odi et Amo' , 'https://www.vinted.es/brand/odi-et-amo'), +(58658 , 'Odemai' , 'https://www.vinted.es/brand/odemai'), +(96302 , 'Odgi-Trends' , 'https://www.vinted.es/brand/odgi-trends'), +(123890 , 'Odyssee' , 'https://www.vinted.es/brand/odyssee'), +(279846 , 'Odermark' , 'https://www.vinted.es/brand/odermark'), +(480436 , 'ODICA' , 'https://www.vinted.es/brand/odica'), +(2277620 , 'Onikha' , 'https://www.vinted.es/brand/onikha'), +(363901 , 'Oni Onik' , 'https://www.vinted.es/brand/oni-onik'), +(795162 , 'Onia' , 'https://www.vinted.es/brand/onia'), +(446627 , 'O de moi' , 'https://www.vinted.es/brand/o-de-moi'), +(39829 , 'Oscar' , 'https://www.vinted.es/brand/oscar'), +(131474 , 'Oscar de la Renta' , 'https://www.vinted.es/brand/oscar-de-la-renta'), +(423228 , 'Oscar B.' , 'https://www.vinted.es/brand/oscar-b'), +(318128 , 'Oscar Et Valentine' , 'https://www.vinted.es/brand/oscar-et-valentine'), +(399454 , 'Oscar Jacobson' , 'https://www.vinted.es/brand/oscar-jacobson'), +(164806 , 'Oscar Bijoux' , 'https://www.vinted.es/brand/oscar-bijoux'), +(2959013 , 'Oscartrachten' , 'https://www.vinted.es/brand/oscartrachten'), +(21305 , 'Oscalito' , 'https://www.vinted.es/brand/oscalito'), +(722110 , 'Ostaria' , 'https://www.vinted.es/brand/ostaria'), +(182258 , 'OSKA' , 'https://www.vinted.es/brand/oska'), +(330774 , 'Oskar' , 'https://www.vinted.es/brand/oskar'), +(196728 , 'OSVALDO ROSSI' , 'https://www.vinted.es/brand/osvaldo-rossi'), +(268491 , 'Osklen' , 'https://www.vinted.es/brand/osklen'), +(952683 , 'OCK' , 'https://www.vinted.es/brand/ock'), +(336321 , 'Ocra' , 'https://www.vinted.es/brand/ocra'), +(1110064 , 'OCCULT' , 'https://www.vinted.es/brand/occult'), +(264602 , 'Orvis' , 'https://www.vinted.es/brand/orvis'), +(314591 , 'Oris' , 'https://www.vinted.es/brand/oris'), +(216776 , 'Orlebar Brown' , 'https://www.vinted.es/brand/orlebar-brown'), +(895642 , 'One Two & Luxzuz' , 'https://www.vinted.es/brand/one-two-luxzuz'), +(357365 , 'Orciani' , 'https://www.vinted.es/brand/orciani'), +(600151 , 'Ortho Édition' , 'https://www.vinted.es/brand/ortho-edition'), +(22959 , 'Old River' , 'https://www.vinted.es/brand/old-river'), +(9139 , 'oXs' , 'https://www.vinted.es/brand/oxs'), +(20789 , 'Ox-King' , 'https://www.vinted.es/brand/ox-king'), +(383642 , 'Orta' , 'https://www.vinted.es/brand/orta'), +(157234 , 'Orval' , 'https://www.vinted.es/brand/orval'), +(379106 , 'One More Story' , 'https://www.vinted.es/brand/one-more-story'), +(301353 , 'Onfire' , 'https://www.vinted.es/brand/onfire'), +(15355 , 'Oxyde' , 'https://www.vinted.es/brand/oxyde'), +(92856 , 'OXYDO' , 'https://www.vinted.es/brand/oxydo'), +(168258 , 'Oxyd' , 'https://www.vinted.es/brand/oxyd'), +(125534 , 'Oxypas' , 'https://www.vinted.es/brand/oxypas'), +(315757 , 'oxide' , 'https://www.vinted.es/brand/oxide'), +(163004 , 'Obiettivo' , 'https://www.vinted.es/brand/obiettivo'), +(221666 , 'ORIENT' , 'https://www.vinted.es/brand/orient'), +(2215450 , 'Orientique' , 'https://www.vinted.es/brand/orientique'), +(387308 , 'Olmitos' , 'https://www.vinted.es/brand/olmitos'), +(191830 , 'Oops' , 'https://www.vinted.es/brand/oops'), +(1083808 , 'OOSC' , 'https://www.vinted.es/brand/oosc'), +(180614 , 'Oral-B' , 'https://www.vinted.es/brand/oral-b'), +(278787 , 'ONTOUR' , 'https://www.vinted.es/brand/ontour'), +(175916 , 'Olivier de Breuil' , 'https://www.vinted.es/brand/olivier-de-breuil'), +(268736 , 'Olivier' , 'https://www.vinted.es/brand/olivier'), +(235196 , 'Olivier Desforges' , 'https://www.vinted.es/brand/olivier-desforges'), +(275814 , 'Olivier Philips' , 'https://www.vinted.es/brand/olivier-philips'), +(1551343 , 'Olivier Theyskens' , 'https://www.vinted.es/brand/olivier-theyskens'), +(6154830 , 'NikeLab x Olivier Rousteing' , 'https://www.vinted.es/brand/nikelab-x-olivier-rousteing'), +(703588 , 'Oimo' , 'https://www.vinted.es/brand/oimo'), +(1070729 , 'Øiboi' , 'https://www.vinted.es/brand/oiboi'), +(201306 , 'Oioninos' , 'https://www.vinted.es/brand/oioninos'), +(388526 , 'Oh Juliette' , 'https://www.vinted.es/brand/oh-juliette'), +(1020686 , 'On That Ass' , 'https://www.vinted.es/brand/on-that-ass'), +(218788 , 'Origami' , 'https://www.vinted.es/brand/origami'), +(1493630 , 'Origami Owl' , 'https://www.vinted.es/brand/origami-owl'), +(757727 , 'Origames' , 'https://www.vinted.es/brand/origames'), +(376394 , 'Origem' , 'https://www.vinted.es/brand/origem'), +(173256 , 'Orchard' , 'https://www.vinted.es/brand/orchard'), +(204186 , 'Only Pink' , 'https://www.vinted.es/brand/only-pink'), +(105 , 'Primark' , 'https://www.vinted.es/brand/primark'), +(520671 , 'Prima Riga' , 'https://www.vinted.es/brand/prima-riga'), +(368387 , 'Promarker' , 'https://www.vinted.es/brand/promarker'), +(4690593 , 'Pull & Bear' , 'https://www.vinted.es/brand/pull-bear'), +(404840 , 'Pimkie Home' , 'https://www.vinted.es/brand/pimkie-home'), +(2283 , 'Pinkie' , 'https://www.vinted.es/brand/pinkie'), +(535 , 'Puma' , 'https://www.vinted.es/brand/puma'), +(7397733 , 'Puma x AC Milan' , 'https://www.vinted.es/brand/puma-x-ac-milan'), +(6170389 , 'Puma golf' , 'https://www.vinted.es/brand/puma-golf'), +(7336271 , 'Puma X Red Bull Racing' , 'https://www.vinted.es/brand/puma-x-red-bull-racing'), +(5189895 , 'Puma x Selena Gomez' , 'https://www.vinted.es/brand/puma-x-selena-gomez'), +(5 , 'Promod' , 'https://www.vinted.es/brand/promod'), +(220826 , 'Promodoro' , 'https://www.vinted.es/brand/promodoro'), +(1515474 , 'Promodis' , 'https://www.vinted.es/brand/promodis'), +(225094 , 'Premode' , 'https://www.vinted.es/brand/premode'), +(385689 , 'Promed' , 'https://www.vinted.es/brand/promed'), +(1520022 , 'Promo Stars' , 'https://www.vinted.es/brand/promo-stars'), +(142508 , 'PrettyLittleThing' , 'https://www.vinted.es/brand/prettylittlething'), +(149 , 'Petit Bateau' , 'https://www.vinted.es/brand/petit-bateau'), +(191646 , 'Pokémon' , 'https://www.vinted.es/brand/pokemon'), +(309178 , 'Pepco' , 'https://www.vinted.es/brand/pepco'), +(6692305 , 'Pep&Co' , 'https://www.vinted.es/brand/pep-co'), +(46861 , 'Peacocks' , 'https://www.vinted.es/brand/peacocks'), +(305637 , 'P&CO' , 'https://www.vinted.es/brand/pco'), +(287243 , 'Playmobil' , 'https://www.vinted.es/brand/playmobil'), +(192 , 'Pepe Jeans' , 'https://www.vinted.es/brand/pepe-jeans'), +(93626 , 'Prénatal' , 'https://www.vinted.es/brand/prenatal'), +(5083 , 'Pandora' , 'https://www.vinted.es/brand/pandora'), +(7143724 , 'Disney x Pandora' , 'https://www.vinted.es/brand/disney-x-pandora'), +(446038 , 'Panorama' , 'https://www.vinted.es/brand/panorama'), +(493 , 'Papaya' , 'https://www.vinted.es/brand/papaya'), +(59700 , 'Paparazzi' , 'https://www.vinted.es/brand/paparazzi'), +(291159 , 'Papanatas' , 'https://www.vinted.es/brand/papanatas'), +(971191 , 'Papalagi' , 'https://www.vinted.es/brand/papalagi'), +(11845 , 'Papaye et Goyave' , 'https://www.vinted.es/brand/papaye-et-goyave'), +(671018 , 'Paparazzi Fashion' , 'https://www.vinted.es/brand/paparazzi-fashion'), +(42483 , 'Piazza Italia' , 'https://www.vinted.es/brand/piazza-italia'), +(3403 , 'Parfois' , 'https://www.vinted.es/brand/parfois'), +(179768 , 'Palomino' , 'https://www.vinted.es/brand/palomino'), +(5761959 , 'PALOMINOI' , 'https://www.vinted.es/brand/palominoi'), +(4273 , 'Polo Ralph Lauren' , 'https://www.vinted.es/brand/polo-ralph-lauren'), +(424365 , 'PlayStation 4' , 'https://www.vinted.es/brand/playstation-4'), +(272284 , 'PlayStation' , 'https://www.vinted.es/brand/playstation'), +(359790 , 'PlayStation 3' , 'https://www.vinted.es/brand/playstation-3'), +(287416 , 'PlayStation 2' , 'https://www.vinted.es/brand/playstation-2'), +(5974955 , 'PlayStation Portable' , 'https://www.vinted.es/brand/playstation-portable'), +(3444941 , 'PlayStation 5' , 'https://www.vinted.es/brand/playstation-5'), +(695403 , 'PlayStation 1' , 'https://www.vinted.es/brand/playstation-1'), +(6014345 , 'PlayStation Vita' , 'https://www.vinted.es/brand/playstation-vita'), +(290483 , 'Paw Patrol' , 'https://www.vinted.es/brand/paw-patrol'), +(35825 , 'PrimaDonna' , 'https://www.vinted.es/brand/primadonna'), +(7743984 , 'PrimaDonna Swim' , 'https://www.vinted.es/brand/primadonna-swim'), +(107906 , 'Primigi' , 'https://www.vinted.es/brand/primigi'), +(5784524 , 'Primigino' , 'https://www.vinted.es/brand/primigino'), +(5809052 , 'Primi Giorni' , 'https://www.vinted.es/brand/primi-giorni'), +(338538 , 'Primitive' , 'https://www.vinted.es/brand/primitive'), +(2251 , 'Pieces' , 'https://www.vinted.es/brand/pieces'), +(316970 , 'Pièces Uniques' , 'https://www.vinted.es/brand/pieces-uniques'), +(4214710 , 'Pieces Maternity' , 'https://www.vinted.es/brand/pieces-maternity'), +(5915580 , 'PIECES Petite' , 'https://www.vinted.es/brand/pieces-petite'), +(4423976 , 'Pieces Curve' , 'https://www.vinted.es/brand/pieces-curve'), +(6155068 , 'Pieces Tall' , 'https://www.vinted.es/brand/pieces-tall'), +(5819193 , 'POP' , 'https://www.vinted.es/brand/pop'), +(1316305 , 'POP IT' , 'https://www.vinted.es/brand/pop-it'), +(380459 , 'POPA' , 'https://www.vinted.es/brand/popa'), +(1700618 , 'POPMART' , 'https://www.vinted.es/brand/popmart'), +(532140 , 'Popys' , 'https://www.vinted.es/brand/popys'), +(302105 , 'Popples' , 'https://www.vinted.es/brand/popples'), +(250418 , 'Poppy' , 'https://www.vinted.es/brand/poppy'), +(195464 , 'Popeye' , 'https://www.vinted.es/brand/popeye'), +(1281 , 'Pinko' , 'https://www.vinted.es/brand/pinko'), +(524544 , 'Pink or Blue' , 'https://www.vinted.es/brand/pink-or-blue'), +(103502 , 'Pick Ouic' , 'https://www.vinted.es/brand/pick-ouic'), +(28471 , 'Pink' , 'https://www.vinted.es/brand/pink'), +(174572 , 'Pikouic' , 'https://www.vinted.es/brand/pikouic'), +(6665 , 'Pikolinos' , 'https://www.vinted.es/brand/pikolinos'), +(480489 , 'Pinokkio' , 'https://www.vinted.es/brand/pinokkio'), +(66968 , 'Pink Boom' , 'https://www.vinted.es/brand/pink-boom'), +(314726 , 'Pinocchio' , 'https://www.vinted.es/brand/pinocchio'), +(179682 , 'Pocopiano' , 'https://www.vinted.es/brand/pocopiano'), +(426961 , 'Pocopiano' , 'https://www.vinted.es/brand/poopiano'), +(312659 , 'Pooopiano' , 'https://www.vinted.es/brand/pooopiano'), +(192106 , 'Pepperts' , 'https://www.vinted.es/brand/pepperts'), +(281005 , 'Peppers!' , 'https://www.vinted.es/brand/peppers'), +(316650 , 'Pepper Tree' , 'https://www.vinted.es/brand/pepper-tree'), +(275867 , 'Pusblu' , 'https://www.vinted.es/brand/pusblu'), +(315630 , 'Peluche' , 'https://www.vinted.es/brand/peluche'), +(3573 , 'Prada' , 'https://www.vinted.es/brand/prada'), +(6698966 , 'adidas x Prada' , 'https://www.vinted.es/brand/adidas-x-prada'), +(2968033 , 'Prata' , 'https://www.vinted.es/brand/prata'), +(154796 , 'PRAIA' , 'https://www.vinted.es/brand/praia'), +(327101 , 'Predator' , 'https://www.vinted.es/brand/predator'), +(191930 , 'PRADY' , 'https://www.vinted.es/brand/prady'), +(160260 , 'Prana' , 'https://www.vinted.es/brand/prana'), +(289117 , 'Pradel' , 'https://www.vinted.es/brand/pradel'), +(209792 , 'Pranarōm' , 'https://www.vinted.es/brand/pranarom'), +(1405503 , 'Pranamat Eco' , 'https://www.vinted.es/brand/pranamat-eco'), +(281651 , 'Panini' , 'https://www.vinted.es/brand/panini'), +(302735 , 'Padini' , 'https://www.vinted.es/brand/padini'), +(3373805 , 'Patinio' , 'https://www.vinted.es/brand/patinio'), +(296090 , 'Puzzle' , 'https://www.vinted.es/brand/puzzle'), +(898123 , 'Bluebird Puzzle' , 'https://www.vinted.es/brand/bluebird-puzzle'), +(129970 , 'Pat et Ripaton' , 'https://www.vinted.es/brand/pat-et-ripaton'), +(522 , 'Patrice Breal' , 'https://www.vinted.es/brand/patrice-breal'), +(70288 , 'Per Una' , 'https://www.vinted.es/brand/per-una'), +(355623 , 'Perona' , 'https://www.vinted.es/brand/perona'), +(7125 , 'Patrizia Pepe' , 'https://www.vinted.es/brand/patrizia-pepe'), +(39037 , 'Premaman' , 'https://www.vinted.es/brand/premaman'), +(365465 , 'premamam' , 'https://www.vinted.es/brand/premamam'), +(5575 , 'Pierre Cardin' , 'https://www.vinted.es/brand/pierre-cardin'), +(4481882 , 'Pierre Carvin' , 'https://www.vinted.es/brand/pierre-carvin'), +(4087 , 'Pinky' , 'https://www.vinted.es/brand/pinky'), +(362835 , 'Pink Baby' , 'https://www.vinted.es/brand/pink-baby'), +(277537 , 'Pink Gum' , 'https://www.vinted.es/brand/pink-gum'), +(26275 , 'pink panther' , 'https://www.vinted.es/brand/pink-panther'), +(403962 , 'PINK BLACK' , 'https://www.vinted.es/brand/pink-black'), +(168142 , 'Pink Soda' , 'https://www.vinted.es/brand/pink-soda'), +(26925 , 'Phase Eight' , 'https://www.vinted.es/brand/phase-eight'), +(204220 , 'Peppa Pig' , 'https://www.vinted.es/brand/peppa-pig'), +(30653 , 'PLEASE' , 'https://www.vinted.es/brand/please'), +(3055 , 'Pleaser' , 'https://www.vinted.es/brand/pleaser'), +(5815822 , 'Please Paulo Stop Cappin' , 'https://www.vinted.es/brand/please-paulo-stop-cappin'), +(412041 , 'Pleasures' , 'https://www.vinted.es/brand/pleasures'), +(259784 , 'Pleasure State' , 'https://www.vinted.es/brand/pleasure-state'), +(1168282 , 'Pleas' , 'https://www.vinted.es/brand/pleas'), +(6964312 , 'Reebok x Pleasures' , 'https://www.vinted.es/brand/reebok-x-pleasures'), +(907065 , 'Pink Gellac' , 'https://www.vinted.es/brand/pink-gellac'), +(745649 , 'Pinkberry' , 'https://www.vinted.es/brand/pinkberry'), +(364991 , 'Pink & Sky' , 'https://www.vinted.es/brand/pink-sky'), +(472954 , 'Pink Memories' , 'https://www.vinted.es/brand/pink-memories'), +(544957 , 'Pink Pepper' , 'https://www.vinted.es/brand/pink-pepper'), +(559369 , 'Pink Republic' , 'https://www.vinted.es/brand/pink-republic'), +(1232375 , 'Pink Elephant' , 'https://www.vinted.es/brand/pink-elephant'), +(10763 , 'Paul Smith' , 'https://www.vinted.es/brand/paul-smith'), +(5860340 , 'Paul Smith Junior' , 'https://www.vinted.es/brand/paul-smith-junior'), +(330 , 'Phildar' , 'https://www.vinted.es/brand/phildar'), +(431426 , 'Philpark' , 'https://www.vinted.es/brand/philpark'), +(159550 , 'Petrol Industries' , 'https://www.vinted.es/brand/petrol-industries'), +(72714 , 'Pedro del Hierro' , 'https://www.vinted.es/brand/pedro-del-hierro'), +(53275 , 'Principles' , 'https://www.vinted.es/brand/principles'), +(75944 , 'Pyrex' , 'https://www.vinted.es/brand/pyrex'), +(19741 , 'Pyrenex' , 'https://www.vinted.es/brand/pyrenex'), +(178276 , 'Petit Béguin' , 'https://www.vinted.es/brand/petit-beguin'), +(335820 , 'PatPat' , 'https://www.vinted.es/brand/patpat'), +(1465923 , 'pat & patty' , 'https://www.vinted.es/brand/pat-patty'), +(38777 , 'Purificación García' , 'https://www.vinted.es/brand/purificacion-garcia'), +(627 , 'Palladium' , 'https://www.vinted.es/brand/palladium'), +(7832544 , 'Palladium x Finisterre' , 'https://www.vinted.es/brand/palladium-x-finisterre'), +(175940 , 'P''tit Bisou' , 'https://www.vinted.es/brand/ptit-bisou'), +(175876 , 'Pommette' , 'https://www.vinted.es/brand/pommette'), +(232858 , 'Pommettes' , 'https://www.vinted.es/brand/pommettes'), +(176662 , 'Pomette' , 'https://www.vinted.es/brand/pomette'), +(264372 , 'Papagino' , 'https://www.vinted.es/brand/papagino'), +(298635 , 'Page One Young' , 'https://www.vinted.es/brand/page-one-young'), +(288753 , 'Pampers' , 'https://www.vinted.es/brand/pampers'), +(199238 , 'Paper Scissors' , 'https://www.vinted.es/brand/paper-scissors'), +(13555 , 'Protest' , 'https://www.vinted.es/brand/protest'), +(314494 , 'Protect' , 'https://www.vinted.es/brand/protect'), +(347542 , 'Protective' , 'https://www.vinted.es/brand/protective'), +(1200228 , 'Protetika' , 'https://www.vinted.es/brand/protetika'), +(3979766 , 'Protektor' , 'https://www.vinted.es/brand/protektor'), +(90804 , 'Patagonia' , 'https://www.vinted.es/brand/patagonia'), +(35425 , 'Pull' , 'https://www.vinted.es/brand/pull'), +(168432 , 'Pullin' , 'https://www.vinted.es/brand/pullin'), +(698226 , 'Pulls' , 'https://www.vinted.es/brand/pulls'), +(349400 , 'Pullip' , 'https://www.vinted.es/brand/pullip'), +(127156 , 'PULL LOVE' , 'https://www.vinted.es/brand/pull-love'), +(323944 , 'Pulligan' , 'https://www.vinted.es/brand/pulligan'), +(485922 , 'Pull On' , 'https://www.vinted.es/brand/pull-on'), +(7456165 , 'Puller' , 'https://www.vinted.es/brand/puller'), +(134520 , 'Public Desire' , 'https://www.vinted.es/brand/public-desire'), +(17095 , 'Pier One' , 'https://www.vinted.es/brand/pier-one'), +(66298 , 'Pennyblack' , 'https://www.vinted.es/brand/pennyblack'), +(80700 , 'Philips' , 'https://www.vinted.es/brand/philips'), +(287515 , 'Philips AVENT' , 'https://www.vinted.es/brand/philips-avent'), +(56938 , 'Philipp Plein' , 'https://www.vinted.es/brand/philipp-plein'), +(38413 , 'Philippe Model' , 'https://www.vinted.es/brand/philippe-model'), +(77338 , 'Philippe Matignon' , 'https://www.vinted.es/brand/philippe-matignon'), +(464304 , 'Philip Watch' , 'https://www.vinted.es/brand/philip-watch'), +(1853 , 'Philippe le Bac' , 'https://www.vinted.es/brand/philippe-le-bac'), +(52097 , 'Philip Russel' , 'https://www.vinted.es/brand/philip-russel'), +(138570 , 'Philippe Vallereuil' , 'https://www.vinted.es/brand/philippe-vallereuil'), +(278403 , 'Philippe Audibert' , 'https://www.vinted.es/brand/philippe-audibert'), +(6029575 , 'Philipp Plein Junior' , 'https://www.vinted.es/brand/philipp-plein-junior'), +(6029573 , 'Philipp Plein Platinum Cut' , 'https://www.vinted.es/brand/philipp-plein-platinum-cut'), +(6029574 , 'Philipp Plein Black Cut' , 'https://www.vinted.es/brand/philipp-plein-black-cut'), +(6029576 , 'Philipp Plein Fetish' , 'https://www.vinted.es/brand/philipp-plein-fetish'), +(287288 , 'Polly Pocket' , 'https://www.vinted.es/brand/polly-pocket'), +(34173 , 'Pro Touch' , 'https://www.vinted.es/brand/pro-touch'), +(77398 , 'Peuterey' , 'https://www.vinted.es/brand/peuterey'), +(296159 , 'Pepino' , 'https://www.vinted.es/brand/pepino'), +(2569678 , 'Pepino by Ricosta' , 'https://www.vinted.es/brand/pepino-by-ricosta'), +(1132484 , 'PepitobyChus' , 'https://www.vinted.es/brand/pepitobychus'), +(292248 , 'Plata' , 'https://www.vinted.es/brand/plata'), +(514928 , 'Plata de Ley' , 'https://www.vinted.es/brand/plata-de-ley'), +(6795 , 'Playa' , 'https://www.vinted.es/brand/playa'), +(291902 , 'Playgo' , 'https://www.vinted.es/brand/playgo'), +(149056 , 'Platino' , 'https://www.vinted.es/brand/platino'), +(360469 , 'Plaza Italia' , 'https://www.vinted.es/brand/plaza-italia'), +(374155 , 'Play & Go' , 'https://www.vinted.es/brand/play-and-go'), +(127462 , 'Platinum' , 'https://www.vinted.es/brand/platinum'), +(298106 , 'Platine' , 'https://www.vinted.es/brand/platine'), +(284055 , 'PLATINIUM' , 'https://www.vinted.es/brand/platinium'), +(3042355 , 'PLUS' , 'https://www.vinted.es/brand/plus'), +(152498 , 'Plus COLLECTION' , 'https://www.vinted.es/brand/plus-collection'), +(60734 , 'PLUSMINUS' , 'https://www.vinted.es/brand/plusminus'), +(720806 , 'Plush' , 'https://www.vinted.es/brand/plush'), +(333830 , 'Plush & Company' , 'https://www.vinted.es/brand/plush-company'), +(35187 , 'Plus belle la vie' , 'https://www.vinted.es/brand/plus-belle-la-vie'), +(391961 , 'Plus-plus' , 'https://www.vinted.es/brand/plus-plus'), +(9467 , 'Plume' , 'https://www.vinted.es/brand/plume'), +(302230 , 'Plastoy' , 'https://www.vinted.es/brand/plastoy'), +(199864 , 'Plumers' , 'https://www.vinted.es/brand/plumers'), +(229084 , 'Page One' , 'https://www.vinted.es/brand/page-one'), +(171 , 'Princesse Tam Tam' , 'https://www.vinted.es/brand/princesse-tam-tam'), +(5369 , 'Phard' , 'https://www.vinted.es/brand/phard'), +(232830 , 'Pharmacy Industry' , 'https://www.vinted.es/brand/pharmacy-industry'), +(1493513 , 'Pharmaceris' , 'https://www.vinted.es/brand/pharmaceris'), +(363 , 'paprika' , 'https://www.vinted.es/brand/paprika'), +(504280 , 'Purelei' , 'https://www.vinted.es/brand/purelei'), +(512208 , 'Pure Lime' , 'https://www.vinted.es/brand/pure-lime'), +(252746 , 'Paciotti' , 'https://www.vinted.es/brand/paciotti'), +(174064 , 'Petit Kimbaloo' , 'https://www.vinted.es/brand/petit-kimbaloo'), +(149714 , 'PUNKIDZ' , 'https://www.vinted.es/brand/punkidz'), +(172078 , 'Punkids' , 'https://www.vinted.es/brand/punkids'), +(43287 , 'Pretty Girl' , 'https://www.vinted.es/brand/pretty-girl'), +(43657 , 'parisian' , 'https://www.vinted.es/brand/parisian'), +(60582 , 'Parisian Collection' , 'https://www.vinted.es/brand/parisian-collection'), +(97150 , 'Parisienne' , 'https://www.vinted.es/brand/parisienne'), +(483892 , 'Parisienne et Alors' , 'https://www.vinted.es/brand/parisienne-et-alors'), +(173350 , 'Pittarello' , 'https://www.vinted.es/brand/pittarello'), +(472343 , 'Pitarello' , 'https://www.vinted.es/brand/pitarello'), +(49491 , 'Paris Saint-Germain' , 'https://www.vinted.es/brand/paris-saint-germain'), +(302493 , 'Project X Paris' , 'https://www.vinted.es/brand/project-x-paris'), +(177614 , 'Pablosky' , 'https://www.vinted.es/brand/pablosky'), +(301118 , 'P''Tit Filou' , 'https://www.vinted.es/brand/ptit-filou'), +(60968 , 'Petit' , 'https://www.vinted.es/brand/petit'), +(58752 , 'P''tit Môme' , 'https://www.vinted.es/brand/ptit-mome'), +(174808 , 'Petit Pirate' , 'https://www.vinted.es/brand/petit-pirate'), +(273175 , 'Petite' , 'https://www.vinted.es/brand/petite'), +(395367 , 'Palm Angels' , 'https://www.vinted.es/brand/palm-angels'), +(2394526 , 'Vlone x Palm Angels' , 'https://www.vinted.es/brand/vlone-x-palm-angels'), +(7489653 , 'Palm Angels x Vilebrequin' , 'https://www.vinted.es/brand/palm-angels-x-vilebrequin'), +(342952 , 'Playtive' , 'https://www.vinted.es/brand/playtive'), +(5647162 , 'Play Tive Junior' , 'https://www.vinted.es/brand/play-tive-junior'), +(297096 , 'Playtime' , 'https://www.vinted.es/brand/playtime'), +(5992765 , 'Paul & Shark' , 'https://www.vinted.es/brand/paul-shark'), +(211086 , 'Parfait' , 'https://www.vinted.es/brand/parfait'), +(16881 , 'Paul Green' , 'https://www.vinted.es/brand/paul-green'), +(85542 , 'Pigalle' , 'https://www.vinted.es/brand/pigalle'), +(2029490 , 'Pigalle by Only' , 'https://www.vinted.es/brand/pigalle-by-only'), +(6256492 , 'Nike x Pigalle' , 'https://www.vinted.es/brand/nike-x-pigalle'), +(6549679 , 'Converse x Pigalle' , 'https://www.vinted.es/brand/converse-x-pigalle'), +(309989 , 'Partylite' , 'https://www.vinted.es/brand/partylite'), +(208552 , 'Peter Rabbit' , 'https://www.vinted.es/brand/peter-rabbit'), +(4755 , 'Paul & Joe' , 'https://www.vinted.es/brand/paul-joe'), +(1187 , 'Paul & Joe Sister' , 'https://www.vinted.es/brand/paul-joe-sister'), +(4514211 , 'PAULE & JOE' , 'https://www.vinted.es/brand/paule-joe'), +(29693 , 'Peanuts' , 'https://www.vinted.es/brand/peanuts'), +(6497530 , 'Vans x Peanuts' , 'https://www.vinted.es/brand/vans-x-peanuts'), +(7175685 , 'Puma x Peanuts' , 'https://www.vinted.es/brand/puma-x-peanuts'), +(656609 , 'Peanut Butter' , 'https://www.vinted.es/brand/peanut-butter'), +(649 , 'Playboy' , 'https://www.vinted.es/brand/playboy'), +(6096784 , 'Supreme x Playboy' , 'https://www.vinted.es/brand/supreme-x-playboy'), +(301736 , 'Play By Play' , 'https://www.vinted.es/brand/play-by-play'), +(223490 , 'Pretty Green' , 'https://www.vinted.es/brand/pretty-green'), +(5362980 , 'Pretty Green x Umbro' , 'https://www.vinted.es/brand/pretty-green-x-umbro'), +(4650036 , 'Peace n'' Love' , 'https://www.vinted.es/brand/peace-n-love'), +(197468 , 'Punto' , 'https://www.vinted.es/brand/punto'), +(234860 , 'Punto Roma' , 'https://www.vinted.es/brand/punto-roma'), +(126234 , 'Punto Blanco' , 'https://www.vinted.es/brand/punto-blanco'), +(9443 , 'Punto Bene' , 'https://www.vinted.es/brand/punto-bene'), +(751718 , 'Punto Zero' , 'https://www.vinted.es/brand/punto-zero'), +(164466 , 'Punt Roma' , 'https://www.vinted.es/brand/punt-roma'), +(233450 , 'Polarn O. Pyret' , 'https://www.vinted.es/brand/polarn-o-pyret'), +(50011 , 'Polo Club' , 'https://www.vinted.es/brand/polo-club'), +(329746 , 'Poupée' , 'https://www.vinted.es/brand/poupee'), +(137562 , 'Poupée Chic' , 'https://www.vinted.es/brand/poupee-chic'), +(11961 , 'Poupée de Soie' , 'https://www.vinted.es/brand/poupee-de-soie'), +(288041 , 'Play Doh' , 'https://www.vinted.es/brand/play-doh'), +(95482 , 'Penguin' , 'https://www.vinted.es/brand/penguin'), +(52759 , 'Polar' , 'https://www.vinted.es/brand/polar'), +(86542 , 'Polaroid' , 'https://www.vinted.es/brand/polaroid'), +(224944 , 'Polartec' , 'https://www.vinted.es/brand/polartec'), +(87692 , 'Polaris' , 'https://www.vinted.es/brand/polaris'), +(375147 , 'Polar Skate' , 'https://www.vinted.es/brand/polar-skate'), +(216358 , 'Polar Bear' , 'https://www.vinted.es/brand/polar-bear'), +(7006283 , 'Polar Skate Co.' , 'https://www.vinted.es/brand/polar-skate-co'), +(285328 , 'Polar Gear' , 'https://www.vinted.es/brand/polar-gear'), +(386889 , 'Polarino' , 'https://www.vinted.es/brand/polarino'), +(21099 , 'PONY' , 'https://www.vinted.es/brand/pony'), +(2316787 , 'PONY STONE' , 'https://www.vinted.es/brand/pony-stone'), +(1926575 , 'Pony-O' , 'https://www.vinted.es/brand/pony-o'), +(883017 , 'Pony Maedchen' , 'https://www.vinted.es/brand/pony-maedchen'), +(8475 , 'Pons Quintana' , 'https://www.vinted.es/brand/pons-quintana'), +(387693 , 'Polydor' , 'https://www.vinted.es/brand/polydor'), +(365397 , 'Polygram' , 'https://www.vinted.es/brand/polygram'), +(751029 , 'Pontus' , 'https://www.vinted.es/brand/pontus'), +(448442 , 'Popy' , 'https://www.vinted.es/brand/popy'), +(23795 , 'pom d''api' , 'https://www.vinted.es/brand/pom-dapi'), +(359427 , 'Pink Boutique' , 'https://www.vinted.es/brand/pink-boutique'), +(2711 , 'Passionata' , 'https://www.vinted.es/brand/passionata'), +(265274 , 'Playshoes' , 'https://www.vinted.es/brand/playshoes'), +(185450 , 'Playskool' , 'https://www.vinted.es/brand/playskool'), +(3177 , 'Pataugas' , 'https://www.vinted.es/brand/pataugas'), +(5501 , 'Petite Mendigote' , 'https://www.vinted.es/brand/petite-mendigote'), +(195240 , 'PETITES CANAILLES' , 'https://www.vinted.es/brand/petites-canailles'), +(328251 , 'petite fleur' , 'https://www.vinted.es/brand/petite-fleur'), +(194446 , 'Petite Minette' , 'https://www.vinted.es/brand/petite-minette'), +(391821 , 'Petite Jolie' , 'https://www.vinted.es/brand/petite-jolie'), +(583966 , 'Petite Amélie' , 'https://www.vinted.es/brand/petite-amelie'), +(319064 , 'PETITE MADEMOISELLE' , 'https://www.vinted.es/brand/petite-mademoiselle'), +(692484 , 'Petite Cherie' , 'https://www.vinted.es/brand/petite-cherie'), +(7450742 , 'popitonU' , 'https://www.vinted.es/brand/popitonu'), +(381953 , 'Positano' , 'https://www.vinted.es/brand/positano'), +(168242 , 'Polita' , 'https://www.vinted.es/brand/polita'), +(11870967 , 'Pop In' , 'https://www.vinted.es/brand/pop-in'), +(347250 , 'Popi' , 'https://www.vinted.es/brand/popi'), +(908272 , 'Politoys' , 'https://www.vinted.es/brand/politoys'), +(403226 , 'Popatu' , 'https://www.vinted.es/brand/popatu'), +(102140 , 'Premium' , 'https://www.vinted.es/brand/premium'), +(327076 , 'Premium Collection' , 'https://www.vinted.es/brand/premium-collection'), +(304686 , 'Premium Denim' , 'https://www.vinted.es/brand/premium-denim'), +(37437 , 'Perfecto' , 'https://www.vinted.es/brand/perfecto'), +(29325 , 'Perfecta' , 'https://www.vinted.es/brand/perfecta'), +(36443 , 'Perfect' , 'https://www.vinted.es/brand/perfect'), +(322739 , 'Perfect Jeans' , 'https://www.vinted.es/brand/perfect-jeans'), +(364643 , 'Perfection' , 'https://www.vinted.es/brand/perfection'), +(338260 , 'Perfect Moment' , 'https://www.vinted.es/brand/perfect-moment'), +(384071 , 'Perfect Summer' , 'https://www.vinted.es/brand/perfect-summer'), +(7730217 , 'The Perfect Jean' , 'https://www.vinted.es/brand/the-perfect-jean'), +(7149 , 'Pollini' , 'https://www.vinted.es/brand/pollini'), +(1598702 , 'Philippe Model Paris' , 'https://www.vinted.es/brand/philippe-model-paris'), +(317102 , 'Pinokio' , 'https://www.vinted.es/brand/pinokio'), +(7105 , 'Pronovias' , 'https://www.vinted.es/brand/pronovias'), +(26057 , 'Project' , 'https://www.vinted.es/brand/project'), +(156872 , 'Promiss' , 'https://www.vinted.es/brand/promiss'), +(179300 , 'Project X' , 'https://www.vinted.es/brand/project-x'), +(394515 , 'Prozis' , 'https://www.vinted.es/brand/prozis'), +(152284 , 'PRONTO MODA' , 'https://www.vinted.es/brand/pronto-moda'), +(5495 , 'Place du Jour' , 'https://www.vinted.es/brand/place-du-jour'), +(7629139 , 'Petshop' , 'https://www.vinted.es/brand/petshop'), +(66122 , 'penshoppe' , 'https://www.vinted.es/brand/penshoppe'), +(106 , 'Peter Kaiser' , 'https://www.vinted.es/brand/peter-kaiser'), +(6009 , 'Printemps' , 'https://www.vinted.es/brand/printemps'), +(174086 , 'Peggy Sage' , 'https://www.vinted.es/brand/peggy-sage'), +(5993027 , 'PJ Masks' , 'https://www.vinted.es/brand/pj-masks'), +(49641 , 'Promise' , 'https://www.vinted.es/brand/promise'), +(174058 , 'Pupa' , 'https://www.vinted.es/brand/pupa'), +(5087 , 'Pura Lopez' , 'https://www.vinted.es/brand/pura-lopez'), +(821660 , 'Pura Vida Clothes' , 'https://www.vinted.es/brand/pura-vida-clothes'), +(24507 , 'PuraVida' , 'https://www.vinted.es/brand/puravida'), +(321480 , 'Pura Seta' , 'https://www.vinted.es/brand/pura-seta'), +(288512 , 'Pulp & Curve' , 'https://www.vinted.es/brand/pulp-curve'), +(98198 , 'Pour Moi' , 'https://www.vinted.es/brand/pour-moi'), +(5953 , 'Pierre Lang' , 'https://www.vinted.es/brand/pierre-lang'), +(20835 , 'Pierre Lannier' , 'https://www.vinted.es/brand/pierre-lannier'), +(375060 , 'Play Up' , 'https://www.vinted.es/brand/play-up'), +(816511 , 'Playlearn' , 'https://www.vinted.es/brand/playlearn'), +(162556 , 'Piquadro' , 'https://www.vinted.es/brand/piquadro'), +(284767 , 'Produkt' , 'https://www.vinted.es/brand/produkt'), +(1379 , 'Paco Rabanne' , 'https://www.vinted.es/brand/paco-rabanne'), +(323046 , 'Peppa' , 'https://www.vinted.es/brand/peppa'), +(387677 , 'Peppa Rose' , 'https://www.vinted.es/brand/peppa-rose'), +(81296 , 'PEPA LOVES' , 'https://www.vinted.es/brand/pepa-loves'), +(47547 , 'Peppercorn' , 'https://www.vinted.es/brand/peppercorn'), +(542081 , 'Pepa' , 'https://www.vinted.es/brand/pepa'), +(365023 , 'Peppy Pups' , 'https://www.vinted.es/brand/peppy-pups'), +(1016968 , 'POMPdeLUX' , 'https://www.vinted.es/brand/pompdelux'), +(139960 , 'Palace' , 'https://www.vinted.es/brand/palace'), +(222038 , 'Palace Skateboards' , 'https://www.vinted.es/brand/palace-skateboards'), +(7263754 , 'Palace x Jean-Charles de Castelbajac' , 'https://www.vinted.es/brand/palace-x-jean-charles-de-castelbajac'), +(772922 , 'adidas x Palace' , 'https://www.vinted.es/brand/adidas-x-palace'), +(4680067 , 'Palace x Rebook' , 'https://www.vinted.es/brand/palace-x-rebook'), +(7263752 , 'Palace x Umbro' , 'https://www.vinted.es/brand/palace-x-umbro'), +(77218 , 'Parker' , 'https://www.vinted.es/brand/parker'), +(387546 , 'Pakerson' , 'https://www.vinted.es/brand/pakerson'), +(354973 , 'PAKER' , 'https://www.vinted.es/brand/paker'), +(206410 , 'Parkbravo' , 'https://www.vinted.es/brand/parkbravo'), +(344300 , 'Pescara' , 'https://www.vinted.es/brand/pescara'), +(208296 , 'Polinesia' , 'https://www.vinted.es/brand/polinesia'), +(241880 , 'Persival' , 'https://www.vinted.es/brand/persival'), +(225832 , 'Percival' , 'https://www.vinted.es/brand/percival'), +(82834 , 'Peak Performance' , 'https://www.vinted.es/brand/peak-performance'), +(14685 , 'Police' , 'https://www.vinted.es/brand/police'), +(5338102 , 'police shop' , 'https://www.vinted.es/brand/police-shop'), +(744666 , 'Polin et moi' , 'https://www.vinted.es/brand/polin-et-moi'), +(557501 , 'Pink Vanilla' , 'https://www.vinted.es/brand/pink-vanilla'), +(24917 , 'Pablo' , 'https://www.vinted.es/brand/pablo'), +(5663 , 'Pablo de Gerard Darel' , 'https://www.vinted.es/brand/pablo-de-gerard-darel'), +(3005 , 'Pako Litto' , 'https://www.vinted.es/brand/pako-litto'), +(326833 , 'Pablo Fuster' , 'https://www.vinted.es/brand/pablo-fuster'), +(6980574 , 'Pablo Santoni' , 'https://www.vinted.es/brand/pablo-santoni'), +(177582 , 'Paolo Casalini' , 'https://www.vinted.es/brand/paolo-casalini'), +(65298 , 'Paolo Pecora' , 'https://www.vinted.es/brand/paolo-pecora'), +(64740 , 'Paloma Barcelo' , 'https://www.vinted.es/brand/paloma-barcelo'), +(287278 , 'Pinypon' , 'https://www.vinted.es/brand/pinypon'), +(399226 , 'pinqponq' , 'https://www.vinted.es/brand/pinqponq'), +(114024 , 'Paul Marius' , 'https://www.vinted.es/brand/paul-marius'), +(1877 , 'Pineapple' , 'https://www.vinted.es/brand/pineapple'), +(7007620 , 'Pineapple Elephant' , 'https://www.vinted.es/brand/pineapple-elephant'), +(246476 , 'pinkapple' , 'https://www.vinted.es/brand/pinkapple'), +(397548 , 'Peek & Cloppenburg' , 'https://www.vinted.es/brand/peek-cloppenburg'), +(190472 , 'Prima Classe' , 'https://www.vinted.es/brand/prima-classe'), +(326 , 'Paul Frank' , 'https://www.vinted.es/brand/paul-frank'), +(297332 , 'Playgro' , 'https://www.vinted.es/brand/playgro'), +(421932 , 'Playground' , 'https://www.vinted.es/brand/playground'), +(3993834 , 'Playground Pals' , 'https://www.vinted.es/brand/playground-pals'), +(288189 , 'Papo' , 'https://www.vinted.es/brand/papo'), +(39381 , 'Papillon' , 'https://www.vinted.es/brand/papillon'), +(2067 , 'Papillonne' , 'https://www.vinted.es/brand/papillonne'), +(275312 , 'paco martinez' , 'https://www.vinted.es/brand/paco-martinez'), +(4375 , 'Paco Herrero' , 'https://www.vinted.es/brand/paco-herrero'), +(35409 , 'Pois' , 'https://www.vinted.es/brand/pois'), +(362478 , 'Poisson D''amour' , 'https://www.vinted.es/brand/poisson-damour'), +(131736 , 'Poissons Blancs' , 'https://www.vinted.es/brand/poissons-blancs'), +(4351 , 'Poivre Blanc' , 'https://www.vinted.es/brand/poivre-blanc'), +(13133 , 'Point Mariage' , 'https://www.vinted.es/brand/point-mariage'), +(70650 , 'Porsche' , 'https://www.vinted.es/brand/porsche'), +(33403 , 'Poussière D''étole' , 'https://www.vinted.es/brand/poussiere-detole'), +(35147 , 'Parajumpers' , 'https://www.vinted.es/brand/parajumpers'), +(209046 , 'Power Rangers' , 'https://www.vinted.es/brand/power-rangers'), +(1361919 , 'Project Unknown' , 'https://www.vinted.es/brand/project-unknown'), +(22101 , 'Pepe' , 'https://www.vinted.es/brand/pepe'), +(53473 , 'Peperosa' , 'https://www.vinted.es/brand/peperosa'), +(359055 , 'Pepe Moll' , 'https://www.vinted.es/brand/pepe-moll'), +(194252 , 'Pepe Castell' , 'https://www.vinted.es/brand/pepe-castell'), +(299005 , 'Peperoncino' , 'https://www.vinted.es/brand/peperoncino'), +(141340 , 'Pepe Varo' , 'https://www.vinted.es/brand/pepe-varo'), +(315858 , 'Pepe Runa' , 'https://www.vinted.es/brand/pepe-runa'), +(555372 , 'Pepe Botella' , 'https://www.vinted.es/brand/pepe-botella'), +(540419 , 'PROJEKT PRODUKT' , 'https://www.vinted.es/brand/projekt-produkt'), +(98836 , 'PLANET' , 'https://www.vinted.es/brand/planet'), +(15885 , 'PLANETE INTERDITE' , 'https://www.vinted.es/brand/planete-interdite'), +(49169 , 'Planet Hollywood' , 'https://www.vinted.es/brand/planet-hollywood'), +(551624 , 'PLANETA' , 'https://www.vinted.es/brand/planeta'), +(4750831 , 'Planète Z' , 'https://www.vinted.es/brand/planete-z'), +(306680 , 'Planete Interdite PARIS' , 'https://www.vinted.es/brand/planete-interdite-paris'), +(522312 , 'Planet Gold' , 'https://www.vinted.es/brand/planet-gold'), +(1423844 , 'Planet Girl' , 'https://www.vinted.es/brand/planet-girl'), +(2029479 , 'Planete Interdite Paris Fashion' , 'https://www.vinted.es/brand/planete-interdite-paris-fashion'), +(1124108 , 'Planet Sports' , 'https://www.vinted.es/brand/planet-sports'), +(324333 , 'PARKA' , 'https://www.vinted.es/brand/parka'), +(158502 , 'Park Avenue' , 'https://www.vinted.es/brand/park-avenue'), +(575009 , 'Park Authority' , 'https://www.vinted.es/brand/park-authority'), +(216834 , 'Parka London' , 'https://www.vinted.es/brand/parka-london'), +(124452 , 'Parah' , 'https://www.vinted.es/brand/parah'), +(2359 , 'Parallèle' , 'https://www.vinted.es/brand/parallele'), +(383805 , 'Patrol' , 'https://www.vinted.es/brand/patrol'), +(321698 , 'Patrons Of Peace' , 'https://www.vinted.es/brand/patrons-of-peace'), +(45545 , 'Pedro Miralles' , 'https://www.vinted.es/brand/pedro-miralles'), +(208052 , 'Pretty Women' , 'https://www.vinted.es/brand/pretty-women'), +(232072 , 'Pretty Woman' , 'https://www.vinted.es/brand/pretty-woman'), +(365665 , 'Pili Carrera' , 'https://www.vinted.es/brand/pili-carrera'), +(369242 , 'Piero Guidi' , 'https://www.vinted.es/brand/piero-guidi'), +(285491 , 'Peg Perego' , 'https://www.vinted.es/brand/peg-perego'), +(31795 , 'Pause Café' , 'https://www.vinted.es/brand/pause-cafe'), +(377674 , 'PLACE' , 'https://www.vinted.es/brand/place'), +(134950 , 'Place Royale' , 'https://www.vinted.es/brand/place-royale'), +(383276 , 'Places + Faces' , 'https://www.vinted.es/brand/places-faces'), +(1035288 , 'Place du Soleil' , 'https://www.vinted.es/brand/place-du-soleil'), +(200244 , 'Plage' , 'https://www.vinted.es/brand/plage'), +(340017 , 'Peter Storm' , 'https://www.vinted.es/brand/peter-storm'), +(151854 , 'Pixi' , 'https://www.vinted.es/brand/pixi'), +(267528 , 'Pixie Mood' , 'https://www.vinted.es/brand/pixie-mood'), +(9844933 , 'Pixie Wing' , 'https://www.vinted.es/brand/pixie-wing'), +(4754212 , 'Pixie Mai' , 'https://www.vinted.es/brand/pixie-mai'), +(335714 , 'Pitillos' , 'https://www.vinted.es/brand/pitillos'), +(218322 , 'pixar' , 'https://www.vinted.es/brand/pixar'), +(574396 , 'Pixka' , 'https://www.vinted.es/brand/pixka'), +(2397206 , 'Pikitri' , 'https://www.vinted.es/brand/pikitri'), +(755602 , 'PAPILLON' , 'https://www.vinted.es/brand/papilon'), +(365141 , 'Pavillon' , 'https://www.vinted.es/brand/pavillon'), +(19509 , 'Purple''s' , 'https://www.vinted.es/brand/purples'), +(23789 , 'Purple Jam' , 'https://www.vinted.es/brand/purple-jam'), +(1243 , 'Purple Queen' , 'https://www.vinted.es/brand/purple-queen'), +(75094 , 'Purplerose' , 'https://www.vinted.es/brand/purplerose'), +(40191 , 'Purple' , 'https://www.vinted.es/brand/purple'), +(379855 , 'Purple Brain' , 'https://www.vinted.es/brand/purple-brain'), +(3820378 , 'PURPLE BRAND' , 'https://www.vinted.es/brand/purple-brand'), +(206050 , 'PURPLISH' , 'https://www.vinted.es/brand/purplish'), +(1739 , 'pucca' , 'https://www.vinted.es/brand/pucca'), +(357428 , 'Puckababy' , 'https://www.vinted.es/brand/puckababy'), +(348826 , 'Puckator' , 'https://www.vinted.es/brand/puckator'), +(289833 , 'Puccini' , 'https://www.vinted.es/brand/puccini'), +(480057 , 'Puccetti' , 'https://www.vinted.es/brand/puccetti'), +(4527058 , 'Puccihino' , 'https://www.vinted.es/brand/puccihino'), +(12555 , 'Paule Ka' , 'https://www.vinted.es/brand/paule-ka'), +(199786 , 'Paule Vasseur' , 'https://www.vinted.es/brand/paule-vasseur'), +(459577 , 'Princess Polly' , 'https://www.vinted.es/brand/princess-polly'), +(213528 , 'Pampolìna' , 'https://www.vinted.es/brand/pampolina'), +(126434 , 'Peter Hahn' , 'https://www.vinted.es/brand/peter-hahn'), +(39389 , 'Pashmina' , 'https://www.vinted.es/brand/pashmina'), +(826610 , 'PESO' , 'https://www.vinted.es/brand/peso'), +(232818 , 'Persona' , 'https://www.vinted.es/brand/persona'), +(12775 , 'Persol' , 'https://www.vinted.es/brand/persol'), +(278586 , 'Peserico' , 'https://www.vinted.es/brand/peserico'), +(33389 , 'People' , 'https://www.vinted.es/brand/people'), +(720411 , 'Persona by Marina Rinaldi' , 'https://www.vinted.es/brand/persona-by-marina-rinaldi'), +(29085 , 'People Tree' , 'https://www.vinted.es/brand/people-tree'), +(565734 , 'Peroni' , 'https://www.vinted.es/brand/peroni'), +(359849 , 'Pme Legend' , 'https://www.vinted.es/brand/pme-legend'), +(586797 , 'PHONE CASE' , 'https://www.vinted.es/brand/phone-case'), +(4707132 , 'The Fone Case Company' , 'https://www.vinted.es/brand/the-fone-case-company'), +(249808 , 'Paul Hewitt' , 'https://www.vinted.es/brand/paul-hewitt'), +(86840 , 'Paper Dolls' , 'https://www.vinted.es/brand/paper-dolls'), +(54687 , 'Paper doll' , 'https://www.vinted.es/brand/paper-doll'), +(298278 , 'Paz Rodriguez' , 'https://www.vinted.es/brand/paz-rodriguez'), +(42011 , 'Playlife' , 'https://www.vinted.es/brand/playlife'), +(1847 , 'Paquetage' , 'https://www.vinted.es/brand/paquetage'), +(306809 , 'Plage du Sud' , 'https://www.vinted.es/brand/plage-du-sud'), +(116538 , 'Pauline B.' , 'https://www.vinted.es/brand/pauline-b'), +(350503 , 'Primavera' , 'https://www.vinted.es/brand/primavera'), +(26627 , 'PART TWO' , 'https://www.vinted.es/brand/part-two'), +(38231 , 'Picard' , 'https://www.vinted.es/brand/picard'), +(153374 , 'Picadilly' , 'https://www.vinted.es/brand/picadilly'), +(387022 , 'PICARA' , 'https://www.vinted.es/brand/picara'), +(872005 , 'Picaros' , 'https://www.vinted.es/brand/picaros'), +(847252 , 'Picaldi' , 'https://www.vinted.es/brand/picaldi'), +(292883 , 'Pisamonas' , 'https://www.vinted.es/brand/pisamonas'), +(238872 , 'Pure & Basic' , 'https://www.vinted.es/brand/pure-basic'), +(2029484 , 'Pure & Basic Sun' , 'https://www.vinted.es/brand/pure-basic-sun'), +(2029483 , 'Pure & Basic young' , 'https://www.vinted.es/brand/pure-basic-young'), +(4665 , 'Pilgrim' , 'https://www.vinted.es/brand/pilgrim'), +(300508 , 'Pavers' , 'https://www.vinted.es/brand/pavers'), +(953474 , 'Paterson' , 'https://www.vinted.es/brand/paterson'), +(1466747 , 'Paters' , 'https://www.vinted.es/brand/paters'), +(351173 , 'Prima Moda' , 'https://www.vinted.es/brand/prima-moda'), +(4696256 , 'Pure & Simple' , 'https://www.vinted.es/brand/pure-simple'), +(90278 , 'Pure' , 'https://www.vinted.es/brand/pure'), +(88546 , 'Pure Oxygen' , 'https://www.vinted.es/brand/pure-oxygen'), +(276126 , 'Pur et Simple' , 'https://www.vinted.es/brand/pur-et-simple'), +(167266 , 'Pure Collection' , 'https://www.vinted.es/brand/pure-collection'), +(864189 , 'Pure Pure' , 'https://www.vinted.es/brand/pure-pure'), +(174396 , 'Puressentiel' , 'https://www.vinted.es/brand/puressentiel'), +(856664 , 'Pure Cashmere' , 'https://www.vinted.es/brand/pure-cashmere'), +(180488 , 'Polochon' , 'https://www.vinted.es/brand/polochon'), +(57886 , 'Pikeur' , 'https://www.vinted.es/brand/pikeur'), +(349651 , 'Pike Brothers' , 'https://www.vinted.es/brand/pike-brothers'), +(18079 , 'Paul Brial' , 'https://www.vinted.es/brand/paul-brial'), +(289235 , 'P&C' , 'https://www.vinted.es/brand/pc'), +(199906 , 'PM LOVING' , 'https://www.vinted.es/brand/pm-loving'), +(48671 , 'P&M' , 'https://www.vinted.es/brand/pm'), +(169828 , 'P.S.' , 'https://www.vinted.es/brand/ps'), +(10007 , 'P&Y' , 'https://www.vinted.es/brand/py'), +(177124 , 'P&G' , 'https://www.vinted.es/brand/pg'), +(682307 , 'P&T' , 'https://www.vinted.es/brand/pt'), +(301290 , 'Personal' , 'https://www.vinted.es/brand/personal'), +(376456 , 'PERSO' , 'https://www.vinted.es/brand/perso'), +(254526 , 'Personal Affairs' , 'https://www.vinted.es/brand/personal-affairs'), +(168090 , 'Pulcino' , 'https://www.vinted.es/brand/pulcino'), +(1258614 , 'Purlina' , 'https://www.vinted.es/brand/purlina'), +(88314 , 'Panama Jack' , 'https://www.vinted.es/brand/panama-jack'), +(10187 , 'Reserved' , 'https://www.vinted.es/brand/reserved'), +(5834321 , 'Reserved YFL' , 'https://www.vinted.es/brand/reserved-yfl'), +(1770043 , 'Reserved Kids' , 'https://www.vinted.es/brand/reserved-kids'), +(2448339 , 'Reserved Baby' , 'https://www.vinted.es/brand/reserved-baby'), +(428 , 'reserve naturelle' , 'https://www.vinted.es/brand/reserve-naturelle'), +(88 , 'Ralph Lauren' , 'https://www.vinted.es/brand/ralph-lauren'), +(2847834 , 'Ralph Lauren Purple Label' , 'https://www.vinted.es/brand/ralph-lauren-purple-label'), +(745321 , 'Palace x Ralph Lauren' , 'https://www.vinted.es/brand/palace-x-ralph-lauren'), +(174 , 'River Island' , 'https://www.vinted.es/brand/river-island'), +(6842771 , 'River Island Petite' , 'https://www.vinted.es/brand/river-island-petite'), +(6575691 , 'River Island Plus' , 'https://www.vinted.es/brand/river-island-plus'), +(162 , 'Reebok' , 'https://www.vinted.es/brand/reebok'), +(701557 , 'Reebok Classic' , 'https://www.vinted.es/brand/reebok-classic'), +(6502477 , 'Reebok x Cardi B' , 'https://www.vinted.es/brand/reebok-x-cardi-b'), +(5251673 , 'Maison Margiela x Reebok' , 'https://www.vinted.es/brand/maison-margiela-x-reebok'), +(6131515 , 'Reebok x Gigi Hadid' , 'https://www.vinted.es/brand/reebok-x-gigi-hadid'), +(6408609 , 'Reebok x adidas' , 'https://www.vinted.es/brand/reebok-x-adidas'), +(287189 , 'Ravensburger' , 'https://www.vinted.es/brand/ravensburger'), +(27 , 'Roxy' , 'https://www.vinted.es/brand/roxy'), +(179520 , 'Roy Roger''s' , 'https://www.vinted.es/brand/roy-rogers'), +(39541 , 'Roly' , 'https://www.vinted.es/brand/roly'), +(309423 , 'Rox' , 'https://www.vinted.es/brand/rox'), +(114692 , 'Royal' , 'https://www.vinted.es/brand/royal'), +(30891 , 'Roxi' , 'https://www.vinted.es/brand/roxi'), +(1778258 , 'ROYAL ALBERT' , 'https://www.vinted.es/brand/royal-albert'), +(2087 , 'Rosy' , 'https://www.vinted.es/brand/rosy'), +(2261 , 'Royal Wear' , 'https://www.vinted.es/brand/royal-wear'), +(402283 , 'Royal Chicks' , 'https://www.vinted.es/brand/royal-chicks'), +(242 , 'Ray-Ban' , 'https://www.vinted.es/brand/ray-ban'), +(1501 , 'Replay' , 'https://www.vinted.es/brand/replay'), +(281637 , 'Replay & Sons' , 'https://www.vinted.es/brand/replay-sons'), +(1475 , 'Rinascimento' , 'https://www.vinted.es/brand/rinascimento'), +(271 , 'River Woods' , 'https://www.vinted.es/brand/river-woods'), +(291 , 'Rip Curl' , 'https://www.vinted.es/brand/rip-curl'), +(14317 , 'Regatta' , 'https://www.vinted.es/brand/regatta'), +(854766 , 'renatta&go' , 'https://www.vinted.es/brand/renattago'), +(7647 , 'Review' , 'https://www.vinted.es/brand/review'), +(6283 , 'Rainbow' , 'https://www.vinted.es/brand/rainbow'), +(3350421 , 'Rainbow High' , 'https://www.vinted.es/brand/rainbow-high'), +(287889 , 'Rainbow Club' , 'https://www.vinted.es/brand/rainbow-club'), +(5849797 , 'Rainbows' , 'https://www.vinted.es/brand/rainbows'), +(1301 , 'Redskins' , 'https://www.vinted.es/brand/redskins'), +(6381847 , 'Redskins Kids' , 'https://www.vinted.es/brand/redskins-kids'), +(2579 , 'Reiss' , 'https://www.vinted.es/brand/reiss'), +(164464 , 'R essentiel' , 'https://www.vinted.es/brand/r-essentiel'), +(71942 , 'Reisenthel' , 'https://www.vinted.es/brand/reisenthel'), +(555272 , 'REIS' , 'https://www.vinted.es/brand/reis'), +(394412 , 'Reisport' , 'https://www.vinted.es/brand/reisport'), +(41753 , 'Rebel' , 'https://www.vinted.es/brand/rebel'), +(423961 , 'Rebel Queen' , 'https://www.vinted.es/brand/rebel-queen'), +(381208 , 'Rebel by Primark' , 'https://www.vinted.es/brand/rebel-by-primark'), +(1270260 , 'Rebelz' , 'https://www.vinted.es/brand/rebelz'), +(427080 , 'Rebell' , 'https://www.vinted.es/brand/rebell'), +(418778 , 'Rebellious' , 'https://www.vinted.es/brand/rebellious'), +(394656 , 'Rebellious fashion' , 'https://www.vinted.es/brand/rebellious-fashion'), +(185288 , 'Rebel 8' , 'https://www.vinted.es/brand/rebel-8'), +(826561 , 'Rebelhorn' , 'https://www.vinted.es/brand/rebelhorn'), +(335179 , 'Rebella' , 'https://www.vinted.es/brand/rebella'), +(115698 , 'ROMAN' , 'https://www.vinted.es/brand/roman'), +(83490 , 'ROMANO' , 'https://www.vinted.es/brand/romano'), +(269763 , 'Romanelli' , 'https://www.vinted.es/brand/romanelli'), +(24393 , 'Romance' , 'https://www.vinted.es/brand/romance'), +(248038 , 'ROMAN''S' , 'https://www.vinted.es/brand/romans'), +(374804 , 'Romani' , 'https://www.vinted.es/brand/romani'), +(351595 , 'Romantica' , 'https://www.vinted.es/brand/romantica'), +(1164870 , 'ROMANO SICARI' , 'https://www.vinted.es/brand/romano-sicari'), +(545360 , 'Roman Originals' , 'https://www.vinted.es/brand/roman-originals'), +(112452 , 'Romagnoli' , 'https://www.vinted.es/brand/romagnoli'), +(33855 , 'Red Herring' , 'https://www.vinted.es/brand/red-herring'), +(1965 , 'Roberto Cavalli' , 'https://www.vinted.es/brand/roberto-cavalli'), +(2630921 , 'Roberto Cavalli Sport' , 'https://www.vinted.es/brand/roberto-cavalli-sport'), +(3245755 , 'Roberto Cavalli x H&M' , 'https://www.vinted.es/brand/roberto-cavalli-x-hm'), +(577 , 'Romwe' , 'https://www.vinted.es/brand/romwe'), +(64844 , 'Romeo Gigli' , 'https://www.vinted.es/brand/romeo-gigli'), +(184738 , 'Rowenta' , 'https://www.vinted.es/brand/rowenta'), +(295417 , 'Römer' , 'https://www.vinted.es/brand/romer'), +(81546 , 'Romeo Pour Juliette' , 'https://www.vinted.es/brand/romeo-pour-juliette'), +(77998 , 'Romeo & Juliet Couture' , 'https://www.vinted.es/brand/romeo-juliet-couture'), +(363876 , 'Romester' , 'https://www.vinted.es/brand/romester'), +(63634 , 'Romeo' , 'https://www.vinted.es/brand/romeo'), +(580318 , 'ROMÉO ELVIS' , 'https://www.vinted.es/brand/romeo-elvis'), +(1130414 , 'Romeo & Julieta' , 'https://www.vinted.es/brand/romeo-julieta'), +(6615 , 'Rieker' , 'https://www.vinted.es/brand/rieker'), +(297835 , 'Rik & Rok' , 'https://www.vinted.es/brand/rik-rok'), +(184668 , 'Rituals' , 'https://www.vinted.es/brand/rituals'), +(395361 , 'RETOUR' , 'https://www.vinted.es/brand/retour'), +(6006208 , 'Retour jeans' , 'https://www.vinted.es/brand/retour-jeans'), +(77934 , 'Retour de Plage' , 'https://www.vinted.es/brand/retour-de-plage'), +(16197 , 'Revolution' , 'https://www.vinted.es/brand/revolution'), +(561969 , 'Revolution Pro' , 'https://www.vinted.es/brand/revolution-pro'), +(8059105 , 'RevolutionRace' , 'https://www.vinted.es/brand/revolutionrace'), +(5167557 , 'révolution shop' , 'https://www.vinted.es/brand/revolution-shop'), +(1681378 , 'recolution' , 'https://www.vinted.es/brand/recolution'), +(61178 , 'roccobarocco' , 'https://www.vinted.es/brand/roccobarocco'), +(174318 , 'red castle' , 'https://www.vinted.es/brand/red-castle'), +(146952 , 'Reclaimed Vintage' , 'https://www.vinted.es/brand/reclaimed-vintage'), +(278167 , 'Radley' , 'https://www.vinted.es/brand/radley'), +(7229 , 'Rivaldi' , 'https://www.vinted.es/brand/rivaldi'), +(405667 , 'RIVALDI BLACK' , 'https://www.vinted.es/brand/rivaldi-black'), +(235350 , 'Rival de Loop' , 'https://www.vinted.es/brand/rival-de-loop'), +(264900 , 'Rylko' , 'https://www.vinted.es/brand/rylko'), +(4691474 , 'Rougegorge' , 'https://www.vinted.es/brand/rougegorge'), +(3431 , 'Repetto' , 'https://www.vinted.es/brand/repetto'), +(27683 , 'Reporter' , 'https://www.vinted.es/brand/reporter'), +(851279 , 'Reporter Young' , 'https://www.vinted.es/brand/reporter-young'), +(17385 , 'Rifle' , 'https://www.vinted.es/brand/rifle'), +(210272 , 'Riflessi' , 'https://www.vinted.es/brand/riflessi'), +(1247198 , 'Riflessi Urbani' , 'https://www.vinted.es/brand/riflessi-urbani'), +(670931 , 'Rifle paper co.' , 'https://www.vinted.es/brand/rifle-paper-co'), +(2024416 , 'Riffle Amsterdam' , 'https://www.vinted.es/brand/riffle-amsterdam'), +(693476 , 'Ridley’s' , 'https://www.vinted.es/brand/ridleys'), +(720262 , 'Riley' , 'https://www.vinted.es/brand/riley'), +(1432391 , 'Rife' , 'https://www.vinted.es/brand/rife'), +(71598 , 'Refrigiwear' , 'https://www.vinted.es/brand/refrigiwear'), +(279219 , 'Ricosta' , 'https://www.vinted.es/brand/ricosta'), +(63156 , 'Remington' , 'https://www.vinted.es/brand/remington'), +(506 , 'Rica Lewis' , 'https://www.vinted.es/brand/rica-lewis'), +(663 , 'René Derhy' , 'https://www.vinted.es/brand/rene-derhy'), +(90366 , 'Richmond' , 'https://www.vinted.es/brand/richmond'), +(438277 , 'Richmond & Finch' , 'https://www.vinted.es/brand/richmond-finch'), +(201584 , 'Richter' , 'https://www.vinted.es/brand/richter'), +(87824 , 'Rich & Royal' , 'https://www.vinted.es/brand/rich-royal'), +(280132 , 'Reima' , 'https://www.vinted.es/brand/reima'), +(312178 , 'Redmax' , 'https://www.vinted.es/brand/redmax'), +(271481 , 'Reitmans' , 'https://www.vinted.es/brand/reitmans'), +(297895 , 'Reina' , 'https://www.vinted.es/brand/reina'), +(26709 , 'Remake' , 'https://www.vinted.es/brand/remake'), +(657393 , 'REMAIN' , 'https://www.vinted.es/brand/remain'), +(1129454 , 'Reina Olga' , 'https://www.vinted.es/brand/reina-olga'), +(3216929 , 'REMAIN Birger Christensen' , 'https://www.vinted.es/brand/remain-birger-christensen'), +(2474042 , 'Remarkable Paris' , 'https://www.vinted.es/brand/remarkable-paris'), +(962989 , 'Reinaldo Lourenço' , 'https://www.vinted.es/brand/reinaldo-lourenco'), +(50897 , 'Relish' , 'https://www.vinted.es/brand/relish'), +(1879 , 'Rodier' , 'https://www.vinted.es/brand/rodier'), +(839229 , 'Reinders' , 'https://www.vinted.es/brand/reinders'), +(19537 , 'RG512' , 'https://www.vinted.es/brand/rg512'), +(162642 , 'Rossmann' , 'https://www.vinted.es/brand/rossmann'), +(313669 , 'Real Madrid' , 'https://www.vinted.es/brand/real-madrid'), +(46411 , 'RAW' , 'https://www.vinted.es/brand/raw'), +(192958 , 'Rawlings' , 'https://www.vinted.es/brand/rawlings'), +(103476 , 'RAW BLUE' , 'https://www.vinted.es/brand/raw-blue'), +(4206731 , 'Raw Sugar' , 'https://www.vinted.es/brand/raw-sugar'), +(2436935 , 'Raweks' , 'https://www.vinted.es/brand/raweks'), +(173634 , 'Ragazza' , 'https://www.vinted.es/brand/ragazza'), +(28039 , 'RAD' , 'https://www.vinted.es/brand/rad'), +(1932769 , 'RAIZZED' , 'https://www.vinted.es/brand/raizzed'), +(8405 , 'RIU' , 'https://www.vinted.es/brand/riu'), +(473815 , 'RIU Paris' , 'https://www.vinted.es/brand/riu-paris'), +(115306 , 'Roberto Verino' , 'https://www.vinted.es/brand/roberto-verino'), +(239 , 'redial' , 'https://www.vinted.es/brand/redial'), +(35043 , 'Red Valentino' , 'https://www.vinted.es/brand/red-valentino'), +(154638 , 'Redwall' , 'https://www.vinted.es/brand/redwall'), +(19387 , 'Rossignol' , 'https://www.vinted.es/brand/rossignol'), +(286692 , 'Roly Poly' , 'https://www.vinted.es/brand/roly-poly'), +(2681 , 'The Rolling Stones' , 'https://www.vinted.es/brand/the-rolling-stones'), +(13171 , 'Roland Garros' , 'https://www.vinted.es/brand/roland-garros'), +(281470 , 'Rollerblade' , 'https://www.vinted.es/brand/rollerblade'), +(465363 , 'Roller' , 'https://www.vinted.es/brand/roller'), +(417646 , 'REPRESENT' , 'https://www.vinted.es/brand/represent'), +(309717 , 'Raid' , 'https://www.vinted.es/brand/raid'), +(2743 , 'Raiders' , 'https://www.vinted.es/brand/raiders'), +(292542 , 'Raidlight' , 'https://www.vinted.es/brand/raidlight'), +(914094 , 'raid wide fit' , 'https://www.vinted.es/brand/raid-wide-fit'), +(110444 , 'R&F' , 'https://www.vinted.es/brand/rf'), +(118456 , 'Rains' , 'https://www.vinted.es/brand/rains'), +(24695 , 'R&G' , 'https://www.vinted.es/brand/rg'), +(10627 , 'Retro Jeans' , 'https://www.vinted.es/brand/retro-jeans'), +(16597 , 'Reiko' , 'https://www.vinted.es/brand/reiko'), +(92672 , 'Reckon' , 'https://www.vinted.es/brand/reckon'), +(587910 , 'Reike Nen' , 'https://www.vinted.es/brand/reike-nen'), +(3230601 , 'Rei Kawakubo' , 'https://www.vinted.es/brand/rei-kawakubo'), +(17229 , 'Refresh' , 'https://www.vinted.es/brand/refresh'), +(292 , 'Renatto Bene' , 'https://www.vinted.es/brand/renatto-bene'), +(279685 , 'Renatto Bene Paris' , 'https://www.vinted.es/brand/renatto-bene-paris'), +(118678 , 'Renato Balestra' , 'https://www.vinted.es/brand/renato-balestra'), +(7271602 , 'Palace x Reebok Classic' , 'https://www.vinted.es/brand/palace-x-reebok-classic'), +(11273 , 'Religion' , 'https://www.vinted.es/brand/religion'), +(641 , 'Rosebud' , 'https://www.vinted.es/brand/rosebud'), +(2125 , 'Rosebudgirl' , 'https://www.vinted.es/brand/rosebudgirl'), +(422262 , 'Rosebullet' , 'https://www.vinted.es/brand/rosebullet'), +(654568 , 'Roze' , 'https://www.vinted.es/brand/roze'), +(899621 , 'Rozes of Avalon' , 'https://www.vinted.es/brand/rozes-of-avalon'), +(1164773 , 'Roz & ali' , 'https://www.vinted.es/brand/roz-ali'), +(381024 , 'Robe di Kappa' , 'https://www.vinted.es/brand/robe-di-kappa'), +(36469 , 'Rose' , 'https://www.vinted.es/brand/rose'), +(162954 , 'Roberta Biagi' , 'https://www.vinted.es/brand/roberta-biagi'), +(7279 , 'Revlon' , 'https://www.vinted.es/brand/revlon'), +(478629 , 'Rex London' , 'https://www.vinted.es/brand/rex-london'), +(579376 , 'Red London' , 'https://www.vinted.es/brand/red-london'), +(83102 , 'Russell & Bromley' , 'https://www.vinted.es/brand/russell-bromley'), +(315561 , 'Radical' , 'https://www.vinted.es/brand/radical'), +(386029 , 'Rada' , 'https://www.vinted.es/brand/rada'), +(258642 , 'Radiant' , 'https://www.vinted.es/brand/radiant'), +(47139 , 'Rado' , 'https://www.vinted.es/brand/rado'), +(194732 , 'Radiante' , 'https://www.vinted.es/brand/radiante'), +(562597 , 'Räder' , 'https://www.vinted.es/brand/rader'), +(23365 , 'radii' , 'https://www.vinted.es/brand/radii'), +(426741 , 'Radar' , 'https://www.vinted.es/brand/radar'), +(1055 , 'Rare London' , 'https://www.vinted.es/brand/rare-london'), +(84620 , 'Rosso' , 'https://www.vinted.es/brand/rosso'), +(71988 , 'Rossodisera' , 'https://www.vinted.es/brand/rossodisera'), +(3635695 , 'ROSSO PORPORA' , 'https://www.vinted.es/brand/rosso-porpora'), +(412011 , 'Rossopuro' , 'https://www.vinted.es/brand/rossopuro'), +(273192 , 'Rosso35' , 'https://www.vinted.es/brand/rosso35'), +(27083 , 'ROSSI' , 'https://www.vinted.es/brand/rossi'), +(144058 , 'Rossella Carrara' , 'https://www.vinted.es/brand/rossella-carrara'), +(224894 , 'Rossa Miss' , 'https://www.vinted.es/brand/rossa-miss'), +(35991 , 'Ross' , 'https://www.vinted.es/brand/ross'), +(458231 , 'Riverdale' , 'https://www.vinted.es/brand/riverdale'), +(295312 , 'Revelation' , 'https://www.vinted.es/brand/revelation'), +(110776 , 'Rimmel' , 'https://www.vinted.es/brand/rimmel'), +(157678 , 'Ragazzi' , 'https://www.vinted.es/brand/ragazzi'), +(348 , 'Rare' , 'https://www.vinted.es/brand/rare'), +(372729 , 'Rare Editions' , 'https://www.vinted.es/brand/rare-editions'), +(3293817 , 'Rare Beauty' , 'https://www.vinted.es/brand/rare-beauty'), +(1690879 , 'rare Paris' , 'https://www.vinted.es/brand/rare-paris'), +(5582686 , 'Rare Humans' , 'https://www.vinted.es/brand/rare-humans'), +(7638383 , 'Rare-Romance' , 'https://www.vinted.es/brand/rare-romance'), +(2655969 , 'Rareeverywhere' , 'https://www.vinted.es/brand/rareeverywhere'), +(21279 , 'Rae' , 'https://www.vinted.es/brand/rae'), +(512 , 'Reqins' , 'https://www.vinted.es/brand/reqins'), +(4125 , 'REQUINS' , 'https://www.vinted.es/brand/requins'), +(292700 , 'Ricard' , 'https://www.vinted.es/brand/ricard'), +(313653 , 'Ricardo Santiago' , 'https://www.vinted.es/brand/ricardo-santiago'), +(271178 , 'Ricardo' , 'https://www.vinted.es/brand/ricardo'), +(1066216 , 'Ricarda M.' , 'https://www.vinted.es/brand/ricarda-m'), +(771646 , 'Richard Ginori' , 'https://www.vinted.es/brand/richard-ginori'), +(486682 , 'Richard' , 'https://www.vinted.es/brand/richard'), +(244992 , 'Richards' , 'https://www.vinted.es/brand/richards'), +(57786 , 'Richard Gampel' , 'https://www.vinted.es/brand/richard-gampel'), +(5975779 , 'H&M x Richard Allan' , 'https://www.vinted.es/brand/hm-x-richard-allan'), +(147850 , 'Richard Grand' , 'https://www.vinted.es/brand/richard-grand'), +(71074 , 'Ragwear' , 'https://www.vinted.es/brand/ragwear'), +(3372452 , 'Ragwear Plus' , 'https://www.vinted.es/brand/ragwear-plus'), +(20385 , 'Red Queen' , 'https://www.vinted.es/brand/red-queen'), +(109584 , 'Rouge' , 'https://www.vinted.es/brand/rouge'), +(191836 , 'Rouge Bijoux' , 'https://www.vinted.es/brand/rouge-bijoux'), +(294423 , 'Rouge et Or' , 'https://www.vinted.es/brand/rouge-et-or'), +(469099 , 'ROUGE BUNNY ROUGE' , 'https://www.vinted.es/brand/rouge-bunny-rouge'), +(282478 , 'Rouje' , 'https://www.vinted.es/brand/rouje'), +(69122 , 'ROUTE 66' , 'https://www.vinted.es/brand/route-66'), +(4693945 , 'Roger & Gallet' , 'https://www.vinted.es/brand/roger-gallet'), +(91916 , 'Roger Vivier' , 'https://www.vinted.es/brand/roger-vivier'), +(455062 , 'Rough Studios' , 'https://www.vinted.es/brand/rough-studios'), +(110548 , 'Regular' , 'https://www.vinted.es/brand/regular'), +(172530 , 'Regular Denim' , 'https://www.vinted.es/brand/regular-denim'), +(189744 , 'Rojo' , 'https://www.vinted.es/brand/rojo'), +(320457 , 'Robocar POLI' , 'https://www.vinted.es/brand/robocar-poli'), +(57826 , 'Roots' , 'https://www.vinted.es/brand/roots'), +(281911 , 'Room Seven' , 'https://www.vinted.es/brand/room-seven'), +(76360 , 'Rodo' , 'https://www.vinted.es/brand/rodo'), +(446399 , 'Roos' , 'https://www.vinted.es/brand/roos'), +(335037 , 'Rookie' , 'https://www.vinted.es/brand/rookie'), +(1322151 , 'ROTORCRAFT' , 'https://www.vinted.es/brand/rotorcraft'), +(295030 , 'ROOBIN''S' , 'https://www.vinted.es/brand/roobins'), +(1096969 , 'Roco' , 'https://www.vinted.es/brand/roco'), +(14531 , 'Ritchie' , 'https://www.vinted.es/brand/ritchie'), +(302020 , 'RITCHIE JEANS' , 'https://www.vinted.es/brand/ritchie-jeans'), +(192290 , 'Renault' , 'https://www.vinted.es/brand/renault'), +(429923 , 'Rococo' , 'https://www.vinted.es/brand/rococo'), +(24481 , 'Rochas' , 'https://www.vinted.es/brand/rochas'), +(55715 , 'Rockport' , 'https://www.vinted.es/brand/rockport'), +(284611 , 'Roces' , 'https://www.vinted.es/brand/roces'), +(286330 , 'Rockrider' , 'https://www.vinted.es/brand/rockrider'), +(32917 , 'Rockstar' , 'https://www.vinted.es/brand/rockstar'), +(318959 , 'Rails' , 'https://www.vinted.es/brand/rails'), +(330688 , 'Raintex' , 'https://www.vinted.es/brand/raintex'), +(959177 , 'RainPharma' , 'https://www.vinted.es/brand/rainpharma'), +(346980 , 'Ransom' , 'https://www.vinted.es/brand/ransom'), +(3706428 , 'Rainer Klöhn' , 'https://www.vinted.es/brand/rainer-klohn'), +(11343 , 'RVCA' , 'https://www.vinted.es/brand/rvca'), +(177016 , 'Real Leather' , 'https://www.vinted.es/brand/real-leather'), +(296961 , 'Renée' , 'https://www.vinted.es/brand/renee'), +(176170 , 'René Furterer' , 'https://www.vinted.es/brand/rene-furterer'), +(526155 , 'René Chagal' , 'https://www.vinted.es/brand/rene-chagal'), +(309409 , 'René Rofé' , 'https://www.vinted.es/brand/rene-rofe'), +(368886 , 'René' , 'https://www.vinted.es/brand/rene'), +(351499 , 'René Lazard' , 'https://www.vinted.es/brand/rene-lazard'), +(569 , 'Red Soul' , 'https://www.vinted.es/brand/red-soul'), +(380025 , 'RED SOUND' , 'https://www.vinted.es/brand/red-sound'), +(107488 , 'Reflex' , 'https://www.vinted.es/brand/reflex'), +(280376 , 'Reflections' , 'https://www.vinted.es/brand/reflections'), +(270 , 'Rocket Dog' , 'https://www.vinted.es/brand/rocket-dog'), +(60418 , 'Rosa' , 'https://www.vinted.es/brand/rosa'), +(238498 , 'ROSALITA' , 'https://www.vinted.es/brand/rosalita'), +(121332 , 'Rosa Clará' , 'https://www.vinted.es/brand/rosa-clara'), +(35477 , 'Rosa Rosam' , 'https://www.vinted.es/brand/rosa-rosam'), +(192562 , 'Rosalita McGee' , 'https://www.vinted.es/brand/rosalita-mcgee'), +(6387 , 'Rosa & Rose' , 'https://www.vinted.es/brand/rosa-rose'), +(457538 , 'Rosas Rojas' , 'https://www.vinted.es/brand/rosas-rojas'), +(367621 , 'Rosa Junio' , 'https://www.vinted.es/brand/rosa-junio'), +(44843 , 'Rosa Lipty' , 'https://www.vinted.es/brand/rosa-lipty'), +(167590 , 'Rosapois' , 'https://www.vinted.es/brand/rosapois'), +(78142 , 'Royal Mer' , 'https://www.vinted.es/brand/royal-mer'), +(1309493 , 'Royal Beauty' , 'https://www.vinted.es/brand/royal-beauty'), +(385919 , 'Royal Class' , 'https://www.vinted.es/brand/royal-class'), +(28073 , 'Royal Compagnie' , 'https://www.vinted.es/brand/royal-compagnie'), +(151934 , 'Royal RepubliQ' , 'https://www.vinted.es/brand/royal-republiq'), +(657070 , 'Royal Temptation' , 'https://www.vinted.es/brand/royal-temptation'), +(287478 , 'Reer' , 'https://www.vinted.es/brand/reer'), +(456608 , 'Refrigue' , 'https://www.vinted.es/brand/refrigue'), +(140734 , 'R Edition' , 'https://www.vinted.es/brand/r-edition'), +(17693 , 'Reef' , 'https://www.vinted.es/brand/reef'), +(4650035 , 'Revers Jeans' , 'https://www.vinted.es/brand/revers-jeans'), +(157426 , 'Risskio' , 'https://www.vinted.es/brand/risskio'), +(321080 , 'Re-Dress' , 'https://www.vinted.es/brand/re-dress'), +(356576 , 'Rocha John Rocha' , 'https://www.vinted.es/brand/rocha-john-rocha'), +(54251 , 'Rino & Pelle' , 'https://www.vinted.es/brand/rino-pelle'), +(695 , 'Rose Player' , 'https://www.vinted.es/brand/rose-player'), +(18981 , 'rosemétal' , 'https://www.vinted.es/brand/rosemetal'), +(51009 , 'Roseanna' , 'https://www.vinted.es/brand/roseanna'), +(273847 , 'Rose et Chocolat' , 'https://www.vinted.es/brand/rose-et-chocolat'), +(102908 , 'rosegal' , 'https://www.vinted.es/brand/rosegal'), +(272619 , 'Rosefield' , 'https://www.vinted.es/brand/rosefield'), +(394369 , 'Rosenthal' , 'https://www.vinted.es/brand/rosenthal'), +(294439 , 'Rue des Abbesses' , 'https://www.vinted.es/brand/rue-des-abbesses'), +(188448 , 'Robeez' , 'https://www.vinted.es/brand/robeez'), +(308104 , 'Russell' , 'https://www.vinted.es/brand/russell'), +(301356 , 'Russell Athletic' , 'https://www.vinted.es/brand/russell-athletic'), +(324411 , 'Russell Collection' , 'https://www.vinted.es/brand/russell-collection'), +(413869 , 'Russell Hobbs' , 'https://www.vinted.es/brand/russell-hobbs'), +(26885 , 'Russel Athletic' , 'https://www.vinted.es/brand/russel-athletic'), +(263860 , 'Russel Collection' , 'https://www.vinted.es/brand/russel-collection'), +(421192 , 'Rossini' , 'https://www.vinted.es/brand/rossini'), +(187616 , 'Rosita' , 'https://www.vinted.es/brand/rosita'), +(23273 , 'Rodeo' , 'https://www.vinted.es/brand/rodeo'), +(927127 , 'Rodeo Sports' , 'https://www.vinted.es/brand/rodeo-sports'), +(244456 , 'rodenstock' , 'https://www.vinted.es/brand/rodenstock'), +(86258 , 'RAER' , 'https://www.vinted.es/brand/raer'), +(2359438 , 'Rae Dunn' , 'https://www.vinted.es/brand/rae-dunn'), +(3411030 , 'RAEBURN' , 'https://www.vinted.es/brand/raeburn'), +(76170 , 'Riverside' , 'https://www.vinted.es/brand/riverside'), +(6433 , 'River Skin' , 'https://www.vinted.es/brand/river-skin'), +(31853 , 'River Stone' , 'https://www.vinted.es/brand/river-stone'), +(181594 , 'River' , 'https://www.vinted.es/brand/river'), +(3602815 , 'RIVER FLOWER Collection' , 'https://www.vinted.es/brand/river-flower-collection'), +(8253 , 'RAS' , 'https://www.vinted.es/brand/ras'), +(36521 , 'Rasurel' , 'https://www.vinted.es/brand/rasurel'), +(84350 , 'RASPBERRY' , 'https://www.vinted.es/brand/raspberry'), +(202640 , 'RASTA' , 'https://www.vinted.es/brand/rasta'), +(642084 , 'Rasán' , 'https://www.vinted.es/brand/rasan'), +(302189 , 'Raser' , 'https://www.vinted.es/brand/raser'), +(328453 , 'Rastar' , 'https://www.vinted.es/brand/rastar'), +(136994 , 'Rascal' , 'https://www.vinted.es/brand/rascal'), +(330407 , 'РАССВЕТ' , 'https://www.vinted.es/brand/paccbet'), +(12015 , 'R. Display' , 'https://www.vinted.es/brand/r-display'), +(69280 , 'Rabe' , 'https://www.vinted.es/brand/rabe'), +(3602087 , 'Ra Boutique' , 'https://www.vinted.es/brand/ra-boutique'), +(295273 , 'Rabens Saloner' , 'https://www.vinted.es/brand/rabens-saloner'), +(415379 , 'Rabbit Skins' , 'https://www.vinted.es/brand/rabbit-skins'), +(2760968 , 'RABBIT+BEAR' , 'https://www.vinted.es/brand/rabbitbear'), +(35629 , 'Rabbit' , 'https://www.vinted.es/brand/rabbit'), +(360051 , 'Rab' , 'https://www.vinted.es/brand/rab'), +(1373034 , 'RABARBAR' , 'https://www.vinted.es/brand/rabarbar'), +(340261 , 'Reborn' , 'https://www.vinted.es/brand/reborn'), +(7470691 , 'Reborn Device' , 'https://www.vinted.es/brand/reborn-device'), +(194078 , 'Rebecca' , 'https://www.vinted.es/brand/rebecca'), +(147202 , 'Rebecca Minkoff' , 'https://www.vinted.es/brand/rebecca-minkoff'), +(264920 , 'Rebecca Molenaar' , 'https://www.vinted.es/brand/rebecca-molenaar'), +(75752 , 'Rebecca Taylor' , 'https://www.vinted.es/brand/rebecca-taylor'), +(167938 , 'Rebecca White' , 'https://www.vinted.es/brand/rebecca-white'), +(144914 , 'Rebecca Bonbon' , 'https://www.vinted.es/brand/rebecca-bonbon'), +(251216 , 'Rebecca Stella' , 'https://www.vinted.es/brand/rebecca-stella'), +(1782141 , 'Rebecca Vallance' , 'https://www.vinted.es/brand/rebecca-vallance'), +(4283511 , 'Rebecca Kool' , 'https://www.vinted.es/brand/rebecca-kool'), +(5314692 , 'Rebecca de Ravenel' , 'https://www.vinted.es/brand/rebecca-de-ravenel'), +(18143 , 'Robin Ruth' , 'https://www.vinted.es/brand/robin-ruth'), +(6965 , 'Reminiscence' , 'https://www.vinted.es/brand/reminiscence'), +(522929 , 'Reminiscence Boy' , 'https://www.vinted.es/brand/reminiscence-boy'), +(418807 , 'Rouje x My Little Box' , 'https://www.vinted.es/brand/rouje-x-my-little-box'), +(186700 , 'Rougj+' , 'https://www.vinted.es/brand/rougj'), +(624867 , 'Route Des Garden' , 'https://www.vinted.es/brand/route-des-garden'), +(308052 , 'Route One' , 'https://www.vinted.es/brand/route-one'), +(519575 , 'rocha. little rocha' , 'https://www.vinted.es/brand/rocha-little-rocha'), +(336318 , 'ROCHA' , 'https://www.vinted.es/brand/rocha'), +(1689421 , 'ROCHAMBEAU' , 'https://www.vinted.es/brand/rochambeau'), +(217678 , 'Racer' , 'https://www.vinted.es/brand/racer'), +(350159 , 'RAZER' , 'https://www.vinted.es/brand/razer'), +(595799 , 'RAME' , 'https://www.vinted.es/brand/rame'), +(93348 , 'Rag & Bone' , 'https://www.vinted.es/brand/rag-bone'), +(85816 , 'Rut&Circle' , 'https://www.vinted.es/brand/rutcircle'), +(171638 , 'Remonte' , 'https://www.vinted.es/brand/remonte'), +(439516 , 'Rock a Bye Baby Boutique' , 'https://www.vinted.es/brand/rock-a-bye-baby-boutique'), +(620534 , 'Refill' , 'https://www.vinted.es/brand/refill'), +(426930 , 'Reece' , 'https://www.vinted.es/brand/reece'), +(534264 , 'Ryderwear' , 'https://www.vinted.es/brand/ryderwear'), +(227178 , 'RenBut' , 'https://www.vinted.es/brand/renbut'), +(771246 , 'Red Button' , 'https://www.vinted.es/brand/red-button'), +(85746 , 'Red Bull' , 'https://www.vinted.es/brand/red-bull'), +(47661 , 'Rick Cardona' , 'https://www.vinted.es/brand/rick-cardona'), +(4789 , 'Ravel' , 'https://www.vinted.es/brand/ravel'), +(382494 , 'Rave' , 'https://www.vinted.es/brand/rave'), +(5461 , 'RAVEN' , 'https://www.vinted.es/brand/raven'), +(288641 , 'RAVENS' , 'https://www.vinted.es/brand/ravens'), +(355803 , 'Ravensden' , 'https://www.vinted.es/brand/ravensden'), +(5882343 , 'Rave Review' , 'https://www.vinted.es/brand/rave-review'), +(13823 , 'rue 21' , 'https://www.vinted.es/brand/rue-21'), +(302871 , 'Reformation' , 'https://www.vinted.es/brand/reformation'), +(296385 , 'Renda' , 'https://www.vinted.es/brand/renda'), +(17107 , 'RENATO NUCCI' , 'https://www.vinted.es/brand/renato-nucci'), +(341931 , 'Red & Blu' , 'https://www.vinted.es/brand/red-blu'), +(295464 , 'Renata' , 'https://www.vinted.es/brand/renata'), +(6355 , 'Rendez-Vous Paris' , 'https://www.vinted.es/brand/rendez-vous-paris'), +(509771 , 'Redandblu' , 'https://www.vinted.es/brand/redandblu'), +(286754 , 'Rubies' , 'https://www.vinted.es/brand/rubies'), +(313605 , 'Rubik''s' , 'https://www.vinted.es/brand/rubiks'), +(329993 , 'Rubinstein' , 'https://www.vinted.es/brand/rubinstein'), +(2687345 , 'Rubi Shoes by Cotton On' , 'https://www.vinted.es/brand/rubi-shoes-by-cotton-on'), +(6678855 , 'Rubi Shoes by cotton on wide fit' , 'https://www.vinted.es/brand/rubi-shoes-by-cotton-on-wide-fit'), +(172858 , 'Roncato' , 'https://www.vinted.es/brand/roncato'), +(168322 , 'Rene Lezard' , 'https://www.vinted.es/brand/rene-lezard'), +(381388 , 'RhinoShield' , 'https://www.vinted.es/brand/rhinoshield'), +(6083464 , 'adidas x Roland Garros' , 'https://www.vinted.es/brand/adidas-x-roland-garros'), +(353531 , 'Rosalita Senoritas' , 'https://www.vinted.es/brand/rosalita-senoritas'), +(159428 , 'Rosner' , 'https://www.vinted.es/brand/rosner'), +(287291 , 'Roba' , 'https://www.vinted.es/brand/roba'), +(15345 , 'Robert Clergerie' , 'https://www.vinted.es/brand/robert-clergerie'), +(145654 , 'Rick Owens' , 'https://www.vinted.es/brand/rick-owens'), +(4918004 , 'adidas × Rick Owens' , 'https://www.vinted.es/brand/adidas-x-rick-owens'), +(6096741 , 'Converse x Rick Owens DRKSHDW' , 'https://www.vinted.es/brand/converse-x-rick-owens-drkshdw'), +(3947412 , 'Rick Owens Lilies' , 'https://www.vinted.es/brand/rick-owens-lilies'), +(4692650 , 'Veja x Rick Owens' , 'https://www.vinted.es/brand/veja-x-rick-owens'), +(329268 , 'Rapha' , 'https://www.vinted.es/brand/rapha'), +(307380 , 'Raphael' , 'https://www.vinted.es/brand/raphael'), +(388731 , 'Raphaël Perrier' , 'https://www.vinted.es/brand/raphael-perrier'), +(554360 , 'Raphaella Booz' , 'https://www.vinted.es/brand/raphaella-booz'), +(513549 , 'Rachael Hale' , 'https://www.vinted.es/brand/rachael-hale'), +(384566 , 'Raparo' , 'https://www.vinted.es/brand/raparo'), +(627778 , 'Rapanui' , 'https://www.vinted.es/brand/rapanui'), +(1063308 , 'Ralph & Russo' , 'https://www.vinted.es/brand/ralph-russo'), +(4991601 , 'Rachael & Chloe kids' , 'https://www.vinted.es/brand/rachael-chloe-kids'), +(278050 , 'Reusch' , 'https://www.vinted.es/brand/reusch'), +(29817 , 'R.P. Tamar' , 'https://www.vinted.es/brand/rp-tamar'), +(311664 , 'Rubacuori' , 'https://www.vinted.es/brand/rubacuori'), +(106028 , 'Ripndip' , 'https://www.vinted.es/brand/ripndip'), +(823984 , 'Rivièra Maison' , 'https://www.vinted.es/brand/riviera-maison'), +(21177 , 'RUCANOR' , 'https://www.vinted.es/brand/rucanor'), +(396516 , 'racoon' , 'https://www.vinted.es/brand/racoon'), +(2917848 , 'Racoon Outdoor' , 'https://www.vinted.es/brand/racoon-outdoor'), +(328532 , 'Razor' , 'https://www.vinted.es/brand/razor'), +(2810300 , 'Racer Worldwide' , 'https://www.vinted.es/brand/racer-worldwide'), +(9963 , 'Regard' , 'https://www.vinted.es/brand/regard'), +(319240 , 'Regarde Le Ciel' , 'https://www.vinted.es/brand/regarde-le-ciel'), +(280410 , 'reward' , 'https://www.vinted.es/brand/reward'), +(187818 , 'Rehard' , 'https://www.vinted.es/brand/rehard'), +(84092 , 'Rock Steady' , 'https://www.vinted.es/brand/rock-steady'), +(1967075 , 'Rose Selavy' , 'https://www.vinted.es/brand/rose-selavy'), +(395047 , 'Rock Star Baby' , 'https://www.vinted.es/brand/rock-star-baby'), +(375038 , 'Rock Spring' , 'https://www.vinted.es/brand/rock-spring'), +(604466 , 'Rocks' , 'https://www.vinted.es/brand/rocks'), +(5097610 , 'Roses & Lace' , 'https://www.vinted.es/brand/roses-lace'), +(312140 , 'Roxanne' , 'https://www.vinted.es/brand/roxanne'), +(268632 , 'Roxana' , 'https://www.vinted.es/brand/roxana'), +(597271 , 'Roxelan' , 'https://www.vinted.es/brand/roxelan'), +(553823 , 'Roxanne Assoulin' , 'https://www.vinted.es/brand/roxanne-assoulin'), +(162992 , 'Reset' , 'https://www.vinted.es/brand/reset'), +(450906 , 'RE&X' , 'https://www.vinted.es/brand/re-x'), +(109568 , 'Restricted' , 'https://www.vinted.es/brand/restricted'), +(11663 , 'Restyle' , 'https://www.vinted.es/brand/restyle'), +(112834 , 'Redgreen' , 'https://www.vinted.es/brand/redgreen'), +(14271 , 'Real' , 'https://www.vinted.es/brand/real'), +(107102 , 'Realty Jeans' , 'https://www.vinted.es/brand/realty-jeans'), +(41845 , 'Realty' , 'https://www.vinted.es/brand/realty'), +(14221 , 'Reals Jeans' , 'https://www.vinted.es/brand/reals-jeans'), +(146366 , 'Reality' , 'https://www.vinted.es/brand/reality'), +(385140 , 'Real Denim' , 'https://www.vinted.es/brand/real-denim'), +(177136 , 'Real Techniques' , 'https://www.vinted.es/brand/real-techniques'), +(649480 , 'Realize' , 'https://www.vinted.es/brand/realize'), +(208276 , 'Ruby Shoo' , 'https://www.vinted.es/brand/ruby-shoo'), +(29507 , 'Rocawear' , 'https://www.vinted.es/brand/rocawear'), +(1344352 , 'roccawear' , 'https://www.vinted.es/brand/roccawear'), +(1493307 , 'RockaWear' , 'https://www.vinted.es/brand/rockawear'), +(1099607 , 'Roller Rabbit' , 'https://www.vinted.es/brand/roller-rabbit'), +(45975 , 'Rachel Zoe' , 'https://www.vinted.es/brand/rachel-zoe'), +(73128 , 'Richa' , 'https://www.vinted.es/brand/richa'), +(112402 , 'Rich & Famous' , 'https://www.vinted.es/brand/rich-famous'), +(314470 , 'Richard Mille' , 'https://www.vinted.es/brand/richard-mille'), +(100130 , 'REV''IT!' , 'https://www.vinted.es/brand/revit'), +(152904 , 'Rio' , 'https://www.vinted.es/brand/rio'), +(955525 , 'Rionero' , 'https://www.vinted.es/brand/rionero'), +(361146 , 'Riot' , 'https://www.vinted.es/brand/riot'), +(385025 , 'Rio Roller' , 'https://www.vinted.es/brand/rio-roller'), +(509120 , 'Riot Games' , 'https://www.vinted.es/brand/riot-games'), +(307537 , 'Riot Club' , 'https://www.vinted.es/brand/riot-club'), +(5795758 , 'Rio Lindo' , 'https://www.vinted.es/brand/rio-lindo'), +(3149992 , 'Roger Publishing' , 'https://www.vinted.es/brand/roger-publishing'), +(41213 , 'Republic' , 'https://www.vinted.es/brand/republic'), +(1747255 , 'REPUBLIC OF DENIM' , 'https://www.vinted.es/brand/republic-of-denim'), +(305534 , 'Republic of Kids' , 'https://www.vinted.es/brand/republic-of-kids'), +(151816 , 'Republica' , 'https://www.vinted.es/brand/republica'), +(429259 , 'republic of california' , 'https://www.vinted.es/brand/republic-of-california'), +(1251917 , 'Rydale' , 'https://www.vinted.es/brand/rydale'), +(171292 , 'Repeat' , 'https://www.vinted.es/brand/repeat'), +(444314 , 'RIANI' , 'https://www.vinted.es/brand/riani'), +(515616 , 'Rianda' , 'https://www.vinted.es/brand/rianda'), +(408886 , 'Ripani' , 'https://www.vinted.es/brand/ripani'), +(34089 , 'Roadsign' , 'https://www.vinted.es/brand/roadsign'), +(3455 , 'Roberto Botella' , 'https://www.vinted.es/brand/roberto-botella'), +(47035 , 'Ribbon' , 'https://www.vinted.es/brand/ribbon'), +(763435 , 'ROBLOX' , 'https://www.vinted.es/brand/roblox'), +(46191 , 'Rohde' , 'https://www.vinted.es/brand/rohde'), +(297865 , 'Britax Römer' , 'https://www.vinted.es/brand/britax-romer'), +(319686 , 'Rodebjer' , 'https://www.vinted.es/brand/rodebjer'), +(369298 , 'Rodec' , 'https://www.vinted.es/brand/rodec'), +(677696 , 'Rhodenwald & Söhne' , 'https://www.vinted.es/brand/rhodenwald-sohne'), +(461583 , 'Roosevelt' , 'https://www.vinted.es/brand/roosevelt'), +(3356481 , 'RootTattoo' , 'https://www.vinted.es/brand/roottattoo'), +(301058 , 'RAMS 23' , 'https://www.vinted.es/brand/rams-23'), +(23911 , 'Redseventy' , 'https://www.vinted.es/brand/redseventy'), +(3451 , 'RWD' , 'https://www.vinted.es/brand/rwd'), +(299510 , 'RW' , 'https://www.vinted.es/brand/rw'), +(199114 , 'RW&CO' , 'https://www.vinted.es/brand/rwco'), +(287307 , 'RECARO' , 'https://www.vinted.es/brand/recaro'), +(435850 , 'Rebellious One' , 'https://www.vinted.es/brand/rebellious-one'), +(288203 , 'ROBERTO TORRETTA' , 'https://www.vinted.es/brand/roberto-torretta'), +(410624 , 'Race Marine' , 'https://www.vinted.es/brand/race-marine'), +(541992 , 'Retro & Icone' , 'https://www.vinted.es/brand/retro-icone'), +(358520 , 'R&B' , 'https://www.vinted.es/brand/rb'), +(226996 , 'R&Renzi' , 'https://www.vinted.es/brand/rrenzi'), +(373289 , 'R&M Richards' , 'https://www.vinted.es/brand/rm-richards'), +(289082 , 'Regent' , 'https://www.vinted.es/brand/regent'), +(194768 , 'Regence' , 'https://www.vinted.es/brand/regence'), +(394022 , 're-gen' , 'https://www.vinted.es/brand/re-gen'), +(447532 , 'Rochy' , 'https://www.vinted.es/brand/rochy'), +(28181 , 'Rochet' , 'https://www.vinted.es/brand/rochet'), +(178386 , 'Rock and Joy' , 'https://www.vinted.es/brand/rock-and-joy'), +(697354 , 'Rockabye-baby' , 'https://www.vinted.es/brand/rockabye-baby'), +(239840 , 'Romika' , 'https://www.vinted.es/brand/romika'), +(81112 , 'Rodika Zanian' , 'https://www.vinted.es/brand/rodika-zanian'), +(207490 , 'Rodika' , 'https://www.vinted.es/brand/rodika'), +(397589 , 'Romikids' , 'https://www.vinted.es/brand/romikids'), +(386177 , 'Ragno' , 'https://www.vinted.es/brand/ragno'), +(297971 , 'rageot' , 'https://www.vinted.es/brand/rageot'), +(361297 , 'Ragdoll' , 'https://www.vinted.es/brand/ragdoll'), +(1886535 , 'Rago' , 'https://www.vinted.es/brand/rago'), +(806691 , 'Recman' , 'https://www.vinted.es/brand/recman'), +(57812 , 'Rectangle Blanc' , 'https://www.vinted.es/brand/rectangle-blanc'), +(733864 , 'Redfills' , 'https://www.vinted.es/brand/redfills'), +(404390 , 'Run & Fly' , 'https://www.vinted.es/brand/run-fly'), +(2423 , 'Remixx' , 'https://www.vinted.es/brand/remixx'), +(1562323 , 'RE-MIX' , 'https://www.vinted.es/brand/re-mix'), +(202834 , 'Reell' , 'https://www.vinted.es/brand/reell'), +(298777 , 'Revell' , 'https://www.vinted.es/brand/revell'), +(25957 , 'Relleciga' , 'https://www.vinted.es/brand/relleciga'), +(5289493 , 'Really Sick Shoes Firenze' , 'https://www.vinted.es/brand/really-sick-shoes-firenze'), +(1016245 , 'Rue Paris' , 'https://www.vinted.es/brand/rue-paris'), +(2468352 , 'RISK made in Warsaw' , 'https://www.vinted.es/brand/risk-made-in-warsaw'), +(320780 , 'Rising' , 'https://www.vinted.es/brand/rising'), +(504726 , 'Redmi' , 'https://www.vinted.es/brand/redmi'), +(271361 , 'Red Wing Shoes' , 'https://www.vinted.es/brand/red-wing-shoes'), +(832771 , 'RED LIMIT' , 'https://www.vinted.es/brand/red-limit'), +(383795 , 'RBX' , 'https://www.vinted.es/brand/rbx'), +(994802 , 'RBLZ' , 'https://www.vinted.es/brand/rblz'), +(644073 , 'RBA' , 'https://www.vinted.es/brand/rba'), +(214954 , 'RB7' , 'https://www.vinted.es/brand/rb7'), +(2020231 , 'RB Collection Privé' , 'https://www.vinted.es/brand/rb-collection-prive'), +(273855 , 'RBK' , 'https://www.vinted.es/brand/rbk'), +(4967242 , 'RB Sellars' , 'https://www.vinted.es/brand/rb-sellars'), +(3081116 , 'RBDT' , 'https://www.vinted.es/brand/rbdt'), +(289866 , 'Roy Robson' , 'https://www.vinted.es/brand/roy-robson'), +(1493414 , 'Roy Robsen' , 'https://www.vinted.es/brand/roy-robsen'), +(455114 , 'Rohan' , 'https://www.vinted.es/brand/rohan'), +(181042 , 'Rodania' , 'https://www.vinted.es/brand/rodania'), +(4757424 , 'Röhnisch' , 'https://www.vinted.es/brand/rohnisch'), +(211904 , 'Roland' , 'https://www.vinted.es/brand/roland'), +(425267 , 'Rick and Morty' , 'https://www.vinted.es/brand/rick-and-morty'), +(172724 , 'Shein' , 'https://www.vinted.es/brand/shein'), +(7375243 , 'Shein Curve' , 'https://www.vinted.es/brand/shein-curve'), +(1129930 , 'Sheilay' , 'https://www.vinted.es/brand/sheilay'), +(9667 , 'Shiny' , 'https://www.vinted.es/brand/shiny'), +(220994 , 'SHEEN' , 'https://www.vinted.es/brand/sheen'), +(293741 , 'Shine Original' , 'https://www.vinted.es/brand/shine-original'), +(25395 , 'Shine' , 'https://www.vinted.es/brand/shine'), +(346284 , 'Shiny Design' , 'https://www.vinted.es/brand/shiny-design'), +(206650 , 'Sheln' , 'https://www.vinted.es/brand/sheln'), +(144000 , 'Shendel' , 'https://www.vinted.es/brand/shendel'), +(41 , 'Stradivarius' , 'https://www.vinted.es/brand/stradivarius'), +(181840 , 'Sinsay' , 'https://www.vinted.es/brand/sinsay'), +(3921 , 'Sergent Major' , 'https://www.vinted.es/brand/sergent-major'), +(417223 , 'Sergent Major' , 'https://www.vinted.es/brand/sargent-major'), +(3031 , 'S.Oliver' , 'https://www.vinted.es/brand/soliver'), +(437914 , 'Q/S By S.Oliver' , 'https://www.vinted.es/brand/qs-by-soliver'), +(1053771 , 'S.Oliver Black Label' , 'https://www.vinted.es/brand/soliver-black-label'), +(5988005 , 'S.Oliver Junior' , 'https://www.vinted.es/brand/soliver-junior'), +(191 , 'Superdry' , 'https://www.vinted.es/brand/superdry'), +(830018 , 'Superdry Sport' , 'https://www.vinted.es/brand/superdry-sport'), +(602586 , 'Superdrug' , 'https://www.vinted.es/brand/superdrug'), +(11421 , 'Springfield' , 'https://www.vinted.es/brand/springfield'), +(3199 , 'Sfera' , 'https://www.vinted.es/brand/sfera'), +(702564 , 'Sfera Basic' , 'https://www.vinted.es/brand/sfera-basic'), +(750180 , 'Sfera Collection' , 'https://www.vinted.es/brand/sfera-collection'), +(75138 , 'Set' , 'https://www.vinted.es/brand/set'), +(612547 , 'SETA' , 'https://www.vinted.es/brand/seta'), +(32513 , 'SJ' , 'https://www.vinted.es/brand/sj'), +(35331 , 'S&G' , 'https://www.vinted.es/brand/sg'), +(129904 , 'S&W' , 'https://www.vinted.es/brand/sw'), +(16441 , 'sh' , 'https://www.vinted.es/brand/sh'), +(65094 , 'S&R' , 'https://www.vinted.es/brand/sr'), +(300547 , 'S&D' , 'https://www.vinted.es/brand/sd'), +(33913 , 'Setrak' , 'https://www.vinted.es/brand/setrak'), +(232372 , 'S&Y' , 'https://www.vinted.es/brand/sy'), +(1493315 , 'Sonstiges' , 'https://www.vinted.es/brand/sonstiges'), +(115 , 'Sandro' , 'https://www.vinted.es/brand/sandro'), +(17823 , 'Sandro Ferrone' , 'https://www.vinted.es/brand/sandro-ferrone'), +(269714 , 'Sandro Rosi' , 'https://www.vinted.es/brand/sandro-rosi'), +(220252 , 'SANDRO VICARI' , 'https://www.vinted.es/brand/sandro-vicari'), +(227696 , 'Sandsoil' , 'https://www.vinted.es/brand/sandsoil'), +(13865 , 'SANDRA.B' , 'https://www.vinted.es/brand/sandra-b'), +(21317 , 'Sandra' , 'https://www.vinted.es/brand/sandra'), +(1401 , 'Sisley' , 'https://www.vinted.es/brand/sisley'), +(20915 , 'Subdued' , 'https://www.vinted.es/brand/subdued'), +(402 , 'Street One' , 'https://www.vinted.es/brand/street-one'), +(378045 , 'So Cute' , 'https://www.vinted.es/brand/so-cute'), +(13743 , 'Scotch & Soda' , 'https://www.vinted.es/brand/scotch-soda'), +(62370 , 'Star Wars' , 'https://www.vinted.es/brand/star-wars'), +(6279001 , 'adidas x Star Wars' , 'https://www.vinted.es/brand/adidas-x-star-wars'), +(335100 , 'Stars Wars' , 'https://www.vinted.es/brand/stars-wars'), +(287819 , 'Steiff' , 'https://www.vinted.es/brand/steiff'), +(180840 , 'Steffy' , 'https://www.vinted.es/brand/steffy'), +(135002 , 'Steffen Schraut' , 'https://www.vinted.es/brand/steffen-schraut'), +(363267 , 'Steffi' , 'https://www.vinted.es/brand/steffi'), +(288415 , 'Steffi Love' , 'https://www.vinted.es/brand/steffi-love'), +(226586 , 'Steffner' , 'https://www.vinted.es/brand/steffner'), +(38437 , 'Sézane' , 'https://www.vinted.es/brand/sezane'), +(5805509 , 'Sézane x La Redoute' , 'https://www.vinted.es/brand/sezane-x-la-redoute'), +(2713 , 'Swarovski' , 'https://www.vinted.es/brand/swarovski'), +(6596259 , 'Supreme x Swarovski' , 'https://www.vinted.es/brand/supreme-x-swarovski'), +(228 , 'San Marina' , 'https://www.vinted.es/brand/san-marina'), +(108702 , 'San Marino' , 'https://www.vinted.es/brand/san-marino'), +(174022 , 'Sucre d''Orge' , 'https://www.vinted.es/brand/sucre-dorge'), +(16429 , 'Skechers' , 'https://www.vinted.es/brand/skechers'), +(10447 , 'Selected' , 'https://www.vinted.es/brand/selected'), +(283800 , 'Selected Homme' , 'https://www.vinted.es/brand/selected-homme'), +(351365 , 'Selected Femme' , 'https://www.vinted.es/brand/selected-femme'), +(15031 , 'Select' , 'https://www.vinted.es/brand/select'), +(288424 , 'Selecta' , 'https://www.vinted.es/brand/selecta'), +(78534 , 'Selectif' , 'https://www.vinted.es/brand/selectif'), +(618125 , 'Selective' , 'https://www.vinted.es/brand/selective'), +(5791249 , 'Selected Touch' , 'https://www.vinted.es/brand/selected-touch'), +(191574 , 'Selecline' , 'https://www.vinted.es/brand/selecline'), +(398122 , 'Seletti' , 'https://www.vinted.es/brand/seletti'), +(185418 , 'Superfit' , 'https://www.vinted.es/brand/superfit'), +(84224 , 'Superfine' , 'https://www.vinted.es/brand/superfine'), +(230888 , 'Sterntaler' , 'https://www.vinted.es/brand/sterntaler'), +(421778 , 'Stentaler' , 'https://www.vinted.es/brand/stentaler'), +(291122 , 'Schleich' , 'https://www.vinted.es/brand/schleich'), +(73306 , 'Stone Island' , 'https://www.vinted.es/brand/stone-island'), +(5451830 , 'Supreme x Stone Island' , 'https://www.vinted.es/brand/supreme-x-stone-island'), +(7525411 , 'Stone Island x New Balance' , 'https://www.vinted.es/brand/stone-island-x-new-balance'), +(938584 , 'SMYK' , 'https://www.vinted.es/brand/smyk'), +(277302 , 'SMK' , 'https://www.vinted.es/brand/smk'), +(270227 , 'Smythson' , 'https://www.vinted.es/brand/smythson'), +(870862 , 'Smiki' , 'https://www.vinted.es/brand/smiki'), +(2062809 , 'SMUKEE' , 'https://www.vinted.es/brand/smukee'), +(3329817 , 'Smyths' , 'https://www.vinted.es/brand/smyths'), +(2359825 , 'SMOKE STORY GROUP' , 'https://www.vinted.es/brand/smoke-story-group'), +(532444 , 'Smythe' , 'https://www.vinted.es/brand/smythe'), +(182 , 'Sinéquanone' , 'https://www.vinted.es/brand/sinequanone'), +(1651 , 'Superga' , 'https://www.vinted.es/brand/superga'), +(8797 , 'Superman' , 'https://www.vinted.es/brand/superman'), +(64910 , 'Super Mario' , 'https://www.vinted.es/brand/super-mario'), +(205568 , 'Superbaby' , 'https://www.vinted.es/brand/superbaby'), +(5939 , 'Supergirl' , 'https://www.vinted.es/brand/supergirl'), +(288794 , 'Super Sand' , 'https://www.vinted.es/brand/super-sand'), +(290649 , 'Super Made' , 'https://www.vinted.es/brand/super-made'), +(441864 , 'Supermax' , 'https://www.vinted.es/brand/supermax'), +(2414545 , 'Supermami' , 'https://www.vinted.es/brand/supermami'), +(113926 , 'Sony' , 'https://www.vinted.es/brand/sony'), +(231 , 'Sonia Rykiel' , 'https://www.vinted.es/brand/sonia-rykiel'), +(415883 , 'Sony Pictures' , 'https://www.vinted.es/brand/sony-pictures'), +(203546 , 'Sonny Bono' , 'https://www.vinted.es/brand/sonny-bono'), +(78948 , 'Soyaconcept' , 'https://www.vinted.es/brand/soyaconcept'), +(309554 , 'Soy Luna' , 'https://www.vinted.es/brand/soy-luna'), +(49001 , 'Sonia Peña' , 'https://www.vinted.es/brand/sonia-pena'), +(49997 , 'Soky & Soka' , 'https://www.vinted.es/brand/soky-soka'), +(163420 , 'Sonneti' , 'https://www.vinted.es/brand/sonneti'), +(343715 , 'Sonny Angel' , 'https://www.vinted.es/brand/sonny-angel'), +(388 , 'SUD Express' , 'https://www.vinted.es/brand/sud-express'), +(441 , 'Stüssy' , 'https://www.vinted.es/brand/stussy'), +(6516526 , 'Stüssy x Patta' , 'https://www.vinted.es/brand/stussy-x-patta'), +(1373 , 'Silvian Heach' , 'https://www.vinted.es/brand/silvian-heach'), +(260 , 'Salsa' , 'https://www.vinted.es/brand/salsa'), +(1411 , 'Salsa Jeans' , 'https://www.vinted.es/brand/salsa-jeans'), +(13437 , 'Salvatore Ferragamo' , 'https://www.vinted.es/brand/salvatore-ferragamo'), +(17445 , 'Salamander' , 'https://www.vinted.es/brand/salamander'), +(47389 , 'Salt and Pepper' , 'https://www.vinted.es/brand/salt-and-pepper'), +(254074 , 'Salvador Bachiller' , 'https://www.vinted.es/brand/salvador-bachiller'), +(180040 , 'Salso Bamba' , 'https://www.vinted.es/brand/salso-bamba'), +(724462 , 'Sala' , 'https://www.vinted.es/brand/sala'), +(178994 , 'Salvador Dali' , 'https://www.vinted.es/brand/salvador-dali'), +(338745 , 'Salvador Sapena' , 'https://www.vinted.es/brand/salvador-sapena'), +(62444 , 'Staccato' , 'https://www.vinted.es/brand/staccato'), +(109048 , 'Samsung' , 'https://www.vinted.es/brand/samsung'), +(452 , 'Shana' , 'https://www.vinted.es/brand/shana'), +(40591 , 'Shanna' , 'https://www.vinted.es/brand/shanna'), +(93882 , 'shaman' , 'https://www.vinted.es/brand/shaman'), +(84592 , 'Sha & Sha' , 'https://www.vinted.es/brand/sha-sha'), +(303784 , 'Shaka' , 'https://www.vinted.es/brand/shaka'), +(673898 , 'Shaarms' , 'https://www.vinted.es/brand/shaarms'), +(92714 , 'Shasa' , 'https://www.vinted.es/brand/shasa'), +(18531 , 'Shanghai Tang' , 'https://www.vinted.es/brand/shanghai-tang'), +(155672 , 'Shan' , 'https://www.vinted.es/brand/shan'), +(194522 , 'Shangri-La' , 'https://www.vinted.es/brand/shangri-la'), +(5871 , 'Steve Madden' , 'https://www.vinted.es/brand/steve-madden'), +(15457 , 'Salomon' , 'https://www.vinted.es/brand/salomon'), +(8239174 , 'salomon S/Lab' , 'https://www.vinted.es/brand/salomon-slab'), +(1000404 , 'salamon' , 'https://www.vinted.es/brand/salamon'), +(129096 , 'Spiderman' , 'https://www.vinted.es/brand/spiderman'), +(202720 , 'Simply Be' , 'https://www.vinted.es/brand/simply-be'), +(370996 , 'Simply The Best!' , 'https://www.vinted.es/brand/simply-the-best'), +(412247 , 'Simply Basic' , 'https://www.vinted.es/brand/simply-basic'), +(377803 , 'Simply Vera' , 'https://www.vinted.es/brand/simply-vera'), +(1522352 , 'Simply Perfect' , 'https://www.vinted.es/brand/simply-perfect'), +(14969 , 'Supreme' , 'https://www.vinted.es/brand/supreme'), +(187 , 'Supremebeing' , 'https://www.vinted.es/brand/supremebeing'), +(764525 , 'Supreme x The North Face' , 'https://www.vinted.es/brand/supreme-x-the-north-face'), +(4864798 , 'Supreme x Timberland' , 'https://www.vinted.es/brand/supreme-x-timberland'), +(6189663 , 'Supreme x Vans' , 'https://www.vinted.es/brand/supreme-x-vans'), +(6021650 , 'Supreme x Thrasher' , 'https://www.vinted.es/brand/supreme-x-thrasher'), +(325555 , 'Super Me' , 'https://www.vinted.es/brand/super-me'), +(13625 , 'SuiteBlanco' , 'https://www.vinted.es/brand/suiteblanco'), +(64176 , 'SMOG' , 'https://www.vinted.es/brand/smog'), +(5821544 , 'SMOGH' , 'https://www.vinted.es/brand/smogh'), +(275285 , 'Smoby' , 'https://www.vinted.es/brand/smoby'), +(332655 , 'Smagli' , 'https://www.vinted.es/brand/smagli'), +(327132 , 'Smagli Jeans' , 'https://www.vinted.es/brand/smagli-jeans'), +(283446 , 'Smuggler' , 'https://www.vinted.es/brand/smuggler'), +(530133 , 'Smooshy Mushy' , 'https://www.vinted.es/brand/smooshy-mushy'), +(541580 , 'Smiggle' , 'https://www.vinted.es/brand/smiggle'), +(798221 , 'smoove' , 'https://www.vinted.es/brand/smoove'), +(1827851 , 'S.Morris' , 'https://www.vinted.es/brand/smorris'), +(265794 , 'Someone' , 'https://www.vinted.es/brand/someone'), +(3181 , 'Sergio Tacchini' , 'https://www.vinted.es/brand/sergio-tacchini'), +(276913 , 'Siksilk' , 'https://www.vinted.es/brand/siksilk'), +(16291 , 'Studio' , 'https://www.vinted.es/brand/studio'), +(252984 , 'Studio Classics' , 'https://www.vinted.es/brand/studio-classics'), +(344387 , 'Studio 100' , 'https://www.vinted.es/brand/studio-100'), +(567016 , 'Studio Anneloes' , 'https://www.vinted.es/brand/studio-anneloes'), +(378179 , 'Studio Canal' , 'https://www.vinted.es/brand/studio-canal'), +(517174 , 'Studio It' , 'https://www.vinted.es/brand/studio-it'), +(77744 , 'Studio F' , 'https://www.vinted.es/brand/studio-f'), +(442094 , 'Studio Ghibli' , 'https://www.vinted.es/brand/studio-ghibli'), +(422342 , 'Studio 21' , 'https://www.vinted.es/brand/studio-21'), +(188140 , 'Studio Aventures' , 'https://www.vinted.es/brand/studio-aventures'), +(26399 , 'Super U' , 'https://www.vinted.es/brand/super-u'), +(50521 , 'SuperTrash' , 'https://www.vinted.es/brand/supertrash'), +(131050 , 'Superstar' , 'https://www.vinted.es/brand/superstar'), +(40 , 'Super Mode' , 'https://www.vinted.es/brand/super-mode'), +(288086 , 'Super Wings' , 'https://www.vinted.es/brand/super-wings'), +(187268 , 'SOLO' , 'https://www.vinted.es/brand/solo'), +(60312 , 'SOLO SOPRANI' , 'https://www.vinted.es/brand/solo-soprani'), +(64702 , 'Solognac' , 'https://www.vinted.es/brand/solognac'), +(2769 , 'Solola' , 'https://www.vinted.es/brand/solola'), +(3018901 , 'solotre' , 'https://www.vinted.es/brand/solotre'), +(383562 , 'Solo Sole' , 'https://www.vinted.es/brand/solosole'), +(938421 , 'Sologioie' , 'https://www.vinted.es/brand/sologioie'), +(244364 , 'Solovair' , 'https://www.vinted.es/brand/solovair'), +(4082750 , 'Solo Due' , 'https://www.vinted.es/brand/solo-due'), +(1493486 , 'Solo Femme' , 'https://www.vinted.es/brand/solo-femme'), +(263 , 'Swatch' , 'https://www.vinted.es/brand/swatch'), +(182094 , 'Switcher' , 'https://www.vinted.es/brand/switcher'), +(175984 , 'Slazenger' , 'https://www.vinted.es/brand/slazenger'), +(19055 , 'Stefanel' , 'https://www.vinted.es/brand/stefanel'), +(3810975 , 'Stefanplast' , 'https://www.vinted.es/brand/stefanplast'), +(58 , 'See U Soon' , 'https://www.vinted.es/brand/see-u-soon'), +(337282 , 'Scarpe' , 'https://www.vinted.es/brand/scarpe'), +(213112 , 'Scarpe Italiane' , 'https://www.vinted.es/brand/scarpe-italiane'), +(23853 , 'Scarpa' , 'https://www.vinted.es/brand/scarpa'), +(416209 , 'scalpers' , 'https://www.vinted.es/brand/scalpers'), +(9453 , 'Scarlet Roos' , 'https://www.vinted.es/brand/scarlet-roos'), +(58202 , 'Scarlett' , 'https://www.vinted.es/brand/scarlett'), +(160278 , 'Scarlet Jones' , 'https://www.vinted.es/brand/scarlet-jones'), +(491569 , 'Scarlet' , 'https://www.vinted.es/brand/scarlet'), +(1076346 , 'Scarlett Nite' , 'https://www.vinted.es/brand/scarlett-nite'), +(1547644 , 'Scarlet Darkness' , 'https://www.vinted.es/brand/scarlet-darkness'), +(321188 , 'Sigikid' , 'https://www.vinted.es/brand/sigikid'), +(40361 , 'Scout' , 'https://www.vinted.es/brand/scout'), +(705 , 'Scottage' , 'https://www.vinted.es/brand/scottage'), +(14455 , 'Scott' , 'https://www.vinted.es/brand/scott'), +(176348 , 'Scotch' , 'https://www.vinted.es/brand/scotch'), +(33909 , 'Scott & Fox' , 'https://www.vinted.es/brand/scott-fox'), +(205480 , 'Scotch Shrunk' , 'https://www.vinted.es/brand/scotch-shrunk'), +(14991 , 'Scotch R''belle' , 'https://www.vinted.es/brand/scotch-rbelle'), +(18509 , 'Schutz' , 'https://www.vinted.es/brand/schutz'), +(11625 , 'Scooter' , 'https://www.vinted.es/brand/scooter'), +(72194 , 'Steps' , 'https://www.vinted.es/brand/steps'), +(1089216 , 'Steps Everyday Chic' , 'https://www.vinted.es/brand/steps-everyday-chic'), +(1465 , 'Stephan' , 'https://www.vinted.es/brand/stephan'), +(50385 , 'stephane kélian' , 'https://www.vinted.es/brand/stephane-kelian'), +(789 , 'Stephane Gontard' , 'https://www.vinted.es/brand/stephane-gontard'), +(375707 , 'Steppin Out' , 'https://www.vinted.es/brand/steppin-out'), +(882592 , 'Step by Store' , 'https://www.vinted.es/brand/step-by-store'), +(78966 , 'Stetson' , 'https://www.vinted.es/brand/stetson'), +(456350 , 'Step by Step' , 'https://www.vinted.es/brand/step-by-step'), +(924071 , 'Stephen Allen' , 'https://www.vinted.es/brand/stephen-allen'), +(179012 , 'Skylanders' , 'https://www.vinted.es/brand/skylanders'), +(272084 , 'Skylander' , 'https://www.vinted.es/brand/skylander'), +(1561 , 'Sephora' , 'https://www.vinted.es/brand/sephora'), +(5921 , 'Speedo' , 'https://www.vinted.es/brand/speedo'), +(301792 , 'Speed' , 'https://www.vinted.es/brand/speed'), +(287207 , 'Speedway' , 'https://www.vinted.es/brand/speedway'), +(680925 , 'SpeedLink' , 'https://www.vinted.es/brand/speedlink'), +(7456182 , 'Speedy Pet' , 'https://www.vinted.es/brand/speedy-pet'), +(504448 , 'Speed.A' , 'https://www.vinted.es/brand/speeda'), +(44703 , 'SeaSide' , 'https://www.vinted.es/brand/seaside'), +(250364 , 'Sanetta' , 'https://www.vinted.es/brand/sanetta'), +(185670 , 'Silver Creek' , 'https://www.vinted.es/brand/silver-creek'), +(40005 , 'Silver' , 'https://www.vinted.es/brand/silver'), +(179660 , 'Silvercrest' , 'https://www.vinted.es/brand/silvercrest'), +(293896 , 'silverlit' , 'https://www.vinted.es/brand/silverlit'), +(320873 , 'Silver cross' , 'https://www.vinted.es/brand/silver-cross'), +(27211 , 'Silver Coat' , 'https://www.vinted.es/brand/silver-coat'), +(34071 , 'Silver Star' , 'https://www.vinted.es/brand/silver-star'), +(339176 , 'Silver Sun' , 'https://www.vinted.es/brand/silver-sun'), +(651247 , 'Silver Jeans' , 'https://www.vinted.es/brand/silver-jeans'), +(576376 , 'Silver Bloom' , 'https://www.vinted.es/brand/silver-bloom'), +(937917 , 'Sonia Rykiel x H&M' , 'https://www.vinted.es/brand/sonia-rykiel-x-hm'), +(823479 , 'Selfmade' , 'https://www.vinted.es/brand/selfmade'), +(75588 , 'Summer' , 'https://www.vinted.es/brand/summer'), +(4433 , 'Summer Hill' , 'https://www.vinted.es/brand/summer-hill'), +(332194 , 'Summer Girl' , 'https://www.vinted.es/brand/summer-girl'), +(1293439 , 'Summer Vibes' , 'https://www.vinted.es/brand/summer-vibes'), +(358401 , 'Summer Time' , 'https://www.vinted.es/brand/summer-time'), +(478123 , 'Summer infant' , 'https://www.vinted.es/brand/summer-infant'), +(1393895 , 'Summer Rio' , 'https://www.vinted.es/brand/summer-rio'), +(155572 , 'solar.' , 'https://www.vinted.es/brand/solar'), +(332173 , 'Solar Editions' , 'https://www.vinted.es/brand/solar-editions'), +(20597 , 'Solaris' , 'https://www.vinted.es/brand/solaris'), +(2610066 , 'Solaris Laboratories NY' , 'https://www.vinted.es/brand/solaris-laboratories-ny'), +(241610 , 'Shoeby' , 'https://www.vinted.es/brand/shoeby'), +(517165 , 'Sho.E.B. 76' , 'https://www.vinted.es/brand/shoeb-76'), +(39157 , 'Shoe The Bear' , 'https://www.vinted.es/brand/shoe-the-bear'), +(379739 , 'Shoe Biz' , 'https://www.vinted.es/brand/shoe-biz'), +(1244030 , 'Shoe Box' , 'https://www.vinted.es/brand/shoe-box'), +(3560634 , 'Shop by Siegel' , 'https://www.vinted.es/brand/shop-by-siegel'), +(567728 , 'shoe4you' , 'https://www.vinted.es/brand/shoe4you'), +(2604089 , 'shoeboys' , 'https://www.vinted.es/brand/shoeboys'), +(2811 , 'suncoo' , 'https://www.vinted.es/brand/suncoo'), +(273254 , 'Sega' , 'https://www.vinted.es/brand/sega'), +(673085 , 'Segarra' , 'https://www.vinted.es/brand/segarra'), +(155412 , 'Season' , 'https://www.vinted.es/brand/season'), +(44323 , 'Segue' , 'https://www.vinted.es/brand/segue'), +(18477 , 'Serafini' , 'https://www.vinted.es/brand/serafini'), +(13523 , 'Segura' , 'https://www.vinted.es/brand/segura'), +(325388 , 'SEDA' , 'https://www.vinted.es/brand/seda'), +(44277 , 'Seven Sisters' , 'https://www.vinted.es/brand/seven-sisters'), +(396591 , 'Stile Benetton' , 'https://www.vinted.es/brand/stile-benetton'), +(13893 , 'Stella McCartney' , 'https://www.vinted.es/brand/stella-mccartney'), +(1440635 , 'Stella McCartney Kids' , 'https://www.vinted.es/brand/stella-mccartney-kids'), +(2413 , 'Sanrio' , 'https://www.vinted.es/brand/sanrio'), +(388035 , 'Sweaty Betty' , 'https://www.vinted.es/brand/sweaty-betty'), +(329 , 'Sessun' , 'https://www.vinted.es/brand/sessun'), +(1443854 , 'Sens Uniq' , 'https://www.vinted.es/brand/sens-uniq'), +(40813 , 'Saucony' , 'https://www.vinted.es/brand/saucony'), +(486179 , 'sansnom.' , 'https://www.vinted.es/brand/sans-nom'), +(15817 , 'sandwich' , 'https://www.vinted.es/brand/sandwich'), +(288126 , 'Stokke' , 'https://www.vinted.es/brand/stokke'), +(275676 , 'Stooker' , 'https://www.vinted.es/brand/stooker'), +(306969 , 'Stockerpoint' , 'https://www.vinted.es/brand/stockerpoint'), +(7063178 , 'Stoked&Woke Clothing' , 'https://www.vinted.es/brand/stokedwoke-clothing'), +(16701 , 'Strass' , 'https://www.vinted.es/brand/strass'), +(47465 , 'Strass X.clusive' , 'https://www.vinted.es/brand/strass-xclusive'), +(466926 , 'Strauss' , 'https://www.vinted.es/brand/strauss'), +(93702 , 'stars & stripes' , 'https://www.vinted.es/brand/stars-stripes'), +(1546308 , 'Stressmoda' , 'https://www.vinted.es/brand/stressmoda'), +(1349718 , 'Strauss Innovation' , 'https://www.vinted.es/brand/strauss-innovation'), +(523 , 'School Rag' , 'https://www.vinted.es/brand/school-rag'), +(697 , 'School Ray' , 'https://www.vinted.es/brand/school-ray'), +(6923 , 'Sweewë' , 'https://www.vinted.es/brand/sweewe'), +(83122 , 'Saint Laurent' , 'https://www.vinted.es/brand/saint-laurent'), +(339249 , 'Sun68' , 'https://www.vinted.es/brand/sun68'), +(191350 , 'Sauthon' , 'https://www.vinted.es/brand/sauthon'), +(226546 , 'Sarabanda' , 'https://www.vinted.es/brand/sarabanda'), +(320289 , 'Sylvanian Families' , 'https://www.vinted.es/brand/sylvanian-families'), +(32913 , 'SIMPLE' , 'https://www.vinted.es/brand/simple'), +(298882 , 'simple kids' , 'https://www.vinted.es/brand/simple-kids'), +(305003 , 'simplee' , 'https://www.vinted.es/brand/simplee'), +(2440930 , 'Simple Joys by Carter''s' , 'https://www.vinted.es/brand/simple-joys-by-carters'), +(10863 , 'Simple City' , 'https://www.vinted.es/brand/simple-city'), +(298816 , 'SIMPLEX' , 'https://www.vinted.es/brand/simplex'), +(945117 , 'Simple Pleasures' , 'https://www.vinted.es/brand/simple-pleasures'), +(1891242 , 'The Simple Folk' , 'https://www.vinted.es/brand/the-simple-folk'), +(791181 , 'Simple Retro' , 'https://www.vinted.es/brand/simple-retro'), +(412073 , 'SIMPLE WISH' , 'https://www.vinted.es/brand/simple-wish'), +(199316 , 'Sissy Boy' , 'https://www.vinted.es/brand/sissy-boy'), +(2613 , 'Smiley' , 'https://www.vinted.es/brand/smiley'), +(6943 , 'Smiley World' , 'https://www.vinted.es/brand/smiley-world'), +(5815998 , 'Smiley Baby' , 'https://www.vinted.es/brand/smiley-baby'), +(5816648 , 'Smile Yes' , 'https://www.vinted.es/brand/smile-yes'), +(322763 , 'Smile' , 'https://www.vinted.es/brand/smile'), +(316804 , 'Smile Girl' , 'https://www.vinted.es/brand/smile-girl'), +(285378 , 'Smily' , 'https://www.vinted.es/brand/smily'), +(2937198 , 'Smily Play' , 'https://www.vinted.es/brand/smily-play'), +(8599 , 'Snoopy' , 'https://www.vinted.es/brand/snoopy'), +(142212 , 'Snoops' , 'https://www.vinted.es/brand/snoops'), +(1785588 , 'Snoozy Scandinavia' , 'https://www.vinted.es/brand/snoozy-scandinavia'), +(118074 , 'Snipes' , 'https://www.vinted.es/brand/snipes'), +(32485 , 'Snipe' , 'https://www.vinted.es/brand/snipe'), +(113 , 'Spot' , 'https://www.vinted.es/brand/spot'), +(14289 , 'Spot Basic' , 'https://www.vinted.es/brand/spot-basic'), +(20115 , 'Spot For You' , 'https://www.vinted.es/brand/spot-for-you'), +(378247 , 'Spotlight' , 'https://www.vinted.es/brand/spotlight'), +(18659 , 'Spot On' , 'https://www.vinted.es/brand/spot-on'), +(125942 , 'Spotlight by Warehouse' , 'https://www.vinted.es/brand/spotlight-by-warehouse'), +(823630 , 'Spotted' , 'https://www.vinted.es/brand/spotted'), +(1045647 , 'Spotty Otter' , 'https://www.vinted.es/brand/spotty-otter'), +(11235 , 'Sport' , 'https://www.vinted.es/brand/sport'), +(15435 , 'Sportmax' , 'https://www.vinted.es/brand/sportmax'), +(143 , 'somewhere' , 'https://www.vinted.es/brand/somewhere'), +(581 , 'smash' , 'https://www.vinted.es/brand/smash'), +(98628 , 'smashed-lemon' , 'https://www.vinted.es/brand/smashed-lemon'), +(175312 , 'Smashbox' , 'https://www.vinted.es/brand/smashbox'), +(6298519 , 'Smash + Tess' , 'https://www.vinted.es/brand/smash-tess'), +(36501 , 'Sundek' , 'https://www.vinted.es/brand/sundek'), +(13007 , 'Sunders' , 'https://www.vinted.es/brand/sunders'), +(515290 , 'Sunderland of Scotland' , 'https://www.vinted.es/brand/sunderland-of-scotland'), +(3799 , 'Schott' , 'https://www.vinted.es/brand/schott'), +(5881765 , 'Schott Zwiesel' , 'https://www.vinted.es/brand/schott-zwiesel'), +(6703514 , 'Supreme x Schott' , 'https://www.vinted.es/brand/supreme-x-schott'), +(755726 , 'Scotta' , 'https://www.vinted.es/brand/scotta'), +(54975 , 'Scott & Dixon' , 'https://www.vinted.es/brand/scott-dixon'), +(5407506 , 'Scottish Leader' , 'https://www.vinted.es/brand/scottish-leader'), +(297751 , 'SusyMix' , 'https://www.vinted.es/brand/susymix'), +(10047 , 'Serge Blanco' , 'https://www.vinted.es/brand/serge-blanco'), +(3433 , 'Style' , 'https://www.vinted.es/brand/style'), +(264910 , 'Styled In Italy' , 'https://www.vinted.es/brand/styled-in-italy'), +(96024 , 'style & co.' , 'https://www.vinted.es/brand/style-co'), +(882050 , 'Styleboom' , 'https://www.vinted.es/brand/styleboom'), +(5829023 , 'Style Shoes' , 'https://www.vinted.es/brand/style-shoes'), +(314027 , 'Style Me Up!' , 'https://www.vinted.es/brand/style-me-up'), +(299749 , 'Style Plus' , 'https://www.vinted.es/brand/style-plus'), +(590012 , 'StyleDome' , 'https://www.vinted.es/brand/styledome'), +(260200 , 'Style London' , 'https://www.vinted.es/brand/style-london'), +(200284 , 'STYLENANDA' , 'https://www.vinted.es/brand/stylenanda'), +(623 , 'Soft Grey' , 'https://www.vinted.es/brand/soft-grey'), +(12895 , 'Sixth June' , 'https://www.vinted.es/brand/sixth-june'), +(170268 , 'Stivali' , 'https://www.vinted.es/brand/stivali'), +(1333568 , 'Sheila de Vries' , 'https://www.vinted.es/brand/sheila-de-vries'), +(421581 , 'Sheila' , 'https://www.vinted.es/brand/sheila'), +(124184 , 'Sophie La Girafe' , 'https://www.vinted.es/brand/sophie-la-girafe'), +(553434 , 'Sprandi' , 'https://www.vinted.es/brand/sprandi'), +(26963 , 'Samsonite' , 'https://www.vinted.es/brand/samsonite'), +(7136871 , 'Disney x Samsonite' , 'https://www.vinted.es/brand/disney-x-samsonite'), +(30149 , 'Sixth Sense' , 'https://www.vinted.es/brand/sixth-sense'), +(118878 , 'Sixth Sens' , 'https://www.vinted.es/brand/sixth-sens'), +(306013 , 'Sandali' , 'https://www.vinted.es/brand/sandali'), +(696770 , 'Sandalo' , 'https://www.vinted.es/brand/sandalo'), +(359369 , 'Sandai' , 'https://www.vinted.es/brand/sandai'), +(1377332 , 'SANDY LIANG' , 'https://www.vinted.es/brand/sandy-liang'), +(3397342 , 'Sanna Lindström' , 'https://www.vinted.es/brand/sanna-lindstrom'), +(451 , 'SIX' , 'https://www.vinted.es/brand/six'), +(29387 , 'Sixtyseven' , 'https://www.vinted.es/brand/sixtyseven'), +(5413 , 'SIXTY' , 'https://www.vinted.es/brand/sixty'), +(422099 , 'Sixte' , 'https://www.vinted.es/brand/sixte'), +(556084 , 'Sixte Jeans' , 'https://www.vinted.es/brand/sixte-jeans'), +(321612 , 'Six Pieds Trois Pouces' , 'https://www.vinted.es/brand/six-pieds-trois-pouces'), +(48215 , 'Sixpack France' , 'https://www.vinted.es/brand/sixpack-france'), +(87414 , 'Samsøe Samsøe' , 'https://www.vinted.es/brand/samsoe-samsoe'), +(1198652 , 'Szachownica' , 'https://www.vinted.es/brand/szachownica'), +(46275 , 'Saint Tropez' , 'https://www.vinted.es/brand/saint-tropez'), +(541111 , 'Saint Tropez West' , 'https://www.vinted.es/brand/saint-tropez-west'), +(273920 , 'Scotchlite' , 'https://www.vinted.es/brand/scotchlite'), +(232260 , 'Schiesser' , 'https://www.vinted.es/brand/schiesser'), +(13809 , 'Sublevel' , 'https://www.vinted.es/brand/sublevel'), +(133550 , 'Seraphine' , 'https://www.vinted.es/brand/seraphine'), +(670367 , 'Seven Lemon' , 'https://www.vinted.es/brand/seven-lemon'), +(116354 , 'Secret Possessions' , 'https://www.vinted.es/brand/secret-possessions'), +(587865 , 'Setablu' , 'https://www.vinted.es/brand/setablu'), +(4656417 , 'Se-Ta Rosy Iacovone' , 'https://www.vinted.es/brand/se-ta-rosy-iacovone'), +(500 , 'Sacha' , 'https://www.vinted.es/brand/sacha'), +(14869 , 'Sacha London' , 'https://www.vinted.es/brand/sacha-london'), +(176656 , 'Sachajuan' , 'https://www.vinted.es/brand/sachajuan'), +(2490667 , 'Sacha Garel' , 'https://www.vinted.es/brand/sacha-garel'), +(3615 , 'Sasha' , 'https://www.vinted.es/brand/sasha'), +(369700 , 'Sacai' , 'https://www.vinted.es/brand/sacai'), +(283114 , 'Sahara' , 'https://www.vinted.es/brand/sahara'), +(461726 , 'Sachi' , 'https://www.vinted.es/brand/sachi'), +(239252 , 'SAG HARBOR' , 'https://www.vinted.es/brand/sag-harbor'), +(337665 , 'Stranger Things' , 'https://www.vinted.es/brand/stranger-things'), +(266629 , 'SOCCX' , 'https://www.vinted.es/brand/soccx'), +(129648 , 'Sophie' , 'https://www.vinted.es/brand/sophie'), +(903819 , 'Sophie ATELIER' , 'https://www.vinted.es/brand/sophie-atelier'), +(150894 , 'Sophie Charlotte' , 'https://www.vinted.es/brand/sophie-charlotte'), +(909335 , 'Sophie and Lucie' , 'https://www.vinted.es/brand/sophie-and-lucie'), +(13229 , 'Sophie Mode' , 'https://www.vinted.es/brand/sophie-mode'), +(4123543 , 'Sophie Stique' , 'https://www.vinted.es/brand/sophie-stique'), +(281190 , 'Sophie Hulme' , 'https://www.vinted.es/brand/sophie-hulme'), +(281372 , 'Sophie Gray' , 'https://www.vinted.es/brand/sophie-gray'), +(4410283 , 'Sophie Buhai' , 'https://www.vinted.es/brand/sophie-buhai'), +(11623 , 'St. Bernard' , 'https://www.vinted.es/brand/st-bernard'), +(333283 , 'Splash About' , 'https://www.vinted.es/brand/splash-about'), +(2365 , 'Sun Valley' , 'https://www.vinted.es/brand/sun-valley'), +(69510 , 'Sisters Point' , 'https://www.vinted.es/brand/sisters-point'), +(595915 , 'Sister Point' , 'https://www.vinted.es/brand/sister-point'), +(37117 , 'Scapa' , 'https://www.vinted.es/brand/scapa'), +(354579 , 'Scapa Sports' , 'https://www.vinted.es/brand/scapa-sports'), +(12369 , 'Scarlatine' , 'https://www.vinted.es/brand/scarlatine'), +(544570 , 'Scarva' , 'https://www.vinted.es/brand/scarva'), +(278781 , 'Scapa of Scotland' , 'https://www.vinted.es/brand/scapa-of-scotland'), +(969370 , 'Scapa Flow' , 'https://www.vinted.es/brand/scapa-flow'), +(2392442 , 'Scamp & Dude' , 'https://www.vinted.es/brand/scamp-dude'), +(2391 , 'Saint James' , 'https://www.vinted.es/brand/saint-james'), +(5151 , '7 For All Mankind' , 'https://www.vinted.es/brand/7-for-all-mankind'), +(4183 , 'Seven' , 'https://www.vinted.es/brand/seven'), +(5918387 , 'Seventy' , 'https://www.vinted.es/brand/seventy'), +(371246 , 'SevenOneSeven' , 'https://www.vinted.es/brand/sevenoneseven'), +(206438 , 'seventy seven' , 'https://www.vinted.es/brand/seventy-seven'), +(71648 , 'Seven7' , 'https://www.vinted.es/brand/seven7'), +(33167 , 'Seventeen' , 'https://www.vinted.es/brand/seventeen'), +(1237856 , 'Seven7 Jeans' , 'https://www.vinted.es/brand/seven7-jeans'), +(17687 , 'Seven Tees' , 'https://www.vinted.es/brand/seven-tees'), +(376823 , 'Stroili' , 'https://www.vinted.es/brand/stroili'), +(171476 , 'Stroili Oro' , 'https://www.vinted.es/brand/stroili-oro'), +(615425 , 'Seasalt Cornwall' , 'https://www.vinted.es/brand/seasalt-cornwall'), +(68452 , 'Soulcal & Co' , 'https://www.vinted.es/brand/soulcal-co'), +(382438 , 'Seasons' , 'https://www.vinted.es/brand/seasons'), +(344094 , 'Seasons Greetings' , 'https://www.vinted.es/brand/seasons-greetings'), +(1493506 , 'Seasox' , 'https://www.vinted.es/brand/seasox'), +(295947 , 'Southern Cotton' , 'https://www.vinted.es/brand/southern-cotton'), +(59086 , 'Southwest' , 'https://www.vinted.es/brand/southwest'), +(91226 , 'South Beach' , 'https://www.vinted.es/brand/south-beach'), +(12235 , 'Southpole' , 'https://www.vinted.es/brand/southpole'), +(285974 , 'South Park' , 'https://www.vinted.es/brand/south-park'), +(331464 , 'Southern' , 'https://www.vinted.es/brand/southern'), +(29471 , 'South' , 'https://www.vinted.es/brand/south'), +(242626 , 'South Shore' , 'https://www.vinted.es/brand/south-shore'), +(1074975 , 'Southern Menswear' , 'https://www.vinted.es/brand/southern-menswear'), +(398815 , 'SOUTHBAY' , 'https://www.vinted.es/brand/southbay'), +(47113 , 'Sweet Pants' , 'https://www.vinted.es/brand/sweet-pants'), +(2162116 , 'Squishmallows' , 'https://www.vinted.es/brand/squishmallows'), +(187504 , 'SHOO POM' , 'https://www.vinted.es/brand/shoo-pom'), +(339146 , 'Stickers' , 'https://www.vinted.es/brand/stickers'), +(331472 , 'Stackers' , 'https://www.vinted.es/brand/stackers'), +(289680 , 'Simba' , 'https://www.vinted.es/brand/simba'), +(333547 , 'Simba Toys' , 'https://www.vinted.es/brand/simba-toys'), +(344654 , 'Sima Couture' , 'https://www.vinted.es/brand/sima-couture'), +(489915 , 'Simbols' , 'https://www.vinted.es/brand/simbols'), +(764852 , 'Simla' , 'https://www.vinted.es/brand/simla'), +(477409 , 'Sima' , 'https://www.vinted.es/brand/sima'), +(1013134 , 'Simran' , 'https://www.vinted.es/brand/simran'), +(1061 , 'Sergio Todzi' , 'https://www.vinted.es/brand/sergio-todzi'), +(4591 , 'Skunkfunk' , 'https://www.vinted.es/brand/skunkfunk'), +(55431 , 'skunfunk' , 'https://www.vinted.es/brand/skunfunk'), +(214698 , 'Scala' , 'https://www.vinted.es/brand/scala'), +(408648 , 'Scabal' , 'https://www.vinted.es/brand/scabal'), +(4019 , 'Sergio Rossi' , 'https://www.vinted.es/brand/sergio-rossi'), +(26379 , 'St Michael' , 'https://www.vinted.es/brand/st-michael'), +(10419 , 'Spirit' , 'https://www.vinted.es/brand/spirit'), +(210738 , 'Spirituel' , 'https://www.vinted.es/brand/spirituel'), +(520482 , 'Spirit Of Gamer' , 'https://www.vinted.es/brand/spirit-of-gamer'), +(391095 , 'Spirit Of St. Louis' , 'https://www.vinted.es/brand/spirit-of-st-louis'), +(395904 , 'Spirit Motors' , 'https://www.vinted.es/brand/spirit-motors'), +(693613 , 'Spiritual Gangster' , 'https://www.vinted.es/brand/spiritual-gangster'), +(386127 , 'Spirithoods' , 'https://www.vinted.es/brand/spirithoods'), +(855765 , 'Sparitual' , 'https://www.vinted.es/brand/sparitual'), +(5193640 , 'Spirit & Grace' , 'https://www.vinted.es/brand/spirit-grace'), +(32381 , 'SAM' , 'https://www.vinted.es/brand/sam'), +(191894 , 'Samson' , 'https://www.vinted.es/brand/samson'), +(242990 , 'Samar Moda' , 'https://www.vinted.es/brand/samar-moda'), +(1689 , 'Sami' , 'https://www.vinted.es/brand/sami'), +(103048 , 'Samelli' , 'https://www.vinted.es/brand/samelli'), +(287322 , 'Souvenir' , 'https://www.vinted.es/brand/souvenir'), +(257458 , 'Souvenir Clubbing' , 'https://www.vinted.es/brand/souvenir-clubbing'), +(269103 , 'Sacoor' , 'https://www.vinted.es/brand/sacoor'), +(215312 , 'Sacoor Brothers' , 'https://www.vinted.es/brand/sacoor-brothers'), +(233054 , 'Swing' , 'https://www.vinted.es/brand/swing'), +(645086 , 'Swing Curve' , 'https://www.vinted.es/brand/swing-curve'), +(3356190 , 'swing2sleep' , 'https://www.vinted.es/brand/swing2sleep'), +(265958 , 'Swind' , 'https://www.vinted.es/brand/swind'), +(1472883 , 'See By Chloé' , 'https://www.vinted.es/brand/see-by-chloe'), +(288425 , 'Schmidt' , 'https://www.vinted.es/brand/schmidt'), +(744080 , 'Schmidt Spiele' , 'https://www.vinted.es/brand/schmidt-spiele'), +(375108 , 'Schmid' , 'https://www.vinted.es/brand/schmid'), +(4271140 , 'SchmittundSchäfer' , 'https://www.vinted.es/brand/schmittundschafer'), +(6195 , 'Schuh' , 'https://www.vinted.es/brand/schuh'), +(546065 , 'Schuhtzengel' , 'https://www.vinted.es/brand/schuhtzengel'), +(1493433 , 'SchuhCenter' , 'https://www.vinted.es/brand/schuhcenter'), +(2041199 , 'SCHUHENGEL' , 'https://www.vinted.es/brand/schuhengel'), +(289488 , 'SCHUMACHER' , 'https://www.vinted.es/brand/schumacher'), +(338153 , 'Schuss' , 'https://www.vinted.es/brand/schuss'), +(599225 , 'Schuco' , 'https://www.vinted.es/brand/schuco'), +(493499 , 'Schuberth' , 'https://www.vinted.es/brand/schuberth'), +(631744 , 'Shuterland' , 'https://www.vinted.es/brand/shuterland'), +(10395 , 'Sweet Miss' , 'https://www.vinted.es/brand/sweet-miss'), +(334925 , 'Sweetissima' , 'https://www.vinted.es/brand/sweetissima'), +(3801 , '*Save the Queen!*' , 'https://www.vinted.es/brand/save-the-queen'), +(99746 , 'Soft' , 'https://www.vinted.es/brand/soft'), +(20309 , 'Softy' , 'https://www.vinted.es/brand/softy'), +(289167 , 'Soft Gallery' , 'https://www.vinted.es/brand/soft-gallery'), +(657430 , 'Softy outwear collection' , 'https://www.vinted.es/brand/softy-outwear-collection'), +(440089 , 'Softwaves' , 'https://www.vinted.es/brand/softwaves'), +(466175 , 'Soft Rebels' , 'https://www.vinted.es/brand/soft-rebels'), +(41493 , 'Soft Paris' , 'https://www.vinted.es/brand/soft-paris'), +(267946 , 'Soft Line' , 'https://www.vinted.es/brand/soft-line'), +(539339 , 'Soft Space' , 'https://www.vinted.es/brand/soft-space'), +(18751 , 'soeur' , 'https://www.vinted.es/brand/soeur'), +(268248 , 'Souris Mini' , 'https://www.vinted.es/brand/souris-mini'), +(184782 , 'Sourire' , 'https://www.vinted.es/brand/sourire'), +(66574 , 'Sourcing' , 'https://www.vinted.es/brand/sourcing'), +(5305 , 'Sourpuss' , 'https://www.vinted.es/brand/sourpuss'), +(282871 , 'Source' , 'https://www.vinted.es/brand/source'), +(1117344 , 'Sourkrauts' , 'https://www.vinted.es/brand/sourkrauts'), +(222664 , 'Sondico' , 'https://www.vinted.es/brand/sondico'), +(97488 , 'Supply & Demand' , 'https://www.vinted.es/brand/supply-demand'), +(422369 , 'spagnolo' , 'https://www.vinted.es/brand/spagnolo'), +(2028925 , 'Spangolo' , 'https://www.vinted.es/brand/spangolo'), +(33331 , 'Sweet Years' , 'https://www.vinted.es/brand/sweet-years'), +(354401 , 'Sorbino' , 'https://www.vinted.es/brand/sorbino'), +(2023 , 'SEQUOIA' , 'https://www.vinted.es/brand/sequoia'), +(5168696 , 'Sportmax Code' , 'https://www.vinted.es/brand/sportmax-code'), +(28483 , 'Santa Cruz' , 'https://www.vinted.es/brand/santa-cruz'), +(6474348 , 'Vans x Santa Cruz' , 'https://www.vinted.es/brand/vans-x-santa-cruz'), +(1406916 , 'STARTUP' , 'https://www.vinted.es/brand/startup'), +(28365 , 'Starter' , 'https://www.vinted.es/brand/starter'), +(108248 , 'Star' , 'https://www.vinted.es/brand/star'), +(46807 , 'Starbucks' , 'https://www.vinted.es/brand/starbucks'), +(342917 , 'Starlux' , 'https://www.vinted.es/brand/starlux'), +(57848 , 'Start-Rite' , 'https://www.vinted.es/brand/start-rite'), +(337974 , 'Star Trek' , 'https://www.vinted.es/brand/star-trek'), +(334535 , 'Star Collection' , 'https://www.vinted.es/brand/star-collection'), +(292587 , 'Santoro' , 'https://www.vinted.es/brand/santoro'), +(680854 , 'Santorini' , 'https://www.vinted.es/brand/santorini'), +(293202 , 'spin master' , 'https://www.vinted.es/brand/spin-master'), +(369126 , 'Suite Benedict' , 'https://www.vinted.es/brand/suite-benedict'), +(83010 , 'SUIT' , 'https://www.vinted.es/brand/suit'), +(316774 , 'Suitsupply' , 'https://www.vinted.es/brand/suitsupply'), +(733020 , 'Suits Inc' , 'https://www.vinted.es/brand/suits-inc'), +(323920 , 'Suite' , 'https://www.vinted.es/brand/suite'), +(999352 , 'SUITABLE' , 'https://www.vinted.es/brand/suitable'), +(1688250 , 'Suite 22' , 'https://www.vinted.es/brand/suite-22'), +(1073650 , 'Suitmeister' , 'https://www.vinted.es/brand/suitmeister'), +(4144875 , 'Suite 191' , 'https://www.vinted.es/brand/suite-191'), +(227964 , 'sheego' , 'https://www.vinted.es/brand/sheego'), +(433089 , 'Sting' , 'https://www.vinted.es/brand/sting'), +(336486 , 'STANGATA' , 'https://www.vinted.es/brand/stangata'), +(1224600 , 'STIEGLITZ' , 'https://www.vinted.es/brand/stieglitz'), +(277549 , 'Stine Goya' , 'https://www.vinted.es/brand/stine-goya'), +(115688 , 'Stiga' , 'https://www.vinted.es/brand/stiga'), +(2828330 , 'Stringberry' , 'https://www.vinted.es/brand/stringberry'), +(5969 , 'SOHO' , 'https://www.vinted.es/brand/soho'), +(473899 , 'Soho De Luxe' , 'https://www.vinted.es/brand/soho-de-luxe'), +(45 , 'So&Co' , 'https://www.vinted.es/brand/soco'), +(737230 , 'SoSoire' , 'https://www.vinted.es/brand/sosoire'), +(107510 , 'So Soon' , 'https://www.vinted.es/brand/so-soon'), +(339087 , 'SOHA' , 'https://www.vinted.es/brand/soha'), +(2191 , 'Sepia' , 'https://www.vinted.es/brand/sepia'), +(89506 , 'Sépia Collection' , 'https://www.vinted.es/brand/sepia-collection'), +(47493 , 'Seppala' , 'https://www.vinted.es/brand/seppala'), +(377182 , 'Skate Nation' , 'https://www.vinted.es/brand/skate-nation'), +(419442 , 'SHOP ART' , 'https://www.vinted.es/brand/shop-art'), +(431236 , 'Smiling London' , 'https://www.vinted.es/brand/smiling-london'), +(208548 , 'Smiling' , 'https://www.vinted.es/brand/smiling'), +(857731 , 'Smilodox' , 'https://www.vinted.es/brand/smilodox'), +(241014 , 'Saxo Blues' , 'https://www.vinted.es/brand/saxo-blues'), +(8575 , 'Senes' , 'https://www.vinted.es/brand/senes'), +(18331 , 'Sense' , 'https://www.vinted.es/brand/sense'), +(31761 , 'Senso' , 'https://www.vinted.es/brand/senso'), +(140382 , 'Sensation' , 'https://www.vinted.es/brand/sensation'), +(413787 , 'See See' , 'https://www.vinted.es/brand/see-see'), +(596165 , 'Sensi Wear' , 'https://www.vinted.es/brand/sensi-wear'), +(1306664 , 'Senso Unico' , 'https://www.vinted.es/brand/senso-unico'), +(234120 , 'Sensei' , 'https://www.vinted.es/brand/sensei'), +(305653 , 'Sense Organics' , 'https://www.vinted.es/brand/sense-organics'), +(45479 , 'Sur Mesure' , 'https://www.vinted.es/brand/sur-mesure'), +(22507 , 'Stuart Weitzman' , 'https://www.vinted.es/brand/stuart-weitzman'), +(21237 , 'Soon' , 'https://www.vinted.es/brand/soon'), +(312065 , 'Sonic the Hedgehog' , 'https://www.vinted.es/brand/sonic-the-hedgehog'), +(141784 , 'STEEL' , 'https://www.vinted.es/brand/steel'), +(669885 , 'SteelBook' , 'https://www.vinted.es/brand/steelbook'), +(362001 , 'SteelSeries' , 'https://www.vinted.es/brand/steelseries'), +(437318 , 'Steel & Jelly' , 'https://www.vinted.es/brand/steel-jelly'), +(8723 , 'Stella Forest' , 'https://www.vinted.es/brand/stella-forest'), +(23781 , 'Stella' , 'https://www.vinted.es/brand/stella'), +(410049 , 'Stellazeta' , 'https://www.vinted.es/brand/stellazeta'), +(174288 , 'Strellson' , 'https://www.vinted.es/brand/strellson'), +(235392 , 'steilmann' , 'https://www.vinted.es/brand/steilmann'), +(1239900 , 'Selfieroom' , 'https://www.vinted.es/brand/selfieroom'), +(2597632 , 'Starter Black Label' , 'https://www.vinted.es/brand/starter-black-label'), +(291732 , 'Stratermic' , 'https://www.vinted.es/brand/stratermic'), +(168462 , 'Startner' , 'https://www.vinted.es/brand/startner'), +(230312 , 'Star Ferry' , 'https://www.vinted.es/brand/star-ferry'), +(117572 , 'SALTROCK' , 'https://www.vinted.es/brand/saltrock'), +(29655 , 'Sloggi' , 'https://www.vinted.es/brand/sloggi'), +(23109 , 'sol''s' , 'https://www.vinted.es/brand/sols'), +(394284 , 'SOL SANA' , 'https://www.vinted.es/brand/sol-sana'), +(171174 , 'Sole Society' , 'https://www.vinted.es/brand/sole-society'), +(65598 , 'Seiko' , 'https://www.vinted.es/brand/seiko'), +(54429 , 'Sekonda' , 'https://www.vinted.es/brand/sekonda'), +(1276200 , 'Serkon' , 'https://www.vinted.es/brand/serkon'), +(57598 , 'Sophyline' , 'https://www.vinted.es/brand/sophyline'), +(224788 , 'Seidensticker' , 'https://www.vinted.es/brand/seidensticker'), +(67598 , 'Sugarfree' , 'https://www.vinted.es/brand/sugarfree'), +(57078 , 'Sugarfree Shoes' , 'https://www.vinted.es/brand/sugarfree-shoes'), +(288406 , 'SUGAR REEF' , 'https://www.vinted.es/brand/sugar-reef'), +(177314 , 'Stones and Bones' , 'https://www.vinted.es/brand/stones-and-bones'), +(1435 , 'She' , 'https://www.vinted.es/brand/she'), +(13817 , 'Shearling' , 'https://www.vinted.es/brand/shearling'), +(1931914 , 'Sheglam' , 'https://www.vinted.es/brand/sheglam'), +(304758 , 'Shell' , 'https://www.vinted.es/brand/shell'), +(207808 , 'Sherpa' , 'https://www.vinted.es/brand/sherpa'), +(381811 , 'Stella & Suzie' , 'https://www.vinted.es/brand/stella-suzie'), +(138864 , 'Stella & Dot' , 'https://www.vinted.es/brand/stella-dot'), +(1691694 , 'StellaBerg' , 'https://www.vinted.es/brand/stellaberg'), +(97988 , 'Stella Luna' , 'https://www.vinted.es/brand/stella-luna'), +(332400 , 'SKIP HOP' , 'https://www.vinted.es/brand/skip-hop'), +(708951 , 'Senza' , 'https://www.vinted.es/brand/senza'), +(234000 , 'Sensations Pour Elle' , 'https://www.vinted.es/brand/sensations-pour-elle'), +(475830 , 'Sensai' , 'https://www.vinted.es/brand/sensai'), +(319481 , 'Senda' , 'https://www.vinted.es/brand/senda'), +(178554 , 'SensatioNail' , 'https://www.vinted.es/brand/sensationail'), +(179372 , 'Sensations' , 'https://www.vinted.es/brand/sensations'), +(93644 , 'Sensation pour Elle' , 'https://www.vinted.es/brand/sensation-pour-elle'), +(353163 , 'Senator' , 'https://www.vinted.es/brand/senator'), +(14023 , 'SYM' , 'https://www.vinted.es/brand/sym'), +(114658 , 'Sympatex' , 'https://www.vinted.es/brand/sympatex'), +(65888 , 'Symphony' , 'https://www.vinted.es/brand/symphony'), +(1111771 , 'Symbiosis' , 'https://www.vinted.es/brand/symbiosis'), +(679629 , 'Symmetry' , 'https://www.vinted.es/brand/symmetry'), +(105476 , 'Systemaction' , 'https://www.vinted.es/brand/systemaction'), +(27239 , 'Sylvain Lefebvre' , 'https://www.vinted.es/brand/sylvain-lefebvre'), +(248904 , 'Sylvie Thiriez' , 'https://www.vinted.es/brand/sylvie-thiriez'), +(275713 , 'Sycomore' , 'https://www.vinted.es/brand/sycomore'), +(7636202 , 'Stampin'' Up!' , 'https://www.vinted.es/brand/stampin-up'), +(11743 , 'The Simpsons' , 'https://www.vinted.es/brand/the-simpsons'), +(263402 , 'Seastar' , 'https://www.vinted.es/brand/seastar'), +(1363385 , 'Seastar Blue' , 'https://www.vinted.es/brand/seastar-blue'), +(6980575 , 'Seastar Superbikes' , 'https://www.vinted.es/brand/seastar-superbikes'), +(1217261 , 'Sea Star Beachwear' , 'https://www.vinted.es/brand/sea-star-beachwear'), +(3525 , 'Sweet' , 'https://www.vinted.es/brand/sweet'), +(344710 , 'Sweet Shoes' , 'https://www.vinted.es/brand/sweet-shoes'), +(396706 , 'Sweet & Soft' , 'https://www.vinted.es/brand/sweet-soft'), +(1248092 , 'Sweet Petit' , 'https://www.vinted.es/brand/sweet-petit'), +(144216 , 'Sweet Lemon' , 'https://www.vinted.es/brand/sweet-lemon'), +(65462 , 'Sweet Girl' , 'https://www.vinted.es/brand/sweet-girl'), +(392578 , 'Sweet Secret' , 'https://www.vinted.es/brand/sweet-secret'), +(60412 , 'Salewa' , 'https://www.vinted.es/brand/salewa'), +(361086 , 'Salt Water' , 'https://www.vinted.es/brand/salt-water'), +(408496 , 'Star by Julien Macdonald' , 'https://www.vinted.es/brand/star-by-julien-macdonald'), +(3693 , 'Straboski' , 'https://www.vinted.es/brand/straboski'), +(31471 , 'Streboski' , 'https://www.vinted.es/brand/streboski'), +(97272 , 'Soaked in Luxury' , 'https://www.vinted.es/brand/soaked-in-luxury'), +(204178 , 'Surkana' , 'https://www.vinted.es/brand/surkana'), +(16377 , 'Tape à l''œil' , 'https://www.vinted.es/brand/tape-a-loeil'), +(94 , 'Tommy Hilfiger' , 'https://www.vinted.es/brand/tommy-hilfiger'), +(6901905 , 'Tommy Hilfiger Tailored' , 'https://www.vinted.es/brand/tommy-hilfiger-tailored'), +(7202901 , 'Tommy Hilfiger X Lewis Hamilton' , 'https://www.vinted.es/brand/tommy-hilfiger-x-lewis-hamilton'), +(7440258 , 'Tommy Hilfiger x Timberland' , 'https://www.vinted.es/brand/tommy-hilfiger-x-timberland'), +(6029572 , 'Vetements x Tommy Hilfiger' , 'https://www.vinted.es/brand/vetements-x-tommy-hilfiger'), +(6021654 , 'Converse x Tommy Hilfiger' , 'https://www.vinted.es/brand/converse-x-tommy-hilfiger'), +(7397731 , 'Tommy Hilfiger x Bape' , 'https://www.vinted.es/brand/tommy-hilfiger-x-bape'), +(6793514 , 'Tommy Hilfiger Curve' , 'https://www.vinted.es/brand/tommy-hilfiger-curve'), +(16 , 'Topshop' , 'https://www.vinted.es/brand/topshop'), +(6603848 , 'Topshop Petite' , 'https://www.vinted.es/brand/topshop-petite'), +(6957365 , 'Topshop Moto' , 'https://www.vinted.es/brand/topshop-moto'), +(6558636 , 'Topshop Tall' , 'https://www.vinted.es/brand/topshop-tall'), +(6901913 , 'Topshop Maternity' , 'https://www.vinted.es/brand/topshop-maternity'), +(7804932 , 'J.W. Anderson x Topshop' , 'https://www.vinted.es/brand/jw-anderson-x-topshop'), +(19119 , 'TOP Shoes' , 'https://www.vinted.es/brand/top-shoes'), +(346937 , 'Topshow' , 'https://www.vinted.es/brand/topshow'), +(247 , 'Tally Weijl' , 'https://www.vinted.es/brand/tally-weijl'), +(92 , 'TEX' , 'https://www.vinted.es/brand/tex'), +(175174 , 'Tex Baby' , 'https://www.vinted.es/brand/tex-baby'), +(198 , 'Texto' , 'https://www.vinted.es/brand/texto'), +(41163 , 'Tex kids' , 'https://www.vinted.es/brand/tex-kids'), +(703 , 'Tex Woman' , 'https://www.vinted.es/brand/tex-woman'), +(28957 , 'texbasic' , 'https://www.vinted.es/brand/texbasic'), +(4171 , 'Texier' , 'https://www.vinted.es/brand/texier'), +(306878 , 'Texas Instruments' , 'https://www.vinted.es/brand/texas-instruments'), +(148206 , 'Tex Man' , 'https://www.vinted.es/brand/tex-man'), +(197874 , 'Tuc Tuc' , 'https://www.vinted.es/brand/tuc-tuc'), +(185778 , 'Tumble N Dry' , 'https://www.vinted.es/brand/tumble-n-dry'), +(41711 , 'TU' , 'https://www.vinted.es/brand/tu'), +(304011 , 'Tut Tut' , 'https://www.vinted.es/brand/tut-tut'), +(220892 , 'Tucano' , 'https://www.vinted.es/brand/tucano'), +(45497 , 'Turnover' , 'https://www.vinted.es/brand/turnover'), +(277653 , 'Tucano Urbano' , 'https://www.vinted.es/brand/tucano-urbano'), +(140482 , 'Tutto' , 'https://www.vinted.es/brand/tutto'), +(303488 , 'Tutti' , 'https://www.vinted.es/brand/tutti'), +(327857 , 'Tut Tut Bolides' , 'https://www.vinted.es/brand/tut-tut-bolides'), +(307763 , 'Topomini' , 'https://www.vinted.es/brand/topomini'), +(2571 , 'Tissaia' , 'https://www.vinted.es/brand/tissaia'), +(5759279 , 'Tissaia Basics' , 'https://www.vinted.es/brand/tissaia-basics'), +(7165 , 'Tisaia' , 'https://www.vinted.es/brand/tisaia'), +(322489 , 'Tisfaia' , 'https://www.vinted.es/brand/tisfaia'), +(5063 , 'Terranova' , 'https://www.vinted.es/brand/terranova'), +(44 , 'Timberland' , 'https://www.vinted.es/brand/timberland'), +(6726731 , 'Timberland x Champion' , 'https://www.vinted.es/brand/timberland-x-champion'), +(1845 , 'Tom Tailor' , 'https://www.vinted.es/brand/tom-tailor'), +(5756200 , 'Tom Tailor Denim' , 'https://www.vinted.es/brand/tom-tailor-denim'), +(5351950 , 'MY TRUE ME Tom Tailor' , 'https://www.vinted.es/brand/my-true-me-tom-tailor'), +(5593906 , 'mine to five TOM TAILOR' , 'https://www.vinted.es/brand/mine-to-five-tom-tailor'), +(17175 , 'TOM TAYLOR' , 'https://www.vinted.es/brand/tom-taylor'), +(175716 , 'TAO' , 'https://www.vinted.es/brand/tao'), +(966256 , 'Tao tweens' , 'https://www.vinted.es/brand/tao-tweens'), +(353866 , 'Taobao' , 'https://www.vinted.es/brand/taobao'), +(2242747 , 'Taolei' , 'https://www.vinted.es/brand/taolei'), +(3910598 , 'Taomare' , 'https://www.vinted.es/brand/taomare'), +(224 , 'Tamaris' , 'https://www.vinted.es/brand/tamaris'), +(1497 , 'Tara Jarmon' , 'https://www.vinted.es/brand/tara-jarmon'), +(287392 , 'Ty' , 'https://www.vinted.es/brand/ty'), +(2742535 , 'Vans x The North Face' , 'https://www.vinted.es/brand/vans-x-the-north-face'), +(6975706 , 'The North Face x MM6' , 'https://www.vinted.es/brand/the-north-face-x-mm6'), +(7456172 , 'Sacai x The North Face' , 'https://www.vinted.es/brand/sacai-x-the-north-face'), +(179064 , 'Topolino' , 'https://www.vinted.es/brand/topolino'), +(1585 , 'Tezenis' , 'https://www.vinted.es/brand/tezenis'), +(1219 , 'Ted Baker' , 'https://www.vinted.es/brand/ted-baker'), +(132 , 'Teddy Smith' , 'https://www.vinted.es/brand/teddy-smith'), +(5814889 , 'Puma x The Kooples' , 'https://www.vinted.es/brand/puma-x-the-kooples'), +(162152 , 'Tchibo' , 'https://www.vinted.es/brand/tchibo'), +(698531 , 'Takko Fashion' , 'https://www.vinted.es/brand/takko-fashion'), +(113898 , 'Top Secret' , 'https://www.vinted.es/brand/top-secret'), +(352755 , 'Tommy Jeans' , 'https://www.vinted.es/brand/tommy-jeans'), +(585 , 'Tribord' , 'https://www.vinted.es/brand/tribord'), +(15947 , 'Tiffosi' , 'https://www.vinted.es/brand/tiffosi'), +(9939 , 'Terre de Marins' , 'https://www.vinted.es/brand/terre-de-marins'), +(1922530 , 'TU Kids' , 'https://www.vinted.es/brand/tu-kids'), +(29535 , 'Tous' , 'https://www.vinted.es/brand/tous'), +(2441315 , 'Tous La Víe' , 'https://www.vinted.es/brand/tous-la-vie'), +(4865 , 'Tout Compte Fait' , 'https://www.vinted.es/brand/tout-compte-fait'), +(256 , 'Tout Simplement' , 'https://www.vinted.es/brand/tout-simplement'), +(4507 , 'Tod''s' , 'https://www.vinted.es/brand/tods'), +(176 , 'Toumaï' , 'https://www.vinted.es/brand/toumai'), +(32269 , 'Tosca Blu' , 'https://www.vinted.es/brand/tosca-blu'), +(9881155 , 'Toys“R”Us' , 'https://www.vinted.es/brand/toysrus'), +(40295 , 'Toscane' , 'https://www.vinted.es/brand/toscane'), +(22297 , 'Twin Set' , 'https://www.vinted.es/brand/twin-set'), +(1084491 , 'Twin Set by Simona Barbieri' , 'https://www.vinted.es/brand/twin-set-by-simona-barbieri'), +(3144459 , 'Twin & Chic' , 'https://www.vinted.es/brand/twin-chic'), +(18119 , 'Topman' , 'https://www.vinted.es/brand/topman'), +(175328 , 'Tom&Kiddy' , 'https://www.vinted.es/brand/tomkiddy'), +(293687 , 'Tom and Jerry' , 'https://www.vinted.es/brand/tom-and-jerry'), +(13999 , 'Tom & Eva' , 'https://www.vinted.es/brand/tom-eva'), +(281158 , 'Tom & Jo' , 'https://www.vinted.es/brand/tom-jo'), +(363101 , 'Tom & Zoé' , 'https://www.vinted.es/brand/tom-zoe'), +(794736 , 'TOPMARK' , 'https://www.vinted.es/brand/topmark'), +(8179528 , 'Tom & Rose' , 'https://www.vinted.es/brand/tom-rose'), +(6740189 , 'Puma x Tom & Jerry' , 'https://www.vinted.es/brand/puma-x-tom-jerry'), +(589613 , 'Tom&Trine' , 'https://www.vinted.es/brand/tomtrine'), +(2138244 , 'Tesco F&F' , 'https://www.vinted.es/brand/tesco-ff'), +(356588 , 'Textura' , 'https://www.vinted.es/brand/textura'), +(4616000 , 'Amedeo Testoni' , 'https://www.vinted.es/brand/amedeo-testoni'), +(106520 , 'Text' , 'https://www.vinted.es/brand/text'), +(370451 , 'Tex Home' , 'https://www.vinted.es/brand/tex-home'), +(498232 , 'Teutonia' , 'https://www.vinted.es/brand/teutonia'), +(7674232 , 'Textile Idea' , 'https://www.vinted.es/brand/textile-idea'), +(46013 , 'T.K. Maxx' , 'https://www.vinted.es/brand/tk-maxx'), +(302415 , 'TJ Maxx' , 'https://www.vinted.es/brand/tj-maxx'), +(8729 , 'Trussardi' , 'https://www.vinted.es/brand/trussardi'), +(64412 , 'Trussardi Jeans' , 'https://www.vinted.es/brand/trussardi-jeans'), +(5826571 , 'Trussardi Junior' , 'https://www.vinted.es/brand/trussardi-junior'), +(287765 , 'Trefl' , 'https://www.vinted.es/brand/trefl'), +(264730 , 'Trifle Cosmetics' , 'https://www.vinted.es/brand/trifle-cosmetics'), +(367921 , 'Top Vintage' , 'https://www.vinted.es/brand/top-vintage'), +(353461 , 'The Unbranded Brand' , 'https://www.vinted.es/brand/the-unbranded-brand'), +(1011057 , 'TYGO & vito' , 'https://www.vinted.es/brand/tygo-vito'), +(413925 , 'Ty Beanie' , 'https://www.vinted.es/brand/ty-beanie'), +(856941 , 'Typical Jill' , 'https://www.vinted.es/brand/typical-jill'), +(165832 , 'TYR' , 'https://www.vinted.es/brand/tyr'), +(382714 , 'Tyco' , 'https://www.vinted.es/brand/tyco'), +(388629 , 'TySilk' , 'https://www.vinted.es/brand/tysilk'), +(158608 , 'TYZI' , 'https://www.vinted.es/brand/tyzi'), +(752004 , 'Tyli' , 'https://www.vinted.es/brand/tyli'), +(353834 , 'Typhoon' , 'https://www.vinted.es/brand/typhoon'), +(282387 , 'Tommee Tippee' , 'https://www.vinted.es/brand/tommee-tippee'), +(310979 , 'Tesco' , 'https://www.vinted.es/brand/tesco'), +(1027735 , 'Tescoma' , 'https://www.vinted.es/brand/tescoma'), +(262888 , 'Tesori d´Oriente' , 'https://www.vinted.es/brand/tesori-doriente'), +(747491 , 'Tesoro' , 'https://www.vinted.es/brand/tesoro'), +(530670 , 'Tea Collection' , 'https://www.vinted.es/brand/tea-collection'), +(51861 , 'Trespass' , 'https://www.vinted.es/brand/trespass'), +(10105 , 'Triumph' , 'https://www.vinted.es/brand/triumph'), +(6404991 , 'Triumph Motorcycles' , 'https://www.vinted.es/brand/triumph-motorcycles'), +(14667 , 'Toms' , 'https://www.vinted.es/brand/toms'), +(6881363 , 'Champion X Todd Snyder' , 'https://www.vinted.es/brand/champion-x-todd-snyder'), +(1352999 , 'TU Woman' , 'https://www.vinted.es/brand/tu-woman'), +(24011 , 'Tintoretto' , 'https://www.vinted.es/brand/tintoretto'), +(156334 , 'TQF' , 'https://www.vinted.es/brand/tqf'), +(255828 , 'TQF Collection' , 'https://www.vinted.es/brand/tqf-collection'), +(42649 , 'The Sting' , 'https://www.vinted.es/brand/the-sting'), +(300524 , 'Thun' , 'https://www.vinted.es/brand/thun'), +(3269230 , 'ThunderFox' , 'https://www.vinted.es/brand/thunderfox'), +(412656 , 'THUNDERDOME' , 'https://www.vinted.es/brand/thunderdome'), +(320366 , 'Thunder' , 'https://www.vinted.es/brand/thunder'), +(7203013 , 'Thundernoise' , 'https://www.vinted.es/brand/thundernoise'), +(122454 , 'Thinsulate' , 'https://www.vinted.es/brand/thinsulate'), +(231478 , 'Thuasne' , 'https://www.vinted.es/brand/thuasne'), +(43601 , 'Think Pink' , 'https://www.vinted.es/brand/think-pink'), +(70538 , 'Think!' , 'https://www.vinted.es/brand/think'), +(383089 , 'Trendyol' , 'https://www.vinted.es/brand/trendyol'), +(76802 , 'Taifun' , 'https://www.vinted.es/brand/taifun'), +(184204 , 'Tartine et Chocolat' , 'https://www.vinted.es/brand/tartine-et-chocolat'), +(585393 , 'Trapstar' , 'https://www.vinted.es/brand/trapstar'), +(260398 , 'Tatuum' , 'https://www.vinted.es/brand/tatuum'), +(308070 , 'The Little White Company' , 'https://www.vinted.es/brand/the-little-white-company'), +(100506 , 'Tulipano' , 'https://www.vinted.es/brand/tulipano'), +(4327 , 'TBS' , 'https://www.vinted.es/brand/tbs'), +(275751 , 'T-Bags' , 'https://www.vinted.es/brand/t-bags'), +(3901386 , 'T By Me' , 'https://www.vinted.es/brand/t-by-me'), +(364685 , 'TBOE' , 'https://www.vinted.es/brand/tboe'), +(260936 , 'T-Bags Los Angeles' , 'https://www.vinted.es/brand/t-bags-los-angeles'), +(9075 , 'True Religion' , 'https://www.vinted.es/brand/true-religion'), +(4159 , 'Thomas Sabo' , 'https://www.vinted.es/brand/thomas-sabo'), +(281034 , 'Tomy' , 'https://www.vinted.es/brand/tomy'), +(171796 , 'Tomy Mariage' , 'https://www.vinted.es/brand/tomy-mariage'), +(184202 , 'Tom et Kiddy' , 'https://www.vinted.es/brand/tom-et-kiddy'), +(14757 , 'Trucco' , 'https://www.vinted.es/brand/trucco'), +(1493682 , 'True collective' , 'https://www.vinted.es/brand/true-collective'), +(2849141 , 'Tonies' , 'https://www.vinted.es/brand/tonies'), +(146090 , 'Toni&Guy' , 'https://www.vinted.es/brand/toniguy'), +(396220 , 'Toni Sailer' , 'https://www.vinted.es/brand/toni-sailer'), +(4061427 , 'To The Nines' , 'https://www.vinted.es/brand/to-the-nines'), +(271254 , 'Tata Italia' , 'https://www.vinted.es/brand/tata-italia'), +(791545 , 'Tomster' , 'https://www.vinted.es/brand/tomster'), +(7432255 , 'Tom Sachs x NikeCraft' , 'https://www.vinted.es/brand/tom-sachs-x-nikecraft'), +(1041282 , 'Tom Shot' , 'https://www.vinted.es/brand/tom-shot'), +(5289525 , 'Tom Sebastien' , 'https://www.vinted.es/brand/tom-sebastien'), +(1226343 , 'Terstal' , 'https://www.vinted.es/brand/terstal'), +(50527 , 'Tiger' , 'https://www.vinted.es/brand/tiger'), +(257356 , 'Tiger of Sweden' , 'https://www.vinted.es/brand/tiger-of-sweden'), +(224984 , 'Tiger Mist' , 'https://www.vinted.es/brand/tiger-mist'), +(382619 , 'Tigerlily' , 'https://www.vinted.es/brand/tigerlily'), +(100484 , 'Tigerhill' , 'https://www.vinted.es/brand/tigerhill'), +(4694422 , 'Tiger In The Rain' , 'https://www.vinted.es/brand/tiger-in-the-rain'), +(248992 , 'Tigex' , 'https://www.vinted.es/brand/tigex'), +(18513 , 'Tie Rack' , 'https://www.vinted.es/brand/tie-rack'), +(607872 , 'Timer' , 'https://www.vinted.es/brand/timer'), +(390006 , 'Time Road' , 'https://www.vinted.es/brand/time-road'), +(271613 , 'Tupperware' , 'https://www.vinted.es/brand/tupperware'), +(1211 , 'TFNC London' , 'https://www.vinted.es/brand/tfnc-london'), +(162196 , 'Toy Story' , 'https://www.vinted.es/brand/toy-story'), +(152482 , 'The White Company' , 'https://www.vinted.es/brand/the-white-company'), +(39319 , 'Tacco' , 'https://www.vinted.es/brand/tacco'), +(4508550 , 'Taccomatto' , 'https://www.vinted.es/brand/taccomatto'), +(92214 , 'talco' , 'https://www.vinted.es/brand/talco'), +(931628 , 'Tacoma' , 'https://www.vinted.es/brand/tacoma'), +(4892742 , 'Tacori' , 'https://www.vinted.es/brand/tacori'), +(327814 , 'Trollkids' , 'https://www.vinted.es/brand/trollkids'), +(7432264 , 'The Simpsons x Vans' , 'https://www.vinted.es/brand/the-simpsons-x-vans'), +(313931 , 'Tiptoi' , 'https://www.vinted.es/brand/tiptoi'), +(388471 , 'Tip Top' , 'https://www.vinted.es/brand/tip-top'), +(351601 , 'Tip Toey Joey' , 'https://www.vinted.es/brand/tip-toey-joey'), +(5321 , 'Timex' , 'https://www.vinted.es/brand/timex'), +(289824 , 'Topps' , 'https://www.vinted.es/brand/topps'), +(268 , 'Top Studio' , 'https://www.vinted.es/brand/top-studio'), +(93076 , 'Top Star' , 'https://www.vinted.es/brand/top-star'), +(254292 , 'Top Site' , 'https://www.vinted.es/brand/top-site'), +(28347 , 'teddy' , 'https://www.vinted.es/brand/teddy'), +(180370 , 'Teddy Brown' , 'https://www.vinted.es/brand/teddy-brown'), +(197864 , 'Teddy Boom' , 'https://www.vinted.es/brand/teddy-boom'), +(293268 , 'Teddy Lu' , 'https://www.vinted.es/brand/teddy-lu'), +(1238402 , 'Teddy Fresh' , 'https://www.vinted.es/brand/teddy-fresh'), +(1117603 , 'Teddy Shoes' , 'https://www.vinted.es/brand/teddy-shoes'), +(962103 , 'Teddy Mountain' , 'https://www.vinted.es/brand/teddy-mountain'), +(594705 , 'Teddy Friends' , 'https://www.vinted.es/brand/teddy-friends'), +(59924 , 'Trend One' , 'https://www.vinted.es/brand/trend-one'), +(2763 , 'Trend' , 'https://www.vinted.es/brand/trend'), +(16863 , 'Trendy' , 'https://www.vinted.es/brand/trendy'), +(297818 , 'Trendz' , 'https://www.vinted.es/brand/trendz'), +(105692 , 'Trendy-Too' , 'https://www.vinted.es/brand/trendy-too'), +(331479 , 'Trendy Style' , 'https://www.vinted.es/brand/trendy-style'), +(336145 , 'TRENDS' , 'https://www.vinted.es/brand/trends'), +(231796 , 'Trend it up' , 'https://www.vinted.es/brand/trend-it-up'), +(413249 , 'TRENDIY Art!' , 'https://www.vinted.es/brand/trendiy-art'), +(330563 , 'Tizzas' , 'https://www.vinted.es/brand/tizzas'), +(287043 , 'Tiny Love' , 'https://www.vinted.es/brand/tiny-love'), +(4559 , 'Tom Ford' , 'https://www.vinted.es/brand/tom-ford'), +(190704 , 'Tutto Piccolo' , 'https://www.vinted.es/brand/tutto-piccolo'), +(797 , 'Ted Lapidus' , 'https://www.vinted.es/brand/ted-lapidus'), +(173878 , 'Thrasher' , 'https://www.vinted.es/brand/thrasher'), +(6021667 , 'Vans x Thrasher' , 'https://www.vinted.es/brand/vans-x-thrasher'), +(57012 , 'Terre Bleue' , 'https://www.vinted.es/brand/terre-bleue'), +(328153 , 'Trixie' , 'https://www.vinted.es/brand/trixie'), +(609509 , 'Trixi Schober' , 'https://www.vinted.es/brand/trixi-schober'), +(257920 , 'Trafic' , 'https://www.vinted.es/brand/trafic'), +(7533 , 'Traffic People' , 'https://www.vinted.es/brand/traffic-people'), +(92836 , 'Traffic' , 'https://www.vinted.es/brand/traffic'), +(303594 , 'Tenth' , 'https://www.vinted.es/brand/tenth'), +(12619 , 'Tentation' , 'https://www.vinted.es/brand/tentation'), +(277431 , 'Tentazioni' , 'https://www.vinted.es/brand/tentazioni'), +(338639 , 'Ten-TEX' , 'https://www.vinted.es/brand/ten-tex'), +(551344 , 'Tentree' , 'https://www.vinted.es/brand/tentree'), +(2038277 , 'Toscane by Armand Thiery' , 'https://www.vinted.es/brand/toscane-by-armand-thiery'), +(16717 , 'Toscania' , 'https://www.vinted.es/brand/toscania'), +(41357 , 'Toscana' , 'https://www.vinted.es/brand/toscana'), +(349101 , 'Toscandjoe' , 'https://www.vinted.es/brand/toscandjoe'), +(287 , 'Together' , 'https://www.vinted.es/brand/together'), +(1200310 , 'TXM' , 'https://www.vinted.es/brand/txm'), +(2016786 , 'TXM Kids' , 'https://www.vinted.es/brand/txm-kids'), +(348643 , 'TXT' , 'https://www.vinted.es/brand/txt'), +(1493250 , 'TX Sports' , 'https://www.vinted.es/brand/tx-sports'), +(4113 , 'TinTin' , 'https://www.vinted.es/brand/tintin'), +(788404 , 'Tela' , 'https://www.vinted.es/brand/tela'), +(42541 , 'Tealer' , 'https://www.vinted.es/brand/tealer'), +(203928 , 'TERANCE KOLE' , 'https://www.vinted.es/brand/terance-kole'), +(91104 , 'Telmail' , 'https://www.vinted.es/brand/telmail'), +(39295 , 'Tera Bora' , 'https://www.vinted.es/brand/tera-bora'), +(92182 , 'TENAX' , 'https://www.vinted.es/brand/tenax'), +(280761 , 'Teletubbies' , 'https://www.vinted.es/brand/teletubbies'), +(559204 , 'TREDY' , 'https://www.vinted.es/brand/tredy'), +(6893969 , 'TRE by Natalie Ratabesi' , 'https://www.vinted.es/brand/tre-by-natalie-ratabesi'), +(286800 , 'Transformers' , 'https://www.vinted.es/brand/transformers'), +(11439 , 'Torrente' , 'https://www.vinted.es/brand/torrente'), +(257940 , 'Tessuto' , 'https://www.vinted.es/brand/tessuto'), +(584008 , 'Taranko' , 'https://www.vinted.es/brand/taranko'), +(78042 , 'Tory Burch' , 'https://www.vinted.es/brand/tory-burch'), +(516929 , 'TISSU' , 'https://www.vinted.es/brand/tissu'), +(5152170 , 'Tissu by E&N' , 'https://www.vinted.es/brand/tissu-by-en'), +(38365 , 'Tissot' , 'https://www.vinted.es/brand/tissot'), +(451408 , 'Tissavel' , 'https://www.vinted.es/brand/tissavel'), +(62914 , 'Toxik3' , 'https://www.vinted.es/brand/toxik3'), +(30919 , 'Toxik' , 'https://www.vinted.es/brand/toxik'), +(3359836 , 'TEVEO' , 'https://www.vinted.es/brand/teveo'), +(120980 , 'Timeout' , 'https://www.vinted.es/brand/timeout'), +(146408 , 'Twintip' , 'https://www.vinted.es/brand/twintip'), +(169170 , 'Threadbare' , 'https://www.vinted.es/brand/threadbare'), +(12947 , 'tosca blue' , 'https://www.vinted.es/brand/tosca-blue'), +(171690 , 'Tramontana' , 'https://www.vinted.es/brand/tramontana'), +(950586 , 'Tramontano' , 'https://www.vinted.es/brand/tramontano'), +(171664 , 'Too Faced' , 'https://www.vinted.es/brand/too-faced'), +(74004 , 'Talbots' , 'https://www.vinted.es/brand/talbots'), +(175278 , 'TALC' , 'https://www.vinted.es/brand/talc'), +(403099 , 'Talbot Runhof' , 'https://www.vinted.es/brand/talbot-runhof'), +(6654505 , 'The Tall Collective' , 'https://www.vinted.es/brand/the-tall-collective'), +(287280 , 'Trudi' , 'https://www.vinted.es/brand/trudi'), +(216984 , 'True Violet' , 'https://www.vinted.es/brand/true-violet'), +(318143 , 'Tradition des Vosges' , 'https://www.vinted.es/brand/tradition-des-vosges'), +(377492 , 'Trudeau' , 'https://www.vinted.es/brand/trudeau'), +(355021 , 'Tradition' , 'https://www.vinted.es/brand/tradition'), +(5811082 , 'Tradition Novanta3' , 'https://www.vinted.es/brand/tradition-novanta3'), +(29103 , 'Tiffany & Co.' , 'https://www.vinted.es/brand/tiffany-co'), +(7450744 , 'Tiffany & Co. x Supreme' , 'https://www.vinted.es/brand/tiffany-co-x-supreme'), +(6344945 , 'Supreme x Tiffany & Co.' , 'https://www.vinted.es/brand/supreme-x-tiffany-co'), +(257494 , 'Tiffi' , 'https://www.vinted.es/brand/tiffi'), +(4690099 , 'Tiffany' , 'https://www.vinted.es/brand/tiffany'), +(387122 , 'Tiffany Rose' , 'https://www.vinted.es/brand/tiffany-rose'), +(880177 , 'Tiffany''s' , 'https://www.vinted.es/brand/tiffanys'), +(2419908 , 'TIF TIFFY' , 'https://www.vinted.es/brand/tif-tiffy'), +(14703 , 'Tanaïs' , 'https://www.vinted.es/brand/tanais'), +(284 , 'Thierry Mugler' , 'https://www.vinted.es/brand/thierry-mugler'), +(500448 , 'The Couture Club' , 'https://www.vinted.es/brand/the-couture-club'), +(6159460 , 'The Genuine Leather' , 'https://www.vinted.es/brand/the-genuine-leather'), +(232972 , 'The Bridge' , 'https://www.vinted.es/brand/the-bridge'), +(2845196 , 'The Ridge' , 'https://www.vinted.es/brand/the-ridge'), +(177100 , 'Teva' , 'https://www.vinted.es/brand/teva'), +(285806 , 'Tefal' , 'https://www.vinted.es/brand/tefal'), +(263516 , 'Team' , 'https://www.vinted.es/brand/team'), +(770965 , 'Telva' , 'https://www.vinted.es/brand/telva'), +(417851 , 'True Spirit' , 'https://www.vinted.es/brand/true-spirit'), +(194822 , 'Trollbeads' , 'https://www.vinted.es/brand/trollbeads'), +(5942794 , 'Troll' , 'https://www.vinted.es/brand/troll'), +(282023 , 'Trollied Dolly' , 'https://www.vinted.es/brand/trollied-dolly'), +(725423 , 'Troll Nursery' , 'https://www.vinted.es/brand/troll-nursery'), +(380247 , 'Troy Lee Designs' , 'https://www.vinted.es/brand/troy-lee-designs'), +(358245 , 'Tut Tut Copains' , 'https://www.vinted.es/brand/tut-tut-copains'), +(401112 , 'Tut Tut Animo' , 'https://www.vinted.es/brand/tut-tut-animo'), +(5209 , 'Tati' , 'https://www.vinted.es/brand/tati'), +(457469 , 'Tatiane de Freitas' , 'https://www.vinted.es/brand/tatiane-de-freitas'), +(6839 , 'Taillissime' , 'https://www.vinted.es/brand/taillissime'), +(278989 , 'TATÁ' , 'https://www.vinted.es/brand/tata'), +(6039 , 'Tamiko' , 'https://www.vinted.es/brand/tamiko'), +(276863 , 'Tatoo' , 'https://www.vinted.es/brand/tatoo'), +(170618 , 'TM Lewin' , 'https://www.vinted.es/brand/tm-lewin'), +(333630 , 'Tarmak' , 'https://www.vinted.es/brand/tarmak'), +(284857 , 'The Children''s Place' , 'https://www.vinted.es/brand/the-childrens-place'), +(379326 , 'Twistshake' , 'https://www.vinted.es/brand/twistshake'), +(144006 , 'Terra di Siena' , 'https://www.vinted.es/brand/terra-di-siena'), +(290583 , 'Terra di Sienna' , 'https://www.vinted.es/brand/terra-di-sienna'), +(42699 , 'Tahari' , 'https://www.vinted.es/brand/tahari'), +(780041 , 'tahari ASL' , 'https://www.vinted.es/brand/tahari-asl'), +(275499 , 'Trasluz' , 'https://www.vinted.es/brand/trasluz'), +(2195 , 'Take Two' , 'https://www.vinted.es/brand/take-two'), +(4693520 , 'TOPMODEL' , 'https://www.vinted.es/brand/topmodel'), +(10265 , 'Target' , 'https://www.vinted.es/brand/target'), +(463192 , 'Target Dry' , 'https://www.vinted.es/brand/target-dry'), +(196566 , 'Trois Kilos Sept' , 'https://www.vinted.es/brand/trois-kilos-sept'), +(13613 , 'Timezone' , 'https://www.vinted.es/brand/timezone'), +(473686 , 'Tough Team' , 'https://www.vinted.es/brand/tough-team'), +(675027 , 'Touch Team' , 'https://www.vinted.es/brand/touch-team'), +(850298 , 'TajineBanane' , 'https://www.vinted.es/brand/tajinebanane'), +(136010 , 'Tulle' , 'https://www.vinted.es/brand/tulle'), +(400326 , 'Tultex' , 'https://www.vinted.es/brand/tultex'), +(1097599 , 'TULLO' , 'https://www.vinted.es/brand/tullo'), +(2683664 , 'TULEC TREND' , 'https://www.vinted.es/brand/tulec-trend'), +(30805 , 'Talking French' , 'https://www.vinted.es/brand/talking-french'), +(280524 , 'Tigha' , 'https://www.vinted.es/brand/tigha'), +(269012 , 'Tibhar' , 'https://www.vinted.es/brand/tibhar'), +(509336 , 'Tignanello' , 'https://www.vinted.es/brand/tignanello'), +(51989 , 'Thomas Burberry' , 'https://www.vinted.es/brand/thomas-burberry'), +(359608 , 'Thomas' , 'https://www.vinted.es/brand/thomas'), +(291654 , 'Thomas & Friends' , 'https://www.vinted.es/brand/thomas-friends'), +(265742 , 'Thomas Pink' , 'https://www.vinted.es/brand/thomas-pink'), +(1014678 , 'THOMAS & TREIN' , 'https://www.vinted.es/brand/thomas-de-trein'), +(39399 , 'Thomas Wylde' , 'https://www.vinted.es/brand/thomas-wylde'), +(182732 , 'THOMAS RABE' , 'https://www.vinted.es/brand/thomas-rabe'), +(748499 , 'Thomas Nash' , 'https://www.vinted.es/brand/thomas-nash'), +(1472158 , 'Thomas Rath' , 'https://www.vinted.es/brand/thomas-rath'), +(182978 , 'To be too' , 'https://www.vinted.es/brand/to-be-too'), +(240722 , 'Truffle Collection' , 'https://www.vinted.es/brand/truffle-collection'), +(670202 , 'Tedi' , 'https://www.vinted.es/brand/tedi'), +(64502 , 'Teria Yabar' , 'https://www.vinted.es/brand/teria-yabar'), +(247004 , 'TAMS' , 'https://www.vinted.es/brand/tams'), +(112864 , 'Tam Tam' , 'https://www.vinted.es/brand/tam-tam'), +(323123 , 'Tamiya' , 'https://www.vinted.es/brand/tamiya'), +(331019 , 'Tamagotchi' , 'https://www.vinted.es/brand/tamagotchi'), +(84166 , 'TAMAR' , 'https://www.vinted.es/brand/tamar'), +(7661 , 'tammy' , 'https://www.vinted.es/brand/tammy'), +(122386 , 'Tamara' , 'https://www.vinted.es/brand/tamara'), +(255444 , 'Tambi' , 'https://www.vinted.es/brand/tambi'), +(364043 , 'Tinycottons' , 'https://www.vinted.es/brand/tinycottons'), +(458818 , 'Tokuno Shima' , 'https://www.vinted.es/brand/tokuno-shima'), +(207448 , 'Trasher' , 'https://www.vinted.es/brand/trasher'), +(1071247 , 'Trash & Luxury' , 'https://www.vinted.es/brand/trash-luxury'), +(767433 , 'Taylor & Wright' , 'https://www.vinted.es/brand/taylor-wright'), +(37701 , 'TOY G' , 'https://www.vinted.es/brand/toy-g'), +(387134 , 'Toy Universe' , 'https://www.vinted.es/brand/toy-universe'), +(1786352 , 'Tognana' , 'https://www.vinted.es/brand/tognana'), +(312628 , 'Toga' , 'https://www.vinted.es/brand/toga'), +(664122 , 'Toy Biz' , 'https://www.vinted.es/brand/toy-biz'), +(119754 , 'Toypes' , 'https://www.vinted.es/brand/toypes'), +(382230 , 'Talavera' , 'https://www.vinted.es/brand/talavera'), +(1351884 , 'TALA' , 'https://www.vinted.es/brand/tala'), +(213516 , 'Toxico' , 'https://www.vinted.es/brand/toxico'), +(345027 , 'Taylor' , 'https://www.vinted.es/brand/taylor'), +(408056 , 'Taylor Swift' , 'https://www.vinted.es/brand/taylor-swift'), +(408678 , 'TaylorMade' , 'https://www.vinted.es/brand/taylormade'), +(4566011 , 'Taylor Of Old Bond Street' , 'https://www.vinted.es/brand/taylor-of-old-bond-street'), +(398516 , 'Tailor & Son' , 'https://www.vinted.es/brand/tailor-son'), +(424523 , 'Tailored Originals' , 'https://www.vinted.es/brand/tailored-originals'), +(581840 , 'Tailor Made' , 'https://www.vinted.es/brand/tailor-made'), +(646999 , 'Tailoring' , 'https://www.vinted.es/brand/tailoring'), +(1418534 , 'TAILORED ATHLETE' , 'https://www.vinted.es/brand/tailored-athlete'), +(165994 , 'Tino González' , 'https://www.vinted.es/brand/tino-gonzalez'), +(389975 , 'Top Top' , 'https://www.vinted.es/brand/top-top'), +(3090358 , 'Top To Bottom' , 'https://www.vinted.es/brand/top-to-bottom'), +(18123 , 'Tenki' , 'https://www.vinted.es/brand/tenki'), +(322796 , 'Tensione In' , 'https://www.vinted.es/brand/tensione-in'), +(117058 , 'Tennis' , 'https://www.vinted.es/brand/tennis'), +(504760 , 'Ten IS' , 'https://www.vinted.es/brand/ten-is'), +(74342 , 'Tekila' , 'https://www.vinted.es/brand/tekila'), +(3828579 , '10 Milano' , 'https://www.vinted.es/brand/10-milano'), +(351317 , 'The Ordinary' , 'https://www.vinted.es/brand/the-ordinary'), +(185770 , 'Tricky tracks' , 'https://www.vinted.es/brand/tricky-tracks'), +(176880 , 'Tim Pouce' , 'https://www.vinted.es/brand/tim-pouce'), +(271791 , 'TecnoPro' , 'https://www.vinted.es/brand/tecnopro'), +(270611 , 'TechnoPro' , 'https://www.vinted.es/brand/technopro'), +(187428 , 'tarte' , 'https://www.vinted.es/brand/tarte'), +(647687 , 'Tartaleta' , 'https://www.vinted.es/brand/tartaleta'), +(430163 , 'Tante Betsy' , 'https://www.vinted.es/brand/tante-betsy'), +(623461 , 'Tart' , 'https://www.vinted.es/brand/tart'), +(1285985 , 'TART Collections' , 'https://www.vinted.es/brand/tart-collections'), +(360083 , 'Tateossian' , 'https://www.vinted.es/brand/tateossian'), +(46993 , 'the Ragged priest' , 'https://www.vinted.es/brand/the-ragged-priest'), +(307683 , 'Tula' , 'https://www.vinted.es/brand/tula'), +(273358 , 'TULAROSA' , 'https://www.vinted.es/brand/tularosa'), +(914521 , 'Tul y Pompón' , 'https://www.vinted.es/brand/tul-y-pompon'), +(2975841 , 'Tua By Braccialini' , 'https://www.vinted.es/brand/tua-by-braccialini'), +(1411610 , 'Tua Nua' , 'https://www.vinted.es/brand/tua-nua'), +(28973 , 'T-Traxx' , 'https://www.vinted.es/brand/t-traxx'), +(150546 , 'Tony Boy' , 'https://www.vinted.es/brand/tony-boy'), +(203552 , 'Tony Bowls' , 'https://www.vinted.es/brand/tony-bowls'), +(355589 , 'The Smurfs' , 'https://www.vinted.es/brand/the-smurfs'), +(279855 , 'TOAST' , 'https://www.vinted.es/brand/toast'), +(1173045 , 'torstai' , 'https://www.vinted.es/brand/torstai'), +(6910072 , 'Thomas Tait' , 'https://www.vinted.es/brand/thomas-tait'), +(52747 , 'Today' , 'https://www.vinted.es/brand/today'), +(308658 , 'Today''s Woman' , 'https://www.vinted.es/brand/todays-woman'), +(3177649 , 'Todai' , 'https://www.vinted.es/brand/todai'), +(24247 , 'Truffle' , 'https://www.vinted.es/brand/truffle'), +(1082344 , 'Transparent' , 'https://www.vinted.es/brand/transparent'), +(340879 , 'TRN1961' , 'https://www.vinted.es/brand/trn1961'), +(80380 , 'Twins' , 'https://www.vinted.es/brand/twins'), +(866922 , 'Twins by Julius Hüpeden' , 'https://www.vinted.es/brand/twins-by-julius-hupeden'), +(292998 , 'Twinlife' , 'https://www.vinted.es/brand/twinlife'), +(157942 , 'Twister' , 'https://www.vinted.es/brand/twister'), +(43203 , 'Twist' , 'https://www.vinted.es/brand/twist'), +(150420 , 'Twist&Tango' , 'https://www.vinted.es/brand/twisttango'), +(676353 , 'TOG24' , 'https://www.vinted.es/brand/tog24'), +(412000 , 'The Odder Side' , 'https://www.vinted.es/brand/the-odder-side'), +(45603 , 'Tango' , 'https://www.vinted.es/brand/tango'), +(6776634 , 'adidas x Tango' , 'https://www.vinted.es/brand/adidas-x-tango'), +(139408 , 'TAGORE' , 'https://www.vinted.es/brand/tagore'), +(277054 , 'Tangerine' , 'https://www.vinted.es/brand/tangerine'), +(177198 , 'Tangle Teezer' , 'https://www.vinted.es/brand/tangle-teezer'), +(511081 , 'Tang An Qi Yi Zu' , 'https://www.vinted.es/brand/tang-an-qi-yi-zu'), +(896649 , 'Tang Jing Rui' , 'https://www.vinted.es/brand/tang-jing-rui'), +(1331263 , 'Tagoss' , 'https://www.vinted.es/brand/tagoss'), +(6646727 , 'Tangent GC' , 'https://www.vinted.es/brand/tangent-gc'), +(15193 , 'Tendance' , 'https://www.vinted.es/brand/tendance'), +(593603 , 'Tendances Fetes' , 'https://www.vinted.es/brand/tendances-fetes'), +(23295 , 'Tendance Fashion' , 'https://www.vinted.es/brand/tendance-fashion'), +(446321 , 'Tendence' , 'https://www.vinted.es/brand/tendence'), +(337802 , 'Travis Scott' , 'https://www.vinted.es/brand/travis-scott'), +(6057244 , 'Nike x Travis Scott' , 'https://www.vinted.es/brand/nike-x-travis-scott'), +(6756529 , 'Travis Scott x Virgil Abloh' , 'https://www.vinted.es/brand/travis-scott-x-virgil-abloh'), +(7432256 , 'Vlone x Travis Scott' , 'https://www.vinted.es/brand/vlone-x-travis-scott'), +(724423 , 'TWO WAY' , 'https://www.vinted.es/brand/two-way'), +(1278959 , 'Twoday' , 'https://www.vinted.es/brand/twoday'), +(535100 , 'Two Days Later' , 'https://www.vinted.es/brand/two-days-later'), +(391866 , 'Tommy Bahama' , 'https://www.vinted.es/brand/tommy-bahama'), +(288333 , 'TF1 Games' , 'https://www.vinted.es/brand/tf1-games'), +(213942 , 'Tinèo' , 'https://www.vinted.es/brand/tineo'), +(99242 , 'Trust' , 'https://www.vinted.es/brand/trust'), +(665532 , 'Tru Trussardi' , 'https://www.vinted.es/brand/tru-trussardi'), +(285308 , 'Tristar' , 'https://www.vinted.es/brand/tristar'), +(692826 , 'Truth & Fable' , 'https://www.vinted.es/brand/truth-fable'), +(166562 , 'Tristan' , 'https://www.vinted.es/brand/tristan'), +(464517 , 'True Tradition' , 'https://www.vinted.es/brand/true-tradition'), +(653225 , 'TRUTEX' , 'https://www.vinted.es/brand/trutex'), +(184278 , 'Trappeur' , 'https://www.vinted.es/brand/trappeur'), +(205626 , 'Trapper' , 'https://www.vinted.es/brand/trapper'), +(16715 , 'Tweety' , 'https://www.vinted.es/brand/tweety'), +(293395 , 'Twenty Easy' , 'https://www.vinted.es/brand/twenty-easy'), +(1755 , 'Twenty One' , 'https://www.vinted.es/brand/twenty-one'), +(292776 , 'Twenty Three' , 'https://www.vinted.es/brand/twenty-three'), +(749720 , 'Twenty Easy by Kaos' , 'https://www.vinted.es/brand/twenty-easy-by-kaos'), +(62512 , 'Twenty8Twelve' , 'https://www.vinted.es/brand/twenty8twelve'), +(31755 , 'Twenty-Twenty' , 'https://www.vinted.es/brand/twenty-twenty'), +(159350 , 'Twentyfourseven' , 'https://www.vinted.es/brand/twentyfourseven'), +(340184 , 'Twenty One Pilots' , 'https://www.vinted.es/brand/twenty-one-pilots'), +(3924227 , 'Twenty Four Haitch' , 'https://www.vinted.es/brand/twenty-four-haitch'), +(181264 , 'Tecnica' , 'https://www.vinted.es/brand/tecnica'), +(240194 , 'Tann''s' , 'https://www.vinted.es/brand/tanns'), +(1821388 , 'The Range' , 'https://www.vinted.es/brand/the-range'), +(329781 , 'THROTTLEMAN' , 'https://www.vinted.es/brand/throttleman'), +(82404 , 'Tenezis' , 'https://www.vinted.es/brand/tenezis'), +(3307525 , 'Tenezito' , 'https://www.vinted.es/brand/tenezito'), +(851585 , 'Tom-Du' , 'https://www.vinted.es/brand/tom-du'), +(261760 , 'Trigema' , 'https://www.vinted.es/brand/trigema'), +(407582 , 'Tank' , 'https://www.vinted.es/brand/tank'), +(20477 , 'Tandem' , 'https://www.vinted.es/brand/tandem'), +(344417 , 'Tantrend' , 'https://www.vinted.es/brand/tantrend'), +(324302 , 'Timiami' , 'https://www.vinted.es/brand/timiami'), +(4690624 , 'United Colors of Benetton' , 'https://www.vinted.es/brand/united-colors-of-benetton'), +(471 , 'Urban Outfitters' , 'https://www.vinted.es/brand/urban-outfitters'), +(334 , 'Undiz' , 'https://www.vinted.es/brand/undiz'), +(6974841 , 'Disney x Undiz' , 'https://www.vinted.es/brand/disney-x-undiz'), +(4322642 , 'Undicidieci' , 'https://www.vinted.es/brand/undicidieci'), +(52035 , 'Under Armour' , 'https://www.vinted.es/brand/under-armour'), +(355565 , 'Heat Gear' , 'https://www.vinted.es/brand/heat-gear'), +(1153 , 'Uniqlo' , 'https://www.vinted.es/brand/uniqlo'), +(6082417 , 'J.W. Anderson x Uniqlo' , 'https://www.vinted.es/brand/jw-anderson-x-uniqlo'), +(4560882 , 'UNI & LO' , 'https://www.vinted.es/brand/uni-lo'), +(2239 , 'UGG' , 'https://www.vinted.es/brand/ugg'), +(5853977 , 'UGG Australia' , 'https://www.vinted.es/brand/ugg-australia'), +(7159527 , 'UGG Since 1974' , 'https://www.vinted.es/brand/ugg-since-1974'), +(6234132 , 'UGG X Telfar' , 'https://www.vinted.es/brand/ugg-x-telfar'), +(6964387 , 'BAPE X UGG' , 'https://www.vinted.es/brand/bape-x-ugg'), +(16363 , 'Ugo Bacci' , 'https://www.vinted.es/brand/ugo-bacci'), +(290609 , 'UGO REALI' , 'https://www.vinted.es/brand/ugo-reali'), +(188860 , 'Ugo Zaldi' , 'https://www.vinted.es/brand/ugo-zaldi'), +(881332 , 'Ugo Cacciatori' , 'https://www.vinted.es/brand/ugo-cacciatori'), +(275559 , 'Uomo' , 'https://www.vinted.es/brand/uomo'), +(8715 , 'Umbro' , 'https://www.vinted.es/brand/umbro'), +(7143861 , 'adidas x Umbro' , 'https://www.vinted.es/brand/adidas-x-umbro'), +(1878106 , 'Kim Jones x Umbro' , 'https://www.vinted.es/brand/kim-jones-x-umbro'), +(305581 , 'Umbra' , 'https://www.vinted.es/brand/umbra'), +(18327 , 'Unique' , 'https://www.vinted.es/brand/unique'), +(5782781 , 'UNIQUE21' , 'https://www.vinted.es/brand/unique21'), +(345278 , 'Unique Vintage' , 'https://www.vinted.es/brand/unique-vintage'), +(5226614 , 'Unique Edition' , 'https://www.vinted.es/brand/unique-edition'), +(5861683 , 'Unique Spectrum' , 'https://www.vinted.es/brand/unique-spectrum'), +(7299 , 'U.S. Polo Assn.' , 'https://www.vinted.es/brand/us-polo-assn'), +(7707 , 'U Collection' , 'https://www.vinted.es/brand/u-collection'), +(6120297 , 'U Collection by Forever Unique' , 'https://www.vinted.es/brand/u-collection-by-forever-unique'), +(1153174 , 'Undercolors Of Benetton' , 'https://www.vinted.es/brand/undercolors-of-benetton'), +(148 , 'Un Jour Ailleurs' , 'https://www.vinted.es/brand/un-jour-ailleurs'), +(1517 , 'Unisa' , 'https://www.vinted.es/brand/unisa'), +(276822 , 'UNICA' , 'https://www.vinted.es/brand/unica'), +(106482 , 'Unika' , 'https://www.vinted.es/brand/unika'), +(317244 , 'Unika Paris' , 'https://www.vinted.es/brand/unika-paris'), +(18139 , 'Une saison à Paris' , 'https://www.vinted.es/brand/une-saison-a-paris'), +(469260 , 'Unisono' , 'https://www.vinted.es/brand/unisono'), +(1298326 , 'Unikat' , 'https://www.vinted.es/brand/unikat'), +(1963016 , 'UNIMATIC' , 'https://www.vinted.es/brand/unimatic'), +(58854 , 'UNE' , 'https://www.vinted.es/brand/une'), +(263782 , 'UNE FILLE' , 'https://www.vinted.es/brand/une-fille'), +(83292 , 'Une Mode Pour Moi' , 'https://www.vinted.es/brand/une-mode-pour-moi'), +(2537 , 'Une Chose a Part' , 'https://www.vinted.es/brand/une-chose-a-part'), +(312807 , 'Une A Une' , 'https://www.vinted.es/brand/une-a-une'), +(193640 , 'Une souris dans mon dressing' , 'https://www.vinted.es/brand/une-souris-dans-mon-dressing'), +(125814 , 'UNE HEURE POUR SOI' , 'https://www.vinted.es/brand/une-heure-pour-soi'), +(257468 , 'UNE FÉE À PARIS' , 'https://www.vinted.es/brand/une-fee-a-paris'), +(305069 , 'Uneek' , 'https://www.vinted.es/brand/uneek'), +(58956 , 'Urban Classics' , 'https://www.vinted.es/brand/urban-classics'), +(6558718 , 'Urban Classics Curvy' , 'https://www.vinted.es/brand/urban-classics-curvy'), +(78656 , 'Unit' , 'https://www.vinted.es/brand/unit'), +(647285 , 'Unit Kids' , 'https://www.vinted.es/brand/unit-kids'), +(164166 , 'United' , 'https://www.vinted.es/brand/united'), +(16601 , 'United Nude' , 'https://www.vinted.es/brand/united-nude'), +(753925 , 'Unit Shoes' , 'https://www.vinted.es/brand/unit-shoes'), +(432396 , 'Unity' , 'https://www.vinted.es/brand/unity'), +(399616 , 'United Office' , 'https://www.vinted.es/brand/united-office'), +(312633 , 'United Sport' , 'https://www.vinted.es/brand/united-sport'), +(35877 , 'Uterqüe' , 'https://www.vinted.es/brand/uterque'), +(3475 , 'Ulla Popken' , 'https://www.vinted.es/brand/ulla-popken'), +(41343 , 'Urban By Gemo' , 'https://www.vinted.es/brand/urban-by-gemo'), +(1426177 , 'Un-Namable' , 'https://www.vinted.es/brand/un-namable'), +(19233 , 'Used' , 'https://www.vinted.es/brand/used'), +(17071 , 'Used Jeans' , 'https://www.vinted.es/brand/used-jeans'), +(16087 , 'U Essentiel' , 'https://www.vinted.es/brand/u-essentiel'), +(352949 , 'Unic' , 'https://www.vinted.es/brand/unic'), +(4758161 , 'Unicorn we are Legends' , 'https://www.vinted.es/brand/unicorn-we-are-legends'), +(363824 , 'SU' , 'https://www.vinted.es/brand/su'), +(293936 , 'Unicef' , 'https://www.vinted.es/brand/unicef'), +(275919 , 'Unico' , 'https://www.vinted.es/brand/unico'), +(146392 , 'Unicool' , 'https://www.vinted.es/brand/unicool'), +(235178 , 'Ubisoft' , 'https://www.vinted.es/brand/ubisoft'), +(202722 , 'USA PRO' , 'https://www.vinted.es/brand/usa-pro'), +(286264 , 'Up FASHION' , 'https://www.vinted.es/brand/up-fashion'), +(330585 , 'UP2FASHION' , 'https://www.vinted.es/brand/up2fashion'), +(144422 , 'Universal' , 'https://www.vinted.es/brand/universal'), +(300317 , 'Universal Studios' , 'https://www.vinted.es/brand/universal-studios'), +(561013 , 'Universal People' , 'https://www.vinted.es/brand/universal-people'), +(603407 , 'Universal Hobbies' , 'https://www.vinted.es/brand/universal-hobbies'), +(412877 , 'Universal Music' , 'https://www.vinted.es/brand/universal-music'), +(710234 , 'Universal Thread' , 'https://www.vinted.es/brand/universal-thread'), +(378695 , 'Universal Works' , 'https://www.vinted.es/brand/universal-works'), +(183420 , 'U tout petits' , 'https://www.vinted.es/brand/u-tout-petits'), +(17571 , 'UP' , 'https://www.vinted.es/brand/up'), +(632013 , 'Upim' , 'https://www.vinted.es/brand/upim'), +(386540 , 'U-Power' , 'https://www.vinted.es/brand/u-power'), +(382237 , 'UP2' , 'https://www.vinted.es/brand/up2'), +(311809 , 'Upper Deck' , 'https://www.vinted.es/brand/upper-deck'), +(426051 , 'Up2Glide' , 'https://www.vinted.es/brand/up2glide'), +(491678 , 'Upgrade' , 'https://www.vinted.es/brand/upgrade'), +(80846 , 'Up Star' , 'https://www.vinted.es/brand/up-star'), +(7559 , 'Ünküt' , 'https://www.vinted.es/brand/unkut'), +(180164 , 'Uhlsport' , 'https://www.vinted.es/brand/uhlsport'), +(7863 , 'Un Deux Trois' , 'https://www.vinted.es/brand/un-deux-trois'), +(1359348 , 'United Standard' , 'https://www.vinted.es/brand/united-standard'), +(827370 , 'United Pets' , 'https://www.vinted.es/brand/united-pets'), +(3192753 , 'United Oddsocks' , 'https://www.vinted.es/brand/united-oddsocks'), +(168312 , 'Urban Decay' , 'https://www.vinted.es/brand/urban-decay'), +(871061 , 'Unknown London' , 'https://www.vinted.es/brand/unknown-london'), +(6901918 , 'UNOde50' , 'https://www.vinted.es/brand/unode50'), +(345845 , 'Uno' , 'https://www.vinted.es/brand/uno'), +(467773 , 'Unoaerre' , 'https://www.vinted.es/brand/unoaerre'), +(284986 , 'Uno Piu Uno' , 'https://www.vinted.es/brand/uno-piu-uno'), +(524996 , 'Uno Due' , 'https://www.vinted.es/brand/uno-due'), +(102428 , 'Unofficial' , 'https://www.vinted.es/brand/unofficial'), +(118018 , 'UVEX' , 'https://www.vinted.es/brand/uvex'), +(162358 , 'Urban Bliss' , 'https://www.vinted.es/brand/urban-bliss'), +(261864 , 'UNIK' , 'https://www.vinted.es/brand/unik'), +(316009 , 'Unikid' , 'https://www.vinted.es/brand/unikid'), +(243312 , 'UEFA' , 'https://www.vinted.es/brand/uefa'), +(392079 , 'Urban Wave' , 'https://www.vinted.es/brand/urban-wave'), +(34481 , 'US.Marshall' , 'https://www.vinted.es/brand/usmarshall'), +(11973 , 'Urban Surface' , 'https://www.vinted.es/brand/urban-surface'), +(16469 , 'Ungaro' , 'https://www.vinted.es/brand/ungaro'), +(96628 , 'Ungaro Fever' , 'https://www.vinted.es/brand/ungaro-fever'), +(174250 , 'URIAGE' , 'https://www.vinted.es/brand/uriage'), +(299314 , 'Uniplay' , 'https://www.vinted.es/brand/uniplay'), +(2156363 , 'UIT' , 'https://www.vinted.es/brand/uit'), +(66232 , 'Uissos' , 'https://www.vinted.es/brand/uissos'), +(349798 , 'US Jeans' , 'https://www.vinted.es/brand/us-jeans'), +(288232 , 'Urban By Venca' , 'https://www.vinted.es/brand/urban-by-venca'), +(303393 , 'URBAN by venco' , 'https://www.vinted.es/brand/urban-by-venco'), +(292162 , 'University Games' , 'https://www.vinted.es/brand/university-games'), +(275879 , 'UK' , 'https://www.vinted.es/brand/uk'), +(968928 , 'Ukje' , 'https://www.vinted.es/brand/ukje'), +(310519 , 'UK2LA' , 'https://www.vinted.es/brand/uk2la'), +(64154 , 'Ukala' , 'https://www.vinted.es/brand/ukala'), +(7674217 , 'Ukrainian Garment' , 'https://www.vinted.es/brand/ukrainian-garment'), +(7551706 , 'ŪKAI' , 'https://www.vinted.es/brand/ukai'), +(294707 , 'Usborne' , 'https://www.vinted.es/brand/usborne'), +(617205 , 'UNIFORME' , 'https://www.vinted.es/brand/uniforme'), +(162192 , 'Uniform' , 'https://www.vinted.es/brand/uniform'), +(1116119 , 'UNIFORM WARES' , 'https://www.vinted.es/brand/uniform-wares'), +(5605820 , 'Uniformix' , 'https://www.vinted.es/brand/uniformix'), +(478666 , 'Unlocked' , 'https://www.vinted.es/brand/unlocked'), +(509030 , 'Urban Revivo' , 'https://www.vinted.es/brand/urban-revivo'), +(180856 , 'UBS2' , 'https://www.vinted.es/brand/ubs2'), +(784438 , 'Urban Rascals' , 'https://www.vinted.es/brand/urban-rascals'), +(61962 , 'Ushuaia' , 'https://www.vinted.es/brand/ushuaia'), +(307982 , 'Uncle Sam' , 'https://www.vinted.es/brand/uncle-sam'), +(650022 , 'UND.' , 'https://www.vinted.es/brand/und'), +(2049 , 'underground' , 'https://www.vinted.es/brand/underground'), +(225972 , 'US FREE STAR' , 'https://www.vinted.es/brand/us-free-star'), +(13393 , 'US' , 'https://www.vinted.es/brand/us'), +(78972 , 'US BASIC' , 'https://www.vinted.es/brand/us-basic'), +(860487 , 'Utenos trikotažas' , 'https://www.vinted.es/brand/utenos-trikotazas'), +(390398 , 'Urban Threads' , 'https://www.vinted.es/brand/urban-threads'), +(406266 , 'Un Paso Más' , 'https://www.vinted.es/brand/un-paso-mas'), +(138724 , 'Ulanka' , 'https://www.vinted.es/brand/ulanka'), +(933809 , 'UL&Ka' , 'https://www.vinted.es/brand/ulka'), +(215130 , 'Urban Kiabi' , 'https://www.vinted.es/brand/urban-kiabi'), +(12409 , 'Un Matin D''été' , 'https://www.vinted.es/brand/un-matin-dete'), +(301939 , 'Unyk' , 'https://www.vinted.es/brand/unyk'), +(199684 , 'UNK' , 'https://www.vinted.es/brand/unk'), +(2336790 , 'Unknown Curiosity' , 'https://www.vinted.es/brand/unknown-curiosity'), +(381857 , 'Untold' , 'https://www.vinted.es/brand/untold'), +(11377 , 'UCLA' , 'https://www.vinted.es/brand/ucla'), +(13919 , 'Uttam London' , 'https://www.vinted.es/brand/uttam-london'), +(195720 , 'Uttam Boutique' , 'https://www.vinted.es/brand/uttam-boutique'), +(184250 , 'UNLIMITED' , 'https://www.vinted.es/brand/unlimited'), +(672311 , 'Uzturre' , 'https://www.vinted.es/brand/uzturre'), +(659420 , 'Unigirl Paris' , 'https://www.vinted.es/brand/unigirl-paris'), +(332961 , 'UFO' , 'https://www.vinted.es/brand/ufo'), +(367609 , 'UFFICIO 87' , 'https://www.vinted.es/brand/ufficio-87'), +(325716 , 'UFC' , 'https://www.vinted.es/brand/ufc'), +(1584710 , 'U&F' , 'https://www.vinted.es/brand/uf'), +(292611 , 'Urchin' , 'https://www.vinted.es/brand/urchin'), +(290264 , 'Urban Spirit' , 'https://www.vinted.es/brand/urban-spirit'), +(59994 , 'Urbancode' , 'https://www.vinted.es/brand/urbancode'), +(327951 , 'Ultra PRO' , 'https://www.vinted.es/brand/ultra-pro'), +(311318 , 'URBAN DISTRICT' , 'https://www.vinted.es/brand/urban-district'), +(234788 , 'Unlisted' , 'https://www.vinted.es/brand/unlisted'), +(321804 , 'U Oxygn' , 'https://www.vinted.es/brand/u-oxygn'), +(29639 , 'USPA' , 'https://www.vinted.es/brand/uspa'), +(165168 , 'USHA' , 'https://www.vinted.es/brand/usha'), +(180324 , 'USUAL' , 'https://www.vinted.es/brand/usual'), +(6134700 , 'Puma x Usain Bolt' , 'https://www.vinted.es/brand/puma-x-usain-bolt'), +(314644 , 'Urbndist' , 'https://www.vinted.es/brand/urbndist'), +(2495254 , 'Unuo' , 'https://www.vinted.es/brand/unuo'), +(66680 , 'Un point c''est tout' , 'https://www.vinted.es/brand/un-point-cest-tout'), +(18719 , 'Un Tour en Ville' , 'https://www.vinted.es/brand/un-tour-en-ville'), +(65856 , 'Union Rail' , 'https://www.vinted.es/brand/union-rail'), +(3121813 , 'Uplander' , 'https://www.vinted.es/brand/uplander'), +(663208 , 'Urban 65 Outlaws' , 'https://www.vinted.es/brand/urban-65-outlaws'), +(56406 , 'Unif' , 'https://www.vinted.es/brand/unif'), +(438796 , 'Unifit' , 'https://www.vinted.es/brand/unifit'), +(56338 , 'U-topik' , 'https://www.vinted.es/brand/u-topik'), +(145018 , 'Ursula Mascaró' , 'https://www.vinted.es/brand/ursula-mascaro'), +(298031 , 'UMA' , 'https://www.vinted.es/brand/uma'), +(396317 , 'Uma Parker' , 'https://www.vinted.es/brand/uma-parker'), +(1373227 , 'UMANI' , 'https://www.vinted.es/brand/umani'), +(1839653 , 'Umai' , 'https://www.vinted.es/brand/umai'), +(3381434 , 'UMA WANG' , 'https://www.vinted.es/brand/uma-wang'), +(1493404 , 'uma cosmetics' , 'https://www.vinted.es/brand/uma-cosmetics'), +(72086 , 'UMM' , 'https://www.vinted.es/brand/umm'), +(325670 , 'UMO' , 'https://www.vinted.es/brand/umo'), +(393549 , 'Uwowo' , 'https://www.vinted.es/brand/uwowo'), +(194358 , 'ULTIMO' , 'https://www.vinted.es/brand/ultimo'), +(469640 , 'Ultimate Speed' , 'https://www.vinted.es/brand/ultimate-speed'), +(759706 , 'Ultimate Direction' , 'https://www.vinted.es/brand/ultimate-direction'), +(289028 , 'Ulysse' , 'https://www.vinted.es/brand/ulysse'), +(367248 , 'Ulysse Nardin' , 'https://www.vinted.es/brand/ulysse-nardin'), +(327955 , 'Unusual' , 'https://www.vinted.es/brand/unusual'), +(60536 , 'Urban Renewal' , 'https://www.vinted.es/brand/urban-renewal'), +(176808 , 'Ultron' , 'https://www.vinted.es/brand/ultron'), +(436467 , 'Union' , 'https://www.vinted.es/brand/union'), +(170948 , 'Unionbay' , 'https://www.vinted.es/brand/unionbay'), +(393625 , 'Union Blues' , 'https://www.vinted.es/brand/union-blues'), +(10851 , 'Un monde en Or' , 'https://www.vinted.es/brand/un-monde-en-or'), +(300902 , 'Unconditional' , 'https://www.vinted.es/brand/unconditional'), +(326451 , 'Urban Ring' , 'https://www.vinted.es/brand/urban-ring'), +(310429 , 'Unsigned' , 'https://www.vinted.es/brand/unsigned'), +(372132 , 'USG' , 'https://www.vinted.es/brand/usg'), +(293870 , 'UMM HAFSA' , 'https://www.vinted.es/brand/umm-hafsa'), +(84042 , 'Umberto Monza' , 'https://www.vinted.es/brand/umberto-monza'), +(330254 , 'Umberto Ginocchietti' , 'https://www.vinted.es/brand/umberto-ginocchietti'), +(214526 , 'UMI' , 'https://www.vinted.es/brand/umi'), +(546108 , 'Urban Mist' , 'https://www.vinted.es/brand/urban-mist'), +(617694 , 'Urbanista' , 'https://www.vinted.es/brand/urbanista'), +(1414265 , 'Unlabel' , 'https://www.vinted.es/brand/unlabel'), +(401812 , 'Ulvang' , 'https://www.vinted.es/brand/ulvang'), +(299625 , 'Week-end à la mer' , 'https://www.vinted.es/brand/un-week-end-a-la-mer'), +(175376 , 'Week end à la Mer' , 'https://www.vinted.es/brand/week-end-a-la-mer'), +(443654 , 'UTILITY' , 'https://www.vinted.es/brand/utility'), +(954638 , 'Urgent' , 'https://www.vinted.es/brand/urgent'), +(214794 , 'Urban Rags' , 'https://www.vinted.es/brand/urban-rags'), +(79770 , 'Urban Diva' , 'https://www.vinted.es/brand/urban-diva'), +(59974 , 'Undercover' , 'https://www.vinted.es/brand/undercover'), +(6021665 , 'Nike x Undercover' , 'https://www.vinted.es/brand/nike-x-undercover'), +(6296490 , 'Supreme x Undercover' , 'https://www.vinted.es/brand/supreme-x-undercover'), +(3845 , 'Urban Behavior' , 'https://www.vinted.es/brand/urban-behavior'), +(606985 , 'UPPAbaby' , 'https://www.vinted.es/brand/uppababy'), +(375977 , 'Ulla Johnson' , 'https://www.vinted.es/brand/ulla-johnson'), +(715639 , 'ULLENBOOM' , 'https://www.vinted.es/brand/ullenboom'), +(284710 , 'Under Blue' , 'https://www.vinted.es/brand/under-blue'), +(334557 , 'Urban Coco' , 'https://www.vinted.es/brand/urban-coco'), +(197232 , 'Undefeated' , 'https://www.vinted.es/brand/undefeated'), +(3899097 , 'adidas x Undefeated' , 'https://www.vinted.es/brand/adidas-x-undefeated'), +(62532 , 'Urban Dressing' , 'https://www.vinted.es/brand/urban-dressing'), +(182446 , 'University' , 'https://www.vinted.es/brand/university'), +(132092 , 'University Club' , 'https://www.vinted.es/brand/university-club'), +(282247 , 'Urmoda' , 'https://www.vinted.es/brand/urmoda'), +(316912 , 'Uniwork' , 'https://www.vinted.es/brand/uniwork'), +(193462 , 'Unze' , 'https://www.vinted.es/brand/unze'), +(302487 , 'Un Temps Pour Elle' , 'https://www.vinted.es/brand/un-temps-pour-elle'), +(381760 , 'Urban Style' , 'https://www.vinted.es/brand/urban-style'), +(179612 , 'Urban Beach' , 'https://www.vinted.es/brand/urban-beach'), +(168116 , 'Urban Touch' , 'https://www.vinted.es/brand/urban-touch'), +(364127 , 'UNIQ' , 'https://www.vinted.es/brand/uniq'), +(2487167 , 'Urszula Szyk' , 'https://www.vinted.es/brand/urszula-szyk'), +(252974 , 'Uptown' , 'https://www.vinted.es/brand/uptown'), +(309267 , 'UnLace' , 'https://www.vinted.es/brand/unlace'), +(750232 , 'UNLICENSED' , 'https://www.vinted.es/brand/unlicensed'), +(384837 , 'Une Fille Today I Am' , 'https://www.vinted.es/brand/une-fille-today-i-am'), +(280564 , 'Uta Raasch' , 'https://www.vinted.es/brand/uta-raasch'), +(1315705 , '&Co Woman' , 'https://www.vinted.es/brand/co-woman'), +(1141337 , 'Urban Boys' , 'https://www.vinted.es/brand/urban-boys'), +(170430 , 'Unno' , 'https://www.vinted.es/brand/unno'), +(362412 , 'Univers' , 'https://www.vinted.es/brand/univers'), +(389356 , 'Urban Republic' , 'https://www.vinted.es/brand/urban-republic'), +(378894 , 'UTOPIA' , 'https://www.vinted.es/brand/utopia'), +(295254 , 'UT' , 'https://www.vinted.es/brand/ut'), +(465094 , 'UTY' , 'https://www.vinted.es/brand/uty'), +(305999 , 'Ucon Acrobatics' , 'https://www.vinted.es/brand/ucon-acrobatics'), +(2562354 , 'Ulubione' , 'https://www.vinted.es/brand/ulubione'), +(2387895 , 'Unser Sandmännchen' , 'https://www.vinted.es/brand/unser-sandmannchen'), +(459638 , 'Units' , 'https://www.vinted.es/brand/units'), +(174110 , 'Ulric de Varens' , 'https://www.vinted.es/brand/ulric-de-varens'), +(95964 , 'U2' , 'https://www.vinted.es/brand/u2'), +(362739 , 'U.2BS' , 'https://www.vinted.es/brand/u2bs'), +(4696233 , 'Unützer' , 'https://www.vinted.es/brand/unutzer'), +(307266 , 'Ultrasport' , 'https://www.vinted.es/brand/ultrasport'), +(1291585 , 'Ubra' , 'https://www.vinted.es/brand/ubra'), +(589587 , 'ubang' , 'https://www.vinted.es/brand/ubang'), +(386783 , 'U-Boat' , 'https://www.vinted.es/brand/u-boat'), +(362114 , 'Under Control' , 'https://www.vinted.es/brand/under-control'), +(20097 , 'UbU' , 'https://www.vinted.es/brand/ubu'), +(150718 , 'UBIK' , 'https://www.vinted.es/brand/ubik'), +(323458 , 'Urban Wear' , 'https://www.vinted.es/brand/urban-wear'), +(195584 , 'Urbanears' , 'https://www.vinted.es/brand/urbanears'), +(400814 , 'Urban Pipeline' , 'https://www.vinted.es/brand/urban-pipeline'), +(248164 , 'USCO' , 'https://www.vinted.es/brand/usco'), +(28945 , 'Uscita' , 'https://www.vinted.es/brand/uscita'), +(212382 , 'USC' , 'https://www.vinted.es/brand/usc'), +(543321 , 'UR Sugar' , 'https://www.vinted.es/brand/ur-sugar'), +(4038096 , 'Ultra Retinol Complex' , 'https://www.vinted.es/brand/ultra-retinol-complex'), +(3341965 , 'Unfair Athletics' , 'https://www.vinted.es/brand/unfair-athletics'), +(348773 , 'Ultrasun' , 'https://www.vinted.es/brand/ultrasun'), +(1021472 , 'Up Jeans' , 'https://www.vinted.es/brand/up-jeans'), +(906728 , 'Umberto Giannini' , 'https://www.vinted.es/brand/umberto-giannini'), +(17267 , 'Un Apres-Midi De Chien' , 'https://www.vinted.es/brand/un-apres-midi-de-chien'), +(268620 , 'Umgee' , 'https://www.vinted.es/brand/umgee'), +(859689 , 'Urban City' , 'https://www.vinted.es/brand/urban-city'), +(2659 , 'Upla' , 'https://www.vinted.es/brand/upla'), +(721512 , 'Update' , 'https://www.vinted.es/brand/update'), +(1886183 , 'UPDATED' , 'https://www.vinted.es/brand/updated'), +(756966 , 'Ups' , 'https://www.vinted.es/brand/ups'), +(1083855 , 'THE UPSIDE' , 'https://www.vinted.es/brand/the-upside'), +(46651 , 'U.S. ARMY' , 'https://www.vinted.es/brand/us-army'), +(218204 , 'Urban Fifty' , 'https://www.vinted.es/brand/urban-fifty'), +(300174 , 'UJA' , 'https://www.vinted.es/brand/uja'), +(381360 , 'US.Kids & Style' , 'https://www.vinted.es/brand/us-kids-style'), +(1120262 , 'Up To Be' , 'https://www.vinted.es/brand/up-to-be'), +(290362 , 'un chose à part' , 'https://www.vinted.es/brand/un-chose-a-part'), +(1159908 , 'Uwantisell' , 'https://www.vinted.es/brand/uwantisell'), +(17143 , 'Vertbaudet' , 'https://www.vinted.es/brand/vertbaudet'), +(8817767 , 'Verbaudet' , 'https://www.vinted.es/brand/verbaudet'), +(55 , 'Vero Moda' , 'https://www.vinted.es/brand/vero-moda'), +(5773165 , 'Vero Moda Curve' , 'https://www.vinted.es/brand/vero-moda-curve'), +(5923517 , 'Vero Moda Petite' , 'https://www.vinted.es/brand/vero-moda-petite'), +(6843821 , 'Vero Moda Maternity' , 'https://www.vinted.es/brand/vero-moda-maternity'), +(5805259 , 'Vero Moda Tall' , 'https://www.vinted.es/brand/vero-moda-tall'), +(139 , 'Vans' , 'https://www.vinted.es/brand/vans'), +(747116 , 'Van Santen & Van Santen' , 'https://www.vinted.es/brand/van-santen-van-santen'), +(6039201 , 'Vans x Disney' , 'https://www.vinted.es/brand/vans-x-disney'), +(12243 , 'Vynil Fraise' , 'https://www.vinted.es/brand/vynil-fraise'), +(1593 , 'Vanessa Bruno' , 'https://www.vinted.es/brand/vanessa-bruno'), +(133612 , 'Vanessa Wu' , 'https://www.vinted.es/brand/vanessa-wu'), +(99978 , 'Vanilia' , 'https://www.vinted.es/brand/vanilia'), +(373745 , 'Van haren' , 'https://www.vinted.es/brand/van-haren'), +(460 , 'Vila' , 'https://www.vinted.es/brand/vila'), +(287249 , 'Vilac' , 'https://www.vinted.es/brand/vilac'), +(209432 , 'Vila Joy' , 'https://www.vinted.es/brand/vila-joy'), +(343094 , 'Vilanova' , 'https://www.vinted.es/brand/vilanova'), +(370579 , 'Vilagallo' , 'https://www.vinted.es/brand/vilagallo'), +(4155726 , 'VILA Petite' , 'https://www.vinted.es/brand/vila-petite'), +(6901912 , 'vila curve' , 'https://www.vinted.es/brand/vila-curve'), +(2304038 , 'Vilaurita' , 'https://www.vinted.es/brand/vilaurita'), +(7609338 , 'Villa' , 'https://www.vinted.es/brand/villa'), +(689 , 'Vitamine' , 'https://www.vinted.es/brand/vitamine'), +(274487 , 'VTech' , 'https://www.vinted.es/brand/vtech'), +(14803 , 'Vintage Dressing' , 'https://www.vinted.es/brand/vintage-dressing'), +(1185 , 'Victoria''s Secret' , 'https://www.vinted.es/brand/victorias-secret'), +(7033665 , 'Victoria''s Secret PINK' , 'https://www.vinted.es/brand/victorias-secret-pink'), +(12477 , 'Vera Pelle' , 'https://www.vinted.es/brand/vera-pelle'), +(2293 , 'Versace' , 'https://www.vinted.es/brand/versace'), +(2053 , 'Versace Jeans' , 'https://www.vinted.es/brand/versace-jeans'), +(37075 , 'Versace Jeans Couture' , 'https://www.vinted.es/brand/versace-jeans-couture'), +(1754056 , 'Versace Collection' , 'https://www.vinted.es/brand/versace-collection'), +(1727423 , 'Versace Sport' , 'https://www.vinted.es/brand/versace-sport'), +(3893873 , 'Versace 19.69' , 'https://www.vinted.es/brand/versace-1969'), +(1724057 , 'Young Versace' , 'https://www.vinted.es/brand/young-versace'), +(1967021 , 'Versace Classic V2' , 'https://www.vinted.es/brand/versace-classic-v2'), +(4687301 , 'Versace Kids' , 'https://www.vinted.es/brand/versace-kids'), +(201910 , 'Vingino' , 'https://www.vinted.es/brand/vingino'), +(489149 , 'VerySimple' , 'https://www.vinted.es/brand/verysimple'), +(94594 , 'Very' , 'https://www.vinted.es/brand/very'), +(374556 , 'Very me' , 'https://www.vinted.es/brand/very-me'), +(366439 , 'Veryzen' , 'https://www.vinted.es/brand/veryzen'), +(1305875 , 'VeryFitPro' , 'https://www.vinted.es/brand/veryfitpro'), +(263034 , 'VERDE' , 'https://www.vinted.es/brand/verde'), +(11423 , 'Victoria' , 'https://www.vinted.es/brand/victoria'), +(147 , 'Victoria Couture' , 'https://www.vinted.es/brand/victoria-couture'), +(96516 , 'Victoria Bijoux' , 'https://www.vinted.es/brand/victoria-bijoux'), +(24291 , 'Victoria Delef' , 'https://www.vinted.es/brand/victoria-delef'), +(51695 , 'Victoria Beckham' , 'https://www.vinted.es/brand/victoria-beckham'), +(513271 , 'Victoria R' , 'https://www.vinted.es/brand/victoria-r'), +(457344 , 'VICTORIA & STELLA' , 'https://www.vinted.es/brand/victoria-stella'), +(48485 , 'Victoria & Karl' , 'https://www.vinted.es/brand/victoria-karl'), +(2250601 , 'Vestito' , 'https://www.vinted.es/brand/vestito'), +(183220 , 'Vestino' , 'https://www.vinted.es/brand/vestino'), +(240558 , 'Vestino Due' , 'https://www.vinted.es/brand/vestino-due'), +(817283 , 'VESTILO' , 'https://www.vinted.es/brand/vestilo'), +(5928803 , 'Valentino' , 'https://www.vinted.es/brand/valentino'), +(1474371 , 'Valentino Rossi' , 'https://www.vinted.es/brand/valentino-rossi'), +(5802775 , 'Valentino Roma' , 'https://www.vinted.es/brand/valentino-roma'), +(1567344 , 'Valentino Orlandi' , 'https://www.vinted.es/brand/valentino-orlandi'), +(56050 , 'Valentina' , 'https://www.vinted.es/brand/valentina'), +(793789 , 'Valentina Bebés' , 'https://www.vinted.es/brand/valentina-bebes'), +(768106 , 'VALENTINA GIORGI' , 'https://www.vinted.es/brand/valentina-giorgi'), +(26571 , 'Valentine Gauthier' , 'https://www.vinted.es/brand/valentine-gauthier'), +(66 , 'Volcom' , 'https://www.vinted.es/brand/volcom'), +(33171 , 'Vicolo' , 'https://www.vinted.es/brand/vicolo'), +(360262 , 'Vicolo Northland' , 'https://www.vinted.es/brand/vicolo-northland'), +(5862003 , 'Vicolo Trivelli' , 'https://www.vinted.es/brand/vicolo-trivelli'), +(2180689 , 'vivo love modo' , 'https://www.vinted.es/brand/vivo-love-modo'), +(14217 , 'Vivienne Westwood' , 'https://www.vinted.es/brand/vivienne-westwood'), +(3884609 , 'Vivienne Westwood Red Label' , 'https://www.vinted.es/brand/vivienne-westwood-red-label'), +(19889 , 'Vintage Love' , 'https://www.vinted.es/brand/vintage-love'), +(2851 , 'Vices Verso' , 'https://www.vinted.es/brand/vices-verso'), +(284980 , 'VICES' , 'https://www.vinted.es/brand/vices'), +(691652 , 'Vices Woman' , 'https://www.vinted.es/brand/vices-woman'), +(359617 , 'Viceroy' , 'https://www.vinted.es/brand/viceroy'), +(17723 , 'Vice versa' , 'https://www.vinted.es/brand/vice-versa'), +(32319 , 'Vicenza' , 'https://www.vinted.es/brand/vicenza'), +(268929 , 'Vic & Via' , 'https://www.vinted.es/brand/vicvia'), +(387760 , 'Vicosta' , 'https://www.vinted.es/brand/vicosta'), +(211548 , 'Vives' , 'https://www.vinted.es/brand/vives'), +(400669 , 'Vitesse' , 'https://www.vinted.es/brand/vitesse'), +(469170 , 'Veneziano' , 'https://www.vinted.es/brand/veneziano'), +(71238 , 'venezia' , 'https://www.vinted.es/brand/venezia'), +(367031 , 'Veneziana' , 'https://www.vinted.es/brand/veneziana'), +(1740609 , 'Verdelimon' , 'https://www.vinted.es/brand/verdelimon'), +(409398 , 'Verde Veronica' , 'https://www.vinted.es/brand/verde-veronica'), +(1763 , 'Vera & Lucy' , 'https://www.vinted.es/brand/vera-lucy'), +(147968 , 'Verdissima' , 'https://www.vinted.es/brand/verdissima'), +(362446 , 'Verdi' , 'https://www.vinted.es/brand/verdi'), +(37597 , 'Verse' , 'https://www.vinted.es/brand/verse'), +(42559 , 'Verdosa' , 'https://www.vinted.es/brand/verdosa'), +(1786261 , 'Véréco' , 'https://www.vinted.es/brand/vereco'), +(5845 , 'Vert De Rage' , 'https://www.vinted.es/brand/vert-de-rage'), +(308616 , 'Vogue Fashion' , 'https://www.vinted.es/brand/vogue-fashion'), +(6722078 , 'vogue eyewear' , 'https://www.vinted.es/brand/vogue-eyewear'), +(4566153 , 'Vogue x Gigi Hadid' , 'https://www.vinted.es/brand/vogue-x-gigi-hadid'), +(49971 , 'Vögele' , 'https://www.vinted.es/brand/vogele'), +(763807 , 'Vogelsang' , 'https://www.vinted.es/brand/vogelsang'), +(856500 , 'Vögele Shoes' , 'https://www.vinted.es/brand/vogele-shoes'), +(346586 , 'vanesa bruno' , 'https://www.vinted.es/brand/vanesa-bruno'), +(15913 , 'Vagabond' , 'https://www.vinted.es/brand/vagabond'), +(31641 , 'Venca' , 'https://www.vinted.es/brand/venca'), +(112968 , 'Venco' , 'https://www.vinted.es/brand/venco'), +(441848 , 'Venalisa' , 'https://www.vinted.es/brand/venalisa'), +(343977 , 'V&A' , 'https://www.vinted.es/brand/va'), +(359598 , 'VENA' , 'https://www.vinted.es/brand/vena'), +(972666 , 'Ventana' , 'https://www.vinted.es/brand/ventana'), +(445379 , 'VENNA' , 'https://www.vinted.es/brand/venna'), +(603 , 'Veja' , 'https://www.vinted.es/brand/veja'), +(1443754 , 'VEJAS' , 'https://www.vinted.es/brand/vejas'), +(205670 , 'Verano' , 'https://www.vinted.es/brand/verano'), +(38841 , 'Vera Mont' , 'https://www.vinted.es/brand/vera-mont'), +(289749 , 'Vera' , 'https://www.vinted.es/brand/vera'), +(394833 , 'V by Very' , 'https://www.vinted.es/brand/v-by-very'), +(191748 , 'Violetta' , 'https://www.vinted.es/brand/violetta'), +(244536 , 'Violeta by MANGO' , 'https://www.vinted.es/brand/violeta-by-mango'), +(19017 , 'Violette' , 'https://www.vinted.es/brand/violette'), +(704409 , 'Violeta e Federico' , 'https://www.vinted.es/brand/violeta-e-federico'), +(851082 , 'Violet Hamden' , 'https://www.vinted.es/brand/violet-hamden'), +(492483 , 'Violet & Claire' , 'https://www.vinted.es/brand/violet-claire'), +(809802 , 'Violet Atos Lombardini' , 'https://www.vinted.es/brand/violet-atos-lombardini'), +(366540 , 'Vermont' , 'https://www.vinted.es/brand/vermont'), +(2225 , 'Vero Cuoio' , 'https://www.vinted.es/brand/vero-cuoio'), +(5757 , 'Voyelles' , 'https://www.vinted.es/brand/voyelles'), +(336791 , 'Vubu' , 'https://www.vinted.es/brand/vubu'), +(47507 , 'Vanilla' , 'https://www.vinted.es/brand/vanilla'), +(1516055 , 'VANILLA PUNK' , 'https://www.vinted.es/brand/vanilla-punk'), +(193706 , 'Vanilla Star' , 'https://www.vinted.es/brand/vanilla-star'), +(312652 , 'Vanila' , 'https://www.vinted.es/brand/vanila'), +(771173 , 'Varlesca' , 'https://www.vinted.es/brand/varlesca'), +(605 , 'Vicomte Arthur' , 'https://www.vinted.es/brand/vicomte-arthur'), +(403502 , 'Villa Happ' , 'https://www.vinted.es/brand/villa-happ'), +(620422 , 'Villalobos' , 'https://www.vinted.es/brand/villalobos'), +(14269 , 'Villaret' , 'https://www.vinted.es/brand/villaret'), +(1790014 , 'Villa D''este' , 'https://www.vinted.es/brand/villa-deste'), +(218982 , 'Villa Bleue' , 'https://www.vinted.es/brand/villa-bleue'), +(1510607 , 'VILLAGE CANDLE' , 'https://www.vinted.es/brand/village-candle'), +(311438 , 'Villain' , 'https://www.vinted.es/brand/villain'), +(108690 , 'Veritas' , 'https://www.vinted.es/brand/veritas'), +(159588 , 'Vintage Denim' , 'https://www.vinted.es/brand/vintage-denim'), +(4694030 , 'Villeroy & Boch' , 'https://www.vinted.es/brand/villeroy-boch'), +(425771 , 'Vistula' , 'https://www.vinted.es/brand/vistula'), +(581600 , 'Valentina''s' , 'https://www.vinted.es/brand/valentinas'), +(122658 , 'Valentini' , 'https://www.vinted.es/brand/valentini'), +(102234 , 'Valentine' , 'https://www.vinted.es/brand/valentine'), +(1626557 , 'Vaquera' , 'https://www.vinted.es/brand/vaquera'), +(276475 , 'Volta' , 'https://www.vinted.es/brand/volta'), +(76850 , 'Voltan' , 'https://www.vinted.es/brand/voltan'), +(5445779 , 'Volta 49' , 'https://www.vinted.es/brand/volta-49'), +(503568 , 'Voltereta' , 'https://www.vinted.es/brand/voltereta'), +(402902 , 'Volpato' , 'https://www.vinted.es/brand/volpato'), +(327232 , 'Volare' , 'https://www.vinted.es/brand/volare'), +(380762 , 'Volcano' , 'https://www.vinted.es/brand/volcano'), +(1240775 , 'Volatile' , 'https://www.vinted.es/brand/volatile'), +(37727 , 'Vichy' , 'https://www.vinted.es/brand/vichy'), +(326948 , 'Vicky' , 'https://www.vinted.es/brand/vicky'), +(328887 , 'Vicky Martin' , 'https://www.vinted.es/brand/vicky-martin'), +(151172 , 'VTY' , 'https://www.vinted.es/brand/vty'), +(13385 , 'Vs. Miss' , 'https://www.vinted.es/brand/vs-miss'), +(299842 , 'Violet' , 'https://www.vinted.es/brand/violet'), +(431017 , 'Violento' , 'https://www.vinted.es/brand/violento'), +(633778 , 'Vario' , 'https://www.vinted.es/brand/vario'), +(904019 , 'Variadas.' , 'https://www.vinted.es/brand/variadas'), +(102358 , 'Variance' , 'https://www.vinted.es/brand/variance'), +(488908 , 'Variety' , 'https://www.vinted.es/brand/variety'), +(803725 , 'Varlion' , 'https://www.vinted.es/brand/varlion'), +(848744 , 'Varones' , 'https://www.vinted.es/brand/varones'), +(363283 , 'VARCO AUSPICIUS' , 'https://www.vinted.es/brand/varco-auspicius'), +(320927 , 'Varisma' , 'https://www.vinted.es/brand/varisma'), +(2975 , 'Von Dutch' , 'https://www.vinted.es/brand/von-dutch'), +(6575977 , 'Puma x Von Dutch' , 'https://www.vinted.es/brand/puma-x-von-dutch'), +(7189810 , 'Věra Nováková' , 'https://www.vinted.es/brand/vera-novakova'), +(15145 , 'Vera Gomma' , 'https://www.vinted.es/brand/vera-gomma'), +(353316 , 'VERA JO' , 'https://www.vinted.es/brand/vera-jo'), +(430785 , 'Verango' , 'https://www.vinted.es/brand/verango'), +(829030 , 'Versano' , 'https://www.vinted.es/brand/versano'), +(293035 , 'Viking' , 'https://www.vinted.es/brand/viking'), +(4985290 , 'Viking Footwear' , 'https://www.vinted.es/brand/viking-footwear'), +(3093227 , 'Visinga' , 'https://www.vinted.es/brand/visinga'), +(20903 , 'Venice' , 'https://www.vinted.es/brand/venice'), +(109020 , 'Venice Beach' , 'https://www.vinted.es/brand/venice-beach'), +(8275 , 'Venise' , 'https://www.vinted.es/brand/venise'), +(69222 , 'Venise Collection' , 'https://www.vinted.es/brand/venise-collection'), +(2099090 , 'Venicci' , 'https://www.vinted.es/brand/venicci'), +(258146 , 'VIA CONDOTTI' , 'https://www.vinted.es/brand/via-condotti'), +(320517 , 'Viacom' , 'https://www.vinted.es/brand/viacom'), +(29699 , 'VIA CODE' , 'https://www.vinted.es/brand/via-code'), +(63684 , 'Vaude' , 'https://www.vinted.es/brand/vaude'), +(462707 , 'Vaudeville & Burlesque' , 'https://www.vinted.es/brand/vaudeville-burlesque'), +(316981 , 'Van Der Rock' , 'https://www.vinted.es/brand/van-der-rock'), +(174246 , 'Vanderbilt' , 'https://www.vinted.es/brand/vanderbilt'), +(333395 , 'Vademecum' , 'https://www.vinted.es/brand/vademecum'), +(798887 , 'Van der Laan' , 'https://www.vinted.es/brand/van-der-laan'), +(1493504 , 'VAIDE' , 'https://www.vinted.es/brand/vaide'), +(9753321 , 'Vaudelet & Fosco' , 'https://www.vinted.es/brand/vaudelet-fosco'), +(1643631 , 'Vandel' , 'https://www.vinted.es/brand/vandel'), +(3420024 , 'Vandenberg' , 'https://www.vinted.es/brand/vandenberg'), +(174758 , 'Vinyl Fraise' , 'https://www.vinted.es/brand/vinyl-fraise'), +(12311 , 'Velvet' , 'https://www.vinted.es/brand/velvet'), +(404114 , 'Velvet Heart' , 'https://www.vinted.es/brand/velvet-heart'), +(553011 , 'Velvet by Graham & Spencer' , 'https://www.vinted.es/brand/velvet-by-graham-spencer'), +(640106 , 'Velvet Kitten' , 'https://www.vinted.es/brand/velvet-kitten'), +(857823 , 'Velvet Rose' , 'https://www.vinted.es/brand/velvet-rose'), +(407448 , 'Velveteen' , 'https://www.vinted.es/brand/velveteen'), +(453628 , 'Veletto' , 'https://www.vinted.es/brand/veletto'), +(2873 , 'Valege' , 'https://www.vinted.es/brand/valege'), +(5767 , 'Voodoo' , 'https://www.vinted.es/brand/voodoo'), +(97990 , 'Voodoo Vixen' , 'https://www.vinted.es/brand/voodoo-vixen'), +(163184 , 'Voodoo Dolls' , 'https://www.vinted.es/brand/voodoo-dolls'), +(4820309 , 'Voodoo Jewels' , 'https://www.vinted.es/brand/voodoo-jewels'), +(304775 , 'vitamina' , 'https://www.vinted.es/brand/vitamina'), +(627448 , 'Vitamina Tu' , 'https://www.vinted.es/brand/vitamina-tu'), +(7238339 , 'Vitamins Baby' , 'https://www.vinted.es/brand/vitamins-baby'), +(109378 , 'Vince Otto' , 'https://www.vinted.es/brand/vince-otto'), +(49657 , 'Via28' , 'https://www.vinted.es/brand/via28'), +(16135 , 'VOTRE MODE.' , 'https://www.vinted.es/brand/votre-mode'), +(99810 , 'Vilebrequin' , 'https://www.vinted.es/brand/vilebrequin'), +(78986 , 'victory' , 'https://www.vinted.es/brand/victory'), +(244004 , 'Victorio & Lucchino' , 'https://www.vinted.es/brand/victorio-lucchino'), +(272996 , 'Victor' , 'https://www.vinted.es/brand/victor'), +(522938 , 'VRS' , 'https://www.vinted.es/brand/vrs'), +(802317 , 'VRS Woman' , 'https://www.vinted.es/brand/vrs-woman'), +(343454 , 'VR' , 'https://www.vinted.es/brand/vr'), +(2056707 , 'VRL' , 'https://www.vinted.es/brand/vrl'), +(250004 , 'VR46' , 'https://www.vinted.es/brand/vr46'), +(356624 , 'VR BOX' , 'https://www.vinted.es/brand/vr-box'), +(431572 , 'Vroom & Dreesmann' , 'https://www.vinted.es/brand/vroom-dreesmann'), +(25243 , 'Vesper' , 'https://www.vinted.es/brand/vesper'), +(17479 , 'Vic Matié' , 'https://www.vinted.es/brand/vic-matie'), +(3527 , 'Vince Camuto' , 'https://www.vinted.es/brand/vince-camuto'), +(241336 , 'Volkswagen' , 'https://www.vinted.es/brand/volkswagen'), +(55906 , 'Vita' , 'https://www.vinted.es/brand/vita'), +(659268 , 'Vitakraft' , 'https://www.vinted.es/brand/vitakraft'), +(79720 , 'Vitanza' , 'https://www.vinted.es/brand/vitanza'), +(329302 , 'Vitale Barberis Canonico' , 'https://www.vinted.es/brand/vitale-barberis-canonico'), +(343229 , 'VITALITY' , 'https://www.vinted.es/brand/vitality'), +(177000 , 'Vita Liberata' , 'https://www.vinted.es/brand/vita-liberata'), +(332535 , 'Vital' , 'https://www.vinted.es/brand/vital'), +(1325 , 'Version Feminin' , 'https://www.vinted.es/brand/version-feminin'), +(463639 , 'Vissavi' , 'https://www.vinted.es/brand/vissavi'), +(492498 , 'Vis À Vis' , 'https://www.vinted.es/brand/vis-a-vis'), +(274070 , 'Valleverde' , 'https://www.vinted.es/brand/valleverde'), +(393217 , 'VIA VAI' , 'https://www.vinted.es/brand/via-vai'), +(1061678 , 'ViaMailBag' , 'https://www.vinted.es/brand/viamailbag'), +(3379203 , 'Vivaia' , 'https://www.vinted.es/brand/vivaia'), +(243248 , 'Vera Blum' , 'https://www.vinted.es/brand/vera-blum'), +(229 , 'Vera Lucci' , 'https://www.vinted.es/brand/vera-lucci'), +(47537 , 'Veracity' , 'https://www.vinted.es/brand/veracity'), +(320859 , 'Vestopazzo' , 'https://www.vinted.es/brand/vestopazzo'), +(20443 , 'VIA' , 'https://www.vinted.es/brand/via'), +(4873 , 'VIA UNO' , 'https://www.vinted.es/brand/via-uno'), +(32925 , 'VIAMAESTRA' , 'https://www.vinted.es/brand/viamaestra'), +(35303 , 'Via Donna' , 'https://www.vinted.es/brand/via-donna'), +(231452 , 'Via Roma' , 'https://www.vinted.es/brand/via-roma'), +(206854 , 'VIAGGIO' , 'https://www.vinted.es/brand/viaggio'), +(75614 , 'Vialis' , 'https://www.vinted.es/brand/vialis'), +(46347 , 'Via Giulia' , 'https://www.vinted.es/brand/via-giulia'), +(377958 , 'Villervalla' , 'https://www.vinted.es/brand/villervalla'), +(1679 , 'Vespa' , 'https://www.vinted.es/brand/vespa'), +(6274319 , 'adidas x Vespa' , 'https://www.vinted.es/brand/adidas-x-vespa'), +(271191 , 'Verpass' , 'https://www.vinted.es/brand/verpass'), +(75804 , 'Vestal' , 'https://www.vinted.es/brand/vestal'), +(404287 , 'Vesta' , 'https://www.vinted.es/brand/vesta'), +(3275615 , 'VESPUCCI BY VSP' , 'https://www.vinted.es/brand/vespucci-by-vsp'), +(4231928 , 'Vesari' , 'https://www.vinted.es/brand/vesari'), +(14907 , 'Vie ta Vie' , 'https://www.vinted.es/brand/vie-ta-vie'), +(305087 , 'Valecuatro' , 'https://www.vinted.es/brand/valecuatro'), +(6339810 , 'Versus Versace' , 'https://www.vinted.es/brand/versus-versace'), +(6032686 , 'Reebok x Victoria Beckham' , 'https://www.vinted.es/brand/reebok-x-victoria-beckham'), +(353283 , 'VIB' , 'https://www.vinted.es/brand/vib'), +(59446 , 'Vibram' , 'https://www.vinted.es/brand/vibram'), +(270132 , 'Vibes' , 'https://www.vinted.es/brand/vibes'), +(368817 , 'Vibram Fivefingers' , 'https://www.vinted.es/brand/vibram-fivefingers'), +(4233602 , 'Vibi Venezia' , 'https://www.vinted.es/brand/vibi-venezia'), +(4346842 , 'VIBAe' , 'https://www.vinted.es/brand/vibae'), +(573 , 'Vintage' , 'https://www.vinted.es/brand/vintage'), +(287496 , 'Vulli' , 'https://www.vinted.es/brand/vulli'), +(555367 , 'Vulladi' , 'https://www.vinted.es/brand/vulladi'), +(2913124 , 'Vulkit' , 'https://www.vinted.es/brand/vulkit'), +(166640 , 'Venum' , 'https://www.vinted.es/brand/venum'), +(104956 , 'Venus' , 'https://www.vinted.es/brand/venus'), +(199362 , 'Venom' , 'https://www.vinted.es/brand/venom'), +(229556 , 'V&M' , 'https://www.vinted.es/brand/vm'), +(26665 , 'Vetissimo' , 'https://www.vinted.es/brand/vetissimo'), +(332491 , 'Vents D''Ouest' , 'https://www.vinted.es/brand/vents-douest'), +(1421005 , 'Venessa nucci' , 'https://www.vinted.es/brand/venessa-nucci'), +(131286 , 'van Laack' , 'https://www.vinted.es/brand/van-laack'), +(188 , 'version sud' , 'https://www.vinted.es/brand/version-sud'), +(237250 , 'Venturini' , 'https://www.vinted.es/brand/venturini'), +(1423761 , 'Venturini eleganza' , 'https://www.vinted.es/brand/venturini-eleganza'), +(1177473 , 'Vintage Girl' , 'https://www.vinted.es/brand/vintage-girl'), +(83594 , 'VANILLE ET CHOCOLAT' , 'https://www.vinted.es/brand/vanille-et-chocolat'), +(336 , 'Version Originale' , 'https://www.vinted.es/brand/version-originale'), +(285188 , 'Vinrose' , 'https://www.vinted.es/brand/vinrose'), +(277951 , 'VIVOBAREFOOT' , 'https://www.vinted.es/brand/vivobarefoot'), +(308029 , 'Voile Blanche' , 'https://www.vinted.es/brand/voile-blanche'), +(221098 , 'Voila' , 'https://www.vinted.es/brand/voila'), +(357190 , 'Voile Bleue' , 'https://www.vinted.es/brand/voile-bleue'), +(171196 , 'Voi' , 'https://www.vinted.es/brand/voi'), +(311493 , 'Voi Jeans' , 'https://www.vinted.es/brand/voi-jeans'), +(142298 , 'Voice' , 'https://www.vinted.es/brand/voice'), +(4358847 , 'Voi Sola' , 'https://www.vinted.es/brand/voi-sola'), +(246218 , 'Voice of Europe' , 'https://www.vinted.es/brand/voice-of-europe'), +(72638 , 'Voyage' , 'https://www.vinted.es/brand/voyage'), +(333389 , 'Voyage Passion' , 'https://www.vinted.es/brand/voyage-passion'), +(974559 , 'Voyager' , 'https://www.vinted.es/brand/voyager'), +(188804 , 'Via Appia' , 'https://www.vinted.es/brand/via-appia'), +(514652 , 'Via Appia Due' , 'https://www.vinted.es/brand/via-appia-due'), +(270420 , 'Vetements' , 'https://www.vinted.es/brand/vetements'), +(321839 , 'Vêtement Z' , 'https://www.vinted.es/brand/vetement-z'), +(381620 , 'Vallauris' , 'https://www.vinted.es/brand/vallauris'), +(326465 , 'Vanguard' , 'https://www.vinted.es/brand/vanguard'), +(131162 , 'Viyella' , 'https://www.vinted.es/brand/viyella'), +(2381479 , 'VIVELLA BY BEL & BO' , 'https://www.vinted.es/brand/vivella-by-bel-bo'), +(313219 , 'Visto Bueno' , 'https://www.vinted.es/brand/visto-bueno'), +(11557 , 'Vegas' , 'https://www.vinted.es/brand/vegas'), +(321195 , 'Vegas Collection' , 'https://www.vinted.es/brand/vegas-collection'), +(281685 , 'Vega' , 'https://www.vinted.es/brand/vega'), +(440828 , 'Vegan by Happy Skin' , 'https://www.vinted.es/brand/vegan'), +(592353 , 'Velasca' , 'https://www.vinted.es/brand/velasca'), +(1432718 , 'Vega Moda' , 'https://www.vinted.es/brand/vega-moda'), +(2717248 , 'Vegan Outfitters' , 'https://www.vinted.es/brand/vegan-outfitters'), +(67396 , 'Velour' , 'https://www.vinted.es/brand/velour'), +(55039 , 'V&D' , 'https://www.vinted.es/brand/vd'), +(194068 , 'V&L' , 'https://www.vinted.es/brand/vl'), +(294559 , 'V&V' , 'https://www.vinted.es/brand/vv'), +(222442 , 'V&K' , 'https://www.vinted.es/brand/vk'), +(1575154 , 'V&V Finder' , 'https://www.vinted.es/brand/vv-finder'), +(174070 , 'Veet' , 'https://www.vinted.es/brand/veet'), +(12039 , 'Ventilo' , 'https://www.vinted.es/brand/ventilo'), +(33537 , 'Vertigo Paris' , 'https://www.vinted.es/brand/vertigo-paris'), +(501842 , 'Vanquish' , 'https://www.vinted.es/brand/vanquish'), +(4603 , 'Ventilo La Colline' , 'https://www.vinted.es/brand/ventilo-la-colline'), +(229666 , 'Van Heusen' , 'https://www.vinted.es/brand/van-heusen'), +(363915 , 'VDP' , 'https://www.vinted.es/brand/vdp'), +(621547 , 'Vdp Collection' , 'https://www.vinted.es/brand/vdp-collection'), +(1484553 , 'Vdp Club' , 'https://www.vinted.es/brand/vdp-club'), +(643284 , 'Vdp Beach' , 'https://www.vinted.es/brand/vdp-beach'), +(518830 , 'Via Delle Rose' , 'https://www.vinted.es/brand/via-delle-rose'), +(309366 , 'VdeV' , 'https://www.vinted.es/brand/vdev'), +(2627671 , 'VD Fashion' , 'https://www.vinted.es/brand/vd-fashion'), +(23709 , 'Vivaldi' , 'https://www.vinted.es/brand/vivaldi'), +(315067 , 'VIVA' , 'https://www.vinted.es/brand/viva'), +(692791 , 'Viva Couture' , 'https://www.vinted.es/brand/viva-couture'), +(222986 , 'Vivance' , 'https://www.vinted.es/brand/vivance'), +(316033 , 'VIVANCO' , 'https://www.vinted.es/brand/vivanco'), +(782822 , 'Viva La Diva' , 'https://www.vinted.es/brand/viva-la-diva'), +(297965 , 'Viva Maria' , 'https://www.vinted.es/brand/viva-maria'), +(462522 , 'Vivaki' , 'https://www.vinted.es/brand/vivaki'), +(1583221 , 'Vivanti' , 'https://www.vinted.es/brand/vivanti'), +(278131 , 'VLONE' , 'https://www.vinted.es/brand/vlone'), +(4039629 , 'Juice Wrld x Vlone' , 'https://www.vinted.es/brand/juice-wrld-x-vlone'), +(4583895 , 'Pop Smoke x Vlone' , 'https://www.vinted.es/brand/pop-smoke-x-vlone'), +(3254985 , 'Nav x Vlone' , 'https://www.vinted.es/brand/nav-x-vlone'), +(26621 , 'Vango' , 'https://www.vinted.es/brand/vango'), +(471779 , 'Van Gogh' , 'https://www.vinted.es/brand/van-gogh'), +(355399 , 'Van Gils' , 'https://www.vinted.es/brand/van-gils'), +(288393 , 'VAN-DOS' , 'https://www.vinted.es/brand/van-dos'), +(382943 , 'Van Bommel' , 'https://www.vinted.es/brand/van-bommel'), +(1452707 , 'Vanson Leathers' , 'https://www.vinted.es/brand/vanson-leathers'), +(572372 , 'Van Graaf' , 'https://www.vinted.es/brand/van-graaf'), +(2049683 , 'Van Hongo' , 'https://www.vinted.es/brand/van-hongo'), +(7180217 , 'Vans x Off-White' , 'https://www.vinted.es/brand/vans-x-off-white'), +(87244 , 'Vanity' , 'https://www.vinted.es/brand/vanity'), +(8465 , 'Vanity Fair' , 'https://www.vinted.es/brand/vanity-fair'), +(281949 , 'Vanity Planet' , 'https://www.vinted.es/brand/vanity-planet'), +(474512 , 'Vanity Fair Lingerie' , 'https://www.vinted.es/brand/vanity-fair-lingerie'), +(211116 , 'Vanita Rosa' , 'https://www.vinted.es/brand/vanita-rosa'), +(635841 , 'Velluto' , 'https://www.vinted.es/brand/velluto'), +(80748 , 'Vestiaires' , 'https://www.vinted.es/brand/vestiaires'), +(921733 , 'VESTILINEA' , 'https://www.vinted.es/brand/vestilinea'), +(317958 , 'Vet''Affaires' , 'https://www.vinted.es/brand/vetaffaires'), +(1560758 , 'Vestis' , 'https://www.vinted.es/brand/vestis'), +(310876 , 'Van Hassels' , 'https://www.vinted.es/brand/van-hassels'), +(57968 , 'Véronique Delachaux' , 'https://www.vinted.es/brand/veronique-delachaux'), +(181646 , 'Verso' , 'https://www.vinted.es/brand/verso'), +(218564 , 'Vidorreta' , 'https://www.vinted.es/brand/vidorreta'), +(530360 , 'Vinceza' , 'https://www.vinted.es/brand/vinceza'), +(22183 , 'Votre Nom' , 'https://www.vinted.es/brand/votre-nom'), +(95064 , 'Varese' , 'https://www.vinted.es/brand/varese'), +(88254 , 'Vera Wang' , 'https://www.vinted.es/brand/vera-wang'), +(1051647 , 'Vintage Supply' , 'https://www.vinted.es/brand/vintage-supply'), +(113638 , 'Vision' , 'https://www.vinted.es/brand/vision'), +(453940 , 'Visions' , 'https://www.vinted.es/brand/visions'), +(2604347 , 'Vision of Super' , 'https://www.vinted.es/brand/vision-of-super'), +(427378 , 'Visionnaire' , 'https://www.vinted.es/brand/visionnaire'), +(83936 , 'Vision Street Wear' , 'https://www.vinted.es/brand/vision-street-wear'), +(19625 , 'Vision de Rêve' , 'https://www.vinted.es/brand/vision-de-reve'), +(216408 , 'VISCONTI' , 'https://www.vinted.es/brand/visconti'), +(271398 , 'Visioptica' , 'https://www.vinted.es/brand/visioptica'), +(287707 , 'Visiomed' , 'https://www.vinted.es/brand/visiomed'), +(922390 , 'VISCONF' , 'https://www.vinted.es/brand/visconf'), +(17683 , 'Vuarnet' , 'https://www.vinted.es/brand/vuarnet'), +(389700 , 'Vertus' , 'https://www.vinted.es/brand/vertus'), +(2555085 , 'Vestus' , 'https://www.vinted.es/brand/vestus'), +(423415 , 'Viggami' , 'https://www.vinted.es/brand/viggami'), +(313492 , 'van Dalen' , 'https://www.vinted.es/brand/van-dalen'), +(261758 , 'Van Dal' , 'https://www.vinted.es/brand/van-dal'), +(399963 , 'Vanda Catucci' , 'https://www.vinted.es/brand/vanda-catucci'), +(302631 , 'Van Palma' , 'https://www.vinted.es/brand/van-palma'), +(4769229 , 'Vanda Jacintho' , 'https://www.vinted.es/brand/vanda-jacintho'), +(22063 , 'Viktor & Rolf' , 'https://www.vinted.es/brand/viktor-rolf'), +(256972 , 'Victor&Rolf' , 'https://www.vinted.es/brand/victorrolf'), +(195168 , 'Vive Maria' , 'https://www.vinted.es/brand/vive-maria'), +(179442 , 'Vince' , 'https://www.vinted.es/brand/vince'), +(549520 , 'Vincent' , 'https://www.vinted.es/brand/vincent'), +(5732170 , 'Vincent Faudemer' , 'https://www.vinted.es/brand/vincent-faudemer'), +(379818 , 'Vincenzo Boretti' , 'https://www.vinted.es/brand/vincenzo-boretti'), +(2193643 , 'Vincent Vega' , 'https://www.vinted.es/brand/vincent-vega'), +(163060 , 'Veneno en la Piel' , 'https://www.vinted.es/brand/veneno-en-la-piel'), +(481073 , 'Voggo' , 'https://www.vinted.es/brand/voggo'), +(267498 , 'Via Roma 15' , 'https://www.vinted.es/brand/via-roma-15'), +(1141653 , 'VICBEE' , 'https://www.vinted.es/brand/vicbee'), +(24851 , 'Vanessa' , 'https://www.vinted.es/brand/vanessa'), +(18397 , 'Vanessa''s secrets' , 'https://www.vinted.es/brand/vanessas-secrets'), +(685767 , 'Vanessa Scott' , 'https://www.vinted.es/brand/vanessa-scott'), +(325592 , 'Vanessa Seward' , 'https://www.vinted.es/brand/vanessa-seward'), +(2386808 , 'Vanessa Alexandra' , 'https://www.vinted.es/brand/vanessa-alexandra'), +(284163 , 'Vanessa Mooney' , 'https://www.vinted.es/brand/vanessa-mooney'), +(3445401 , 'Vanessa Cocchiaro' , 'https://www.vinted.es/brand/vanessa-cocchiaro'), +(1819601 , 'VANESSA MITRANI' , 'https://www.vinted.es/brand/vanessa-mitrani'), +(1019786 , 'Visi' , 'https://www.vinted.es/brand/visi'), +(56060 , 'Ventiuno' , 'https://www.vinted.es/brand/ventiuno'), +(163620 , 'Venti' , 'https://www.vinted.es/brand/venti'), +(529870 , 'Venti 12' , 'https://www.vinted.es/brand/venti-12'), +(35431 , 'Ventcouvert' , 'https://www.vinted.es/brand/ventcouvert'), +(269108 , 'Valverde del Camino' , 'https://www.vinted.es/brand/valverde-del-camino'), +(13845 , 'Vue Sur Mer' , 'https://www.vinted.es/brand/vue-sur-mer'), +(185754 , 'Verona' , 'https://www.vinted.es/brand/verona'), +(138010 , 'Veronica' , 'https://www.vinted.es/brand/veronica'), +(54133 , 'Veronique Branquinho' , 'https://www.vinted.es/brand/veronique-branquinho'), +(306908 , 'Vernal' , 'https://www.vinted.es/brand/vernal'), +(524820 , 'Veronica Beard' , 'https://www.vinted.es/brand/veronica-beard'), +(112238 , 'Viventy' , 'https://www.vinted.es/brand/viventy'), +(72364 , 'Vienty' , 'https://www.vinted.es/brand/vienty'), +(19115 , 'Vicomte A.' , 'https://www.vinted.es/brand/vicomte-a'), +(124162 , 'Virgos lounge' , 'https://www.vinted.es/brand/virgos-lounge'), +(364990 , 'Velilla' , 'https://www.vinted.es/brand/velilla'), +(19643 , 'Vimoda' , 'https://www.vinted.es/brand/vimoda'), +(365146 , 'Vidrio' , 'https://www.vinted.es/brand/vidrio'), +(420874 , 'via cortesa' , 'https://www.vinted.es/brand/via-cortesa'), +(199832 , 'Vetistyle' , 'https://www.vinted.es/brand/vetistyle'), +(329133 , 'Vetistyle Paris' , 'https://www.vinted.es/brand/vetistyle-paris'), +(223470 , 'Valento' , 'https://www.vinted.es/brand/valento'), +(491068 , 'VALENTI' , 'https://www.vinted.es/brand/valenti'), +(423517 , 'VISAGE' , 'https://www.vinted.es/brand/visage'), +(556406 , 'Vela' , 'https://www.vinted.es/brand/vela'), +(181156 , 'Vaiana' , 'https://www.vinted.es/brand/vaiana'), +(177526 , 'VSL' , 'https://www.vinted.es/brand/vsl'), +(174574 , 'VSKA' , 'https://www.vinted.es/brand/vska'), +(88736 , 'VSCT' , 'https://www.vinted.es/brand/vsct'), +(373401 , 'Vsp' , 'https://www.vinted.es/brand/vsp'), +(863324 , 'Vertize Gala' , 'https://www.vinted.es/brand/vertize-gala'), +(5947443 , 'Vertigo' , 'https://www.vinted.es/brand/vertigo'), +(13365 , 'Vera Bradley' , 'https://www.vinted.es/brand/vera-bradley'), +(1797986 , 'Vista Alegre' , 'https://www.vinted.es/brand/vista-alegre'), +(217668 , 'Vivien Caron' , 'https://www.vinted.es/brand/vivien-caron'), +(276131 , 'Viola' , 'https://www.vinted.es/brand/viola'), +(480416 , 'Violanti' , 'https://www.vinted.es/brand/violanti'), +(3261201 , 'Viola Ricci' , 'https://www.vinted.es/brand/viola-ricci'), +(510555 , 'Viola Borghi' , 'https://www.vinted.es/brand/viola-borghi'), +(2401136 , 'Violante Nessi' , 'https://www.vinted.es/brand/violante-nessi'), +(3911605 , 'Viola Piekut' , 'https://www.vinted.es/brand/viola-piekut'), +(460958 , 'Vivienne' , 'https://www.vinted.es/brand/vivienne'), +(161526 , 'Vivienne Tam' , 'https://www.vinted.es/brand/vivienne-tam'), +(271488 , 'Vivien Lee' , 'https://www.vinted.es/brand/vivien-lee'), +(960443 , 'Vintage Bazaar' , 'https://www.vinted.es/brand/vintage-bazaar'), +(3435870 , 'Vicinity' , 'https://www.vinted.es/brand/vicinity'), +(8484140 , 'Lost Boys x Vicinity' , 'https://www.vinted.es/brand/lost-boys-x-vicinity'), +(2635790 , 'Vicini Tapeet' , 'https://www.vinted.es/brand/vicini-tapeet'), +(218268 , 'Voulez Vous' , 'https://www.vinted.es/brand/voulez-vous'), +(18279 , 'virginie castaway' , 'https://www.vinted.es/brand/virginie-castaway'), +(35305 , 'Virgin' , 'https://www.vinted.es/brand/virgin'), +(265938 , 'Virginie & Moi' , 'https://www.vinted.es/brand/virginie-moi'), +(22419 , 'Virginia Hill' , 'https://www.vinted.es/brand/virginia-hill'), +(245792 , 'Virginie' , 'https://www.vinted.es/brand/virginie'), +(345985 , 'Virginia Blu''' , 'https://www.vinted.es/brand/virginia-blu'), +(437400 , 'Virginia' , 'https://www.vinted.es/brand/virginia'), +(926534 , 'Virginia Bizzi' , 'https://www.vinted.es/brand/virginia-bizzi'), +(253856 , 'VAS' , 'https://www.vinted.es/brand/vas'), +(227710 , 'Vasa' , 'https://www.vinted.es/brand/vasa'), +(290061 , 'VASSALLI' , 'https://www.vinted.es/brand/vassalli'), +(215216 , 'Vassarette' , 'https://www.vinted.es/brand/vassarette'), +(308158 , 'VASCO' , 'https://www.vinted.es/brand/vasco'), +(192002 , 'Vaseline' , 'https://www.vinted.es/brand/vaseline'), +(541574 , 'Vasque' , 'https://www.vinted.es/brand/vasque'), +(3921753 , 'Vasic' , 'https://www.vinted.es/brand/vasic'), +(250778 , 'Vanucci' , 'https://www.vinted.es/brand/vanucci'), +(212940 , 'Visconti & Du Réau' , 'https://www.vinted.es/brand/visconti-du-reau'), +(350866 , 'Vitivic' , 'https://www.vinted.es/brand/vitivic'), +(205194 , 'Vivid' , 'https://www.vinted.es/brand/vivid'), +(2733514 , 'Vivi Diva' , 'https://www.vinted.es/brand/vivi-diva'), +(127018 , 'Vivian' , 'https://www.vinted.es/brand/vivian'), +(2095 , 'ViVi RiCH' , 'https://www.vinted.es/brand/vivi-rich'), +(203104 , 'Vivi' , 'https://www.vinted.es/brand/vivi'), +(90146 , 'Viviane' , 'https://www.vinted.es/brand/viviane'), +(15577 , 'VIVI fashion' , 'https://www.vinted.es/brand/vivi-fashion'), +(504810 , 'Vivis' , 'https://www.vinted.es/brand/vivis'), +(174502 , 'Van Cleef & Arpels' , 'https://www.vinted.es/brand/van-cleef-arpels'), +(1270426 , 'Van Rysel' , 'https://www.vinted.es/brand/van-rysel'), +(88100 , 'VICINI' , 'https://www.vinted.es/brand/vicini'), +(367941 , 'Viper' , 'https://www.vinted.es/brand/viper'), +(356988 , 'Vipera' , 'https://www.vinted.es/brand/vipera'), +(1596575 , 'Vivere' , 'https://www.vinted.es/brand/vivere'), +(3646679 , 'VIERVIER' , 'https://www.vinted.es/brand/viervier'), +(4858682 , 'Th x Vier Antwerp' , 'https://www.vinted.es/brand/th-x-vier-antwerp'), +(7875261 , 'Vice Reversa' , 'https://www.vinted.es/brand/vice-reversa'), +(3329771 , 'Vivero' , 'https://www.vinted.es/brand/vivero'), +(7363517 , 'Viera Brunovská' , 'https://www.vinted.es/brand/viera-brunovska'), +(7441 , 'Warehouse' , 'https://www.vinted.es/brand/warehouse'), +(13813 , 'Wed''ze' , 'https://www.vinted.es/brand/wedze'), +(5817544 , 'WE' , 'https://www.vinted.es/brand/we'), +(29661 , 'Well' , 'https://www.vinted.es/brand/well'), +(6739 , 'Weekend' , 'https://www.vinted.es/brand/weekend'), +(196074 , 'Westbury' , 'https://www.vinted.es/brand/westbury'), +(119700 , 'Weinberg Paris' , 'https://www.vinted.es/brand/weinberg-paris'), +(45157 , 'WE DO' , 'https://www.vinted.es/brand/we-do'), +(838616 , 'Wednesday‘s Girl' , 'https://www.vinted.es/brand/wednesdays-girl'), +(29701 , 'Wallis' , 'https://www.vinted.es/brand/wallis'), +(693618 , 'Wallis Petite' , 'https://www.vinted.es/brand/wallis-petite'), +(6673703 , 'Wallis Tall' , 'https://www.vinted.es/brand/wallis-tall'), +(6017041 , 'Wallis wide fit' , 'https://www.vinted.es/brand/wallis-wide-fit'), +(288622 , 'Walls' , 'https://www.vinted.es/brand/walls'), +(259 , 'Wrangler' , 'https://www.vinted.es/brand/wrangler'), +(48575 , 'Weekday' , 'https://www.vinted.es/brand/weekday'), +(276744 , 'MTWTFSS Weekday' , 'https://www.vinted.es/brand/mtwtfss-weekday'), +(287566 , 'Wii' , 'https://www.vinted.es/brand/wii'), +(307669 , 'Wii U' , 'https://www.vinted.es/brand/wiiu'), +(5251657 , 'WIINO' , 'https://www.vinted.es/brand/wiino'), +(292408 , 'Wibra' , 'https://www.vinted.es/brand/wibra'), +(219842 , 'Winx' , 'https://www.vinted.es/brand/winx'), +(22345 , 'Wilson' , 'https://www.vinted.es/brand/wilson'), +(306951 , 'Winnie Pooh' , 'https://www.vinted.es/brand/winnie-pooh'), +(878994 , 'Wizards of the Coast' , 'https://www.vinted.es/brand/wizards-of-the-coast'), +(322545 , 'Winnie The Pooh' , 'https://www.vinted.es/brand/winnie-the-pooh'), +(205576 , 'wiplala' , 'https://www.vinted.es/brand/wiplala'), +(56404 , 'White Stuff' , 'https://www.vinted.es/brand/white-stuff'), +(15041 , 'Women''secret' , 'https://www.vinted.es/brand/womensecret'), +(7071 , 'WOMAN' , 'https://www.vinted.es/brand/woman'), +(5868847 , 'Women Only' , 'https://www.vinted.es/brand/women-only'), +(173512 , 'Woman.Code' , 'https://www.vinted.es/brand/womancode'), +(8254634 , 'WOMAN by Gémo' , 'https://www.vinted.es/brand/woman-by-gemo'), +(82176 , 'Woman Collection' , 'https://www.vinted.es/brand/woman-collection'), +(433776 , 'WOMAN & SOUL' , 'https://www.vinted.es/brand/woman-soul'), +(1179216 , 'Woman''s Fashion' , 'https://www.vinted.es/brand/womans-fashion'), +(396726 , 'Woman by Tchibo' , 'https://www.vinted.es/brand/woman-by-tchibo'), +(2596407 , 'Womanary' , 'https://www.vinted.es/brand/womanary'), +(173188 , 'Woolrich' , 'https://www.vinted.es/brand/woolrich'), +(7098278 , 'Supreme x Woolrich' , 'https://www.vinted.es/brand/supreme-x-woolrich'), +(1431 , 'Whistles' , 'https://www.vinted.es/brand/whistles'), +(670350 , 'Whistler' , 'https://www.vinted.es/brand/whistler'), +(335899 , 'Woody' , 'https://www.vinted.es/brand/woody'), +(1307621 , 'Woodyland' , 'https://www.vinted.es/brand/woodyland'), +(270185 , 'Wood Wood' , 'https://www.vinted.es/brand/wood-wood'), +(472479 , 'Wooden' , 'https://www.vinted.es/brand/wooden'), +(419681 , 'Wood''N Play' , 'https://www.vinted.es/brand/woodn-play'), +(945408 , 'Wooden Buttons' , 'https://www.vinted.es/brand/wooden-buttons'), +(351459 , 'Woodsun' , 'https://www.vinted.es/brand/woodsun'), +(6940646 , 'Wood' , 'https://www.vinted.es/brand/wood'), +(474319 , 'Woodland' , 'https://www.vinted.es/brand/woodland'), +(167338 , 'WOODSTOCK' , 'https://www.vinted.es/brand/woodstock'), +(170010 , 'Wellensteyn' , 'https://www.vinted.es/brand/wellensteyn'), +(376848 , 'Wedding' , 'https://www.vinted.es/brand/wedding'), +(1620807 , 'Weddington Way' , 'https://www.vinted.es/brand/weddington-way'), +(425341 , 'Wedding Collection' , 'https://www.vinted.es/brand/wedding-collection'), +(153 , 'Walk And Talk' , 'https://www.vinted.es/brand/walk-and-talk'), +(108410 , 'W.' , 'https://www.vinted.es/brand/w'), +(119290 , 'W.S Shoes' , 'https://www.vinted.es/brand/ws-shoes'), +(67424 , 'W.O.B.' , 'https://www.vinted.es/brand/wob'), +(231576 , 'WD.NY' , 'https://www.vinted.es/brand/wdny'), +(372479 , 'W. KRUK' , 'https://www.vinted.es/brand/w-kruk'), +(2586911 , 'W. Potocki' , 'https://www.vinted.es/brand/w-potocki'), +(9049 , 'Wanabee' , 'https://www.vinted.es/brand/wanabee'), +(38309 , 'Wannabee' , 'https://www.vinted.es/brand/wannabee'), +(227204 , 'Workout' , 'https://www.vinted.es/brand/workout'), +(1302024 , 'Wassyl' , 'https://www.vinted.es/brand/wassyl'), +(2858162 , 'Wassyl' , 'https://www.vinted.es/brand/wasyl'), +(113184 , 'Wojas' , 'https://www.vinted.es/brand/wojas'), +(167298 , 'WWE' , 'https://www.vinted.es/brand/wwe'), +(6034632 , 'WWF' , 'https://www.vinted.es/brand/wwf'), +(3316841 , 'World Wide Fund for Nature' , 'https://www.vinted.es/brand/world-wide-fund-for-nature'), +(399767 , 'WWW' , 'https://www.vinted.es/brand/www'), +(5432295 , 'WWAKE' , 'https://www.vinted.es/brand/wwake'), +(471801 , 'Warhammer' , 'https://www.vinted.es/brand/warhammer'), +(88270 , 'Windsor Smith' , 'https://www.vinted.es/brand/windsor-smith'), +(349558 , 'Winter' , 'https://www.vinted.es/brand/winter'), +(113084 , 'Winkies' , 'https://www.vinted.es/brand/winkies'), +(22669 , 'Windsor' , 'https://www.vinted.es/brand/windsor'), +(103488 , 'Wins Nautic' , 'https://www.vinted.es/brand/wins-nautic'), +(1192465 , 'Winterling' , 'https://www.vinted.es/brand/winterling'), +(236994 , 'Winchester' , 'https://www.vinted.es/brand/winchester'), +(182200 , 'Wilsons Leather' , 'https://www.vinted.es/brand/wilsons-leather'), +(395605 , 'Wilton' , 'https://www.vinted.es/brand/wilton'), +(5609582 , 'Wilton Armetale' , 'https://www.vinted.es/brand/wilton-armetale'), +(37471 , 'Women' , 'https://www.vinted.es/brand/women'), +(278563 , 'WOMEN''S BEST' , 'https://www.vinted.es/brand/womens-best'), +(132828 , 'WOMEN Collection' , 'https://www.vinted.es/brand/women-collection'), +(72064 , 'Women''s Selection' , 'https://www.vinted.es/brand/womens-selection'), +(215852 , 'Women''s Selection' , 'https://www.vinted.es/brand/womens'), +(24609 , 'Warner Bros.' , 'https://www.vinted.es/brand/warner-bros'), +(241466 , 'Walkx' , 'https://www.vinted.es/brand/walkx'), +(189928 , 'Walking' , 'https://www.vinted.es/brand/walking'), +(328682 , 'Walking Dead' , 'https://www.vinted.es/brand/walking-dead'), +(415675 , 'Walkey' , 'https://www.vinted.es/brand/walkey'), +(312785 , 'Walker' , 'https://www.vinted.es/brand/walker'), +(343140 , 'Walking Mum' , 'https://www.vinted.es/brand/walking-mum'), +(93990 , 'Walk' , 'https://www.vinted.es/brand/walk'), +(334121 , 'Walk in the Park' , 'https://www.vinted.es/brand/walk-in-the-park'), +(305994 , 'The Walking Dead' , 'https://www.vinted.es/brand/the-walking-dead'), +(64696 , 'White' , 'https://www.vinted.es/brand/white'), +(304079 , 'White Sun' , 'https://www.vinted.es/brand/white-sun'), +(1668983 , 'White Icy' , 'https://www.vinted.es/brand/white-icy'), +(871369 , 'White&One' , 'https://www.vinted.es/brand/whiteone'), +(208524 , 'White House Black Market' , 'https://www.vinted.es/brand/white-house-black-market'), +(26467 , 'White Label' , 'https://www.vinted.es/brand/white-label'), +(692310 , 'White Rose' , 'https://www.vinted.es/brand/white-rose'), +(411147 , 'White Goose' , 'https://www.vinted.es/brand/white-goose'), +(1791069 , 'White Sand 88' , 'https://www.vinted.es/brand/white-sand-88'), +(554852 , 'Wittchen' , 'https://www.vinted.es/brand/wittchen'), +(158434 , 'Weird Fish' , 'https://www.vinted.es/brand/weird-fish'), +(2449 , 'Why not?' , 'https://www.vinted.es/brand/why-not'), +(2056595 , 'WHY NOT BRAND' , 'https://www.vinted.es/brand/why-not-brand'), +(773905 , 'Wólczanka' , 'https://www.vinted.es/brand/wolczanka'), +(438496 , 'Wójcik' , 'https://www.vinted.es/brand/wojcik'), +(26301 , 'WEILL' , 'https://www.vinted.es/brand/weill'), +(363758 , 'Welly' , 'https://www.vinted.es/brand/welly'), +(120358 , 'Wella' , 'https://www.vinted.es/brand/wella'), +(295119 , 'Wellspring' , 'https://www.vinted.es/brand/wellspring'), +(335449 , 'Wells' , 'https://www.vinted.es/brand/wells'), +(1004047 , 'Weili Zheng' , 'https://www.vinted.es/brand/weili-zheng'), +(372469 , 'Wellness' , 'https://www.vinted.es/brand/wellness'), +(653504 , 'Welldone' , 'https://www.vinted.es/brand/welldone'), +(394 , 'WeSC' , 'https://www.vinted.es/brand/wesc'), +(322702 , 'Wesco' , 'https://www.vinted.es/brand/wesco'), +(552900 , 'West Scout' , 'https://www.vinted.es/brand/west-scout'), +(156000 , 'West' , 'https://www.vinted.es/brand/west'), +(86178 , 'Wesley' , 'https://www.vinted.es/brand/wesley'), +(220210 , 'West Valley' , 'https://www.vinted.es/brand/west-valley'), +(10587 , 'West coast' , 'https://www.vinted.es/brand/west-coast'), +(316691 , 'Western' , 'https://www.vinted.es/brand/western'), +(975513 , 'Westwing' , 'https://www.vinted.es/brand/westwing'), +(1493676 , 'WinterKinder' , 'https://www.vinted.es/brand/winterkinder'), +(890966 , 'WINNER COLLEGE' , 'https://www.vinted.es/brand/winner-college'), +(146100 , 'Winner' , 'https://www.vinted.es/brand/winner'), +(1956499 , 'Winser London' , 'https://www.vinted.es/brand/winser-london'), +(3563 , 'Wonders' , 'https://www.vinted.es/brand/wonders'), +(14227 , 'Wonder Woman' , 'https://www.vinted.es/brand/wonder-woman'), +(77084 , 'Wonderbra' , 'https://www.vinted.es/brand/wonderbra'), +(318100 , 'Wonder' , 'https://www.vinted.es/brand/wonder'), +(287641 , 'Wonder Kids' , 'https://www.vinted.es/brand/wonder-kids'), +(22713 , 'Wonder Me' , 'https://www.vinted.es/brand/wonder-me'), +(584027 , 'Wonder Nation' , 'https://www.vinted.es/brand/wonder-nation'), +(300918 , 'Wonder Maman' , 'https://www.vinted.es/brand/wonder-maman'), +(3122699 , 'LR Wonder Company' , 'https://www.vinted.es/brand/lr-wonder-company'), +(458606 , 'Wonderworld' , 'https://www.vinted.es/brand/wonderworld'), +(267406 , 'Wiya' , 'https://www.vinted.es/brand/wiya'), +(11651 , 'Wilady' , 'https://www.vinted.es/brand/wilady'), +(787052 , 'Wizarding world' , 'https://www.vinted.es/brand/wizarding-world'), +(298069 , 'Wizard' , 'https://www.vinted.es/brand/wizard'), +(95284 , 'WalG' , 'https://www.vinted.es/brand/walg'), +(7749628 , 'WalG Petite' , 'https://www.vinted.es/brand/walg-petite'), +(638522 , 'walg7' , 'https://www.vinted.es/brand/walg7'), +(7749629 , 'WalG Tall' , 'https://www.vinted.es/brand/walg-tall'), +(40149 , 'Walter Steiger' , 'https://www.vinted.es/brand/walter-steiger'), +(19323 , 'Wolford' , 'https://www.vinted.es/brand/wolford'), +(231812 , 'Week end à Paris' , 'https://www.vinted.es/brand/week-end-a-paris'), +(305609 , 'Weekend Offender' , 'https://www.vinted.es/brand/weekend-offender'), +(613887 , 'Weekend by Pedro Miralles' , 'https://www.vinted.es/brand/weekend-by-pedro-miralles'), +(2447171 , 'weekend house kids' , 'https://www.vinted.es/brand/weekend-house-kids'), +(435799 , 'The Weeknd' , 'https://www.vinted.es/brand/the-weeknd'), +(7432260 , 'Puma × The Weeknd' , 'https://www.vinted.es/brand/puma-x-the-weeknd'), +(1375886 , 'WELLYOU.DE' , 'https://www.vinted.es/brand/wellyoude'), +(3323341 , 'Wellemöbel' , 'https://www.vinted.es/brand/wellemobel'), +(325610 , 'Wituka' , 'https://www.vinted.es/brand/wituka'), +(521497 , 'Winsor & Newton' , 'https://www.vinted.es/brand/winsor-newton'), +(1378485 , 'Wind Sportswear' , 'https://www.vinted.es/brand/wind-sportswear'), +(410352 , 'WHEAT' , 'https://www.vinted.es/brand/wheat'), +(5251636 , 'Wheat & Rose' , 'https://www.vinted.es/brand/wheat-rose'), +(117742 , 'What For' , 'https://www.vinted.es/brand/what-for'), +(561848 , 'What''s Today?' , 'https://www.vinted.es/brand/whats-today'), +(478827 , 'Whatever' , 'https://www.vinted.es/brand/whatever'), +(310483 , 'Whatlees' , 'https://www.vinted.es/brand/whatlees'), +(304076 , 'What Katie Did' , 'https://www.vinted.es/brand/what-katie-did'), +(2457592 , 'What do you meme' , 'https://www.vinted.es/brand/what-do-you-meme'), +(11440599 , 'whatshoes' , 'https://www.vinted.es/brand/whatshoes'), +(369158 , 'Wawa' , 'https://www.vinted.es/brand/wawa'), +(344965 , 'WAAM' , 'https://www.vinted.es/brand/waam'), +(1195780 , 'Wawel' , 'https://www.vinted.es/brand/wawel'), +(517808 , 'Wakamono' , 'https://www.vinted.es/brand/wakamono'), +(3191869 , 'wawwa' , 'https://www.vinted.es/brand/wawwa'), +(5272970 , 'Wasalaa' , 'https://www.vinted.es/brand/wasalaa'), +(486161 , 'WRSTBHVR' , 'https://www.vinted.es/brand/wrstbhvr'), +(118826 , 'Wow To Go' , 'https://www.vinted.es/brand/wow-to-go'), +(200158 , 'WOW' , 'https://www.vinted.es/brand/wow'), +(291351 , 'WowWee' , 'https://www.vinted.es/brand/wowwee'), +(152034 , 'Wow Couture' , 'https://www.vinted.es/brand/wow-couture'), +(184532 , 'Wowo' , 'https://www.vinted.es/brand/wowo'), +(31879 , 'W52' , 'https://www.vinted.es/brand/w52'), +(1908162 , 'Wunderbärchen' , 'https://www.vinted.es/brand/wunderbarchen'), +(294803 , 'WiLD' , 'https://www.vinted.es/brand/wild'), +(322696 , 'Wild Pony' , 'https://www.vinted.es/brand/wild-pony'), +(399127 , 'WILD REPUBLIC' , 'https://www.vinted.es/brand/wild-republic'), +(388934 , 'Wild Horse' , 'https://www.vinted.es/brand/wild-horse'), +(446389 , 'Wildebeast' , 'https://www.vinted.es/brand/wildebeast'), +(1241212 , 'Wild Fable' , 'https://www.vinted.es/brand/wild-fable'), +(281968 , 'Wild Flower' , 'https://www.vinted.es/brand/wild-flower'), +(31949 , 'Wildfox' , 'https://www.vinted.es/brand/wildfox'), +(368712 , 'Wild Side' , 'https://www.vinted.es/brand/wild-side'), +(143154 , 'Wild Rose' , 'https://www.vinted.es/brand/wild-rose'), +(743884 , 'Warm' , 'https://www.vinted.es/brand/warm'), +(383742 , 'Warmies' , 'https://www.vinted.es/brand/warmies'), +(756289 , 'Warmbat' , 'https://www.vinted.es/brand/warmbat'), +(754383 , 'Warmpeace' , 'https://www.vinted.es/brand/warmpeace'), +(3313504 , 'Warmia' , 'https://www.vinted.es/brand/warmia'), +(347402 , 'Wampum' , 'https://www.vinted.es/brand/wampum'), +(284088 , 'Wam Denim' , 'https://www.vinted.es/brand/wam-denim'), +(129094 , 'walbusch' , 'https://www.vinted.es/brand/walbusch'), +(254052 , 'Watson''s' , 'https://www.vinted.es/brand/watsons'), +(362876 , 'WOLF' , 'https://www.vinted.es/brand/wolf'), +(217032 , 'Wolf & Whistle' , 'https://www.vinted.es/brand/wolf-whistle'), +(624349 , 'Wolf & Rita' , 'https://www.vinted.es/brand/wolf-rita'), +(4624212 , 'Wolf & Badger' , 'https://www.vinted.es/brand/wolf-badger'), +(3121729 , 'Wolfgang Joop' , 'https://www.vinted.es/brand/wolfgang-joop'), +(364651 , 'Wolky' , 'https://www.vinted.es/brand/wolky'), +(318094 , 'Woeffies' , 'https://www.vinted.es/brand/woeffies'), +(1970332 , 'Wolm' , 'https://www.vinted.es/brand/wolm'), +(179700 , 'Wolsey' , 'https://www.vinted.es/brand/wolsey'), +(1503630 , 'Wildling' , 'https://www.vinted.es/brand/wildling'), +(3326804 , 'Wildlinge' , 'https://www.vinted.es/brand/wildlinge'), +(6937 , 'Wrung' , 'https://www.vinted.es/brand/wrung'), +(5251634 , 'Wrong Weather' , 'https://www.vinted.es/brand/wrong-weather'), +(126012 , 'Witch' , 'https://www.vinted.es/brand/witch'), +(115988 , 'witchery' , 'https://www.vinted.es/brand/witchery'), +(88726 , 'Winch' , 'https://www.vinted.es/brand/winch'), +(320817 , 'With Love' , 'https://www.vinted.es/brand/with-love'), +(277757 , 'Withings' , 'https://www.vinted.es/brand/withings'), +(965804 , 'With Jéan' , 'https://www.vinted.es/brand/with-jean'), +(7389494 , 'Withing & Davis' , 'https://www.vinted.es/brand/withing-davis'), +(79210 , 'Wendy Trendy' , 'https://www.vinted.es/brand/wendy-trendy'), +(579429 , 'Wooden Toys' , 'https://www.vinted.es/brand/wooden-toys'), +(208218 , 'wool and cashmere' , 'https://www.vinted.es/brand/wool-and-cashmere'), +(480043 , 'WODEN' , 'https://www.vinted.es/brand/woden'), +(481213 , 'Wool & Co' , 'https://www.vinted.es/brand/wool-co'), +(43265 , 'Woomen' , 'https://www.vinted.es/brand/woomen'), +(737456 , 'wool&' , 'https://www.vinted.es/brand/wooland'), +(2340780 , 'Wool&Prince' , 'https://www.vinted.es/brand/wool-prince'), +(978381 , 'WoJtylko' , 'https://www.vinted.es/brand/wojtylko'), +(321920 , 'WINDSMOOR' , 'https://www.vinted.es/brand/windsmoor'), +(219902 , 'wrap' , 'https://www.vinted.es/brand/wrap'), +(155758 , 'Wrapper' , 'https://www.vinted.es/brand/wrapper'), +(1295000 , 'Wrap London' , 'https://www.vinted.es/brand/wrap-london'), +(4463203 , 'WRÅD' , 'https://www.vinted.es/brand/wrad'), +(6267238 , 'Champion x Wood Wood' , 'https://www.vinted.es/brand/champion-x-woodwood'), +(484787 , 'Wedgwood' , 'https://www.vinted.es/brand/wedgwood'), +(2000477 , 'Wedgewood' , 'https://www.vinted.es/brand/wedgewood'), +(192192 , 'Wasted Paris' , 'https://www.vinted.es/brand/wasted-paris'), +(227814 , 'WORKWEAR' , 'https://www.vinted.es/brand/workwear'), +(111670 , 'Work' , 'https://www.vinted.es/brand/work'), +(377948 , 'Workteam' , 'https://www.vinted.es/brand/workteam'), +(105934 , 'Workshop' , 'https://www.vinted.es/brand/workshop'), +(1033544 , 'Working Overtime' , 'https://www.vinted.es/brand/working-overtime'), +(356810 , 'Worker' , 'https://www.vinted.es/brand/worker'), +(233582 , 'World Fashion' , 'https://www.vinted.es/brand/world-fashion'), +(963544 , 'Woezel & Pip' , 'https://www.vinted.es/brand/woezel-pip'), +(24383 , 'Woolmark' , 'https://www.vinted.es/brand/woolmark'), +(167478 , 'Woolworth' , 'https://www.vinted.es/brand/woolworth'), +(148532 , 'Woolworths' , 'https://www.vinted.es/brand/woolworths'), +(339431 , 'White Fox Boutique' , 'https://www.vinted.es/brand/white-fox-boutique'), +(174462 , 'Weleda' , 'https://www.vinted.es/brand/weleda'), +(64166 , 'Wemoto' , 'https://www.vinted.es/brand/wemoto'), +(174150 , 'W7' , 'https://www.vinted.es/brand/w7'), +(63856 , 'Who''s That Girl' , 'https://www.vinted.es/brand/whos-that-girl'), +(436446 , 'Wedoble' , 'https://www.vinted.es/brand/wedoble'), +(42229 , 'Weide' , 'https://www.vinted.es/brand/weide'), +(303392 , 'WEI WEI' , 'https://www.vinted.es/brand/wei-wei'), +(366396 , 'Weise' , 'https://www.vinted.es/brand/weise'), +(1493277 , 'Werder Bremen' , 'https://www.vinted.es/brand/werder-bremen'), +(448335 , 'Wasgij' , 'https://www.vinted.es/brand/wasgij'), +(416292 , 'Warren James' , 'https://www.vinted.es/brand/warren-james'), +(4696237 , 'Waldläufer' , 'https://www.vinted.es/brand/waldlaufer'), +(3388738 , 'Media Rodzina' , 'https://www.vinted.es/brand/media-rodzina'), +(5973708 , 'Wydawnictwo Olesiejuk' , 'https://www.vinted.es/brand/wydawnictwo-olesiejuk'), +(7009695 , 'Zakamarki' , 'https://www.vinted.es/brand/zakamarki'), +(8765436 , 'Wydawnictwo Albatros' , 'https://www.vinted.es/brand/wydawnictwo-albatros'), +(7009696 , 'Wydawnictwo Dwie Siostry' , 'https://www.vinted.es/brand/wydawnictwo-dwie-siostry'), +(7009704 , 'Wydawnictwo Ovo' , 'https://www.vinted.es/brand/wydawnictwo-ovo'), +(7985930 , 'Wydawnictwo Wilga' , 'https://www.vinted.es/brand/wydawnictwo-wilga'), +(7620521 , 'Wsip' , 'https://www.vinted.es/brand/wsip'), +(274150 , 'Warrior' , 'https://www.vinted.es/brand/warrior'), +(420205 , 'Warrior Clothing' , 'https://www.vinted.es/brand/warrior-clothing'), +(898405 , 'Warrior Shanghai' , 'https://www.vinted.es/brand/warrior-shanghai'), +(552975 , 'Wilko' , 'https://www.vinted.es/brand/wilko'), +(181908 , 'Wiko' , 'https://www.vinted.es/brand/wiko'), +(300620 , 'Wilvorst' , 'https://www.vinted.es/brand/wilvorst'), +(198026 , 'Willow' , 'https://www.vinted.es/brand/willow'), +(182754 , 'Wilkinson' , 'https://www.vinted.es/brand/wilkinson'), +(680047 , 'Wilkinson Sword' , 'https://www.vinted.es/brand/wilkinson-sword'), +(620036 , 'Willow & Clay' , 'https://www.vinted.es/brand/willow-clay'), +(1194516 , 'Wehkamp' , 'https://www.vinted.es/brand/wehkamp'), +(20209 , 'Wati B' , 'https://www.vinted.es/brand/wati-b'), +(180686 , 'Who*s Who' , 'https://www.vinted.es/brand/whos-who'), +(268466 , 'Walk In Paris' , 'https://www.vinted.es/brand/walk-in-paris'), +(324193 , 'Want That Trend' , 'https://www.vinted.es/brand/want-that-trend'), +(329137 , 'WENGER' , 'https://www.vinted.es/brand/wenger'), +(56986 , 'Worthington' , 'https://www.vinted.es/brand/worthington'), +(1499335 , 'WED2B' , 'https://www.vinted.es/brand/wed2b'), +(10511 , 'Wet Seal' , 'https://www.vinted.es/brand/wet-seal'), +(325410 , 'Weiss' , 'https://www.vinted.es/brand/weiss'), +(276194 , 'Weissman' , 'https://www.vinted.es/brand/weissman'), +(3373920 , 'Weißt Du eigentlich wie lieb ich Dich hab?' , 'https://www.vinted.es/brand/weisst-du-eigentlich-wie-lieb-ich-dich-hab'), +(301343 , 'Würth' , 'https://www.vinted.es/brand/wurth'), +(176030 , 'WAXX' , 'https://www.vinted.es/brand/waxx'), +(332165 , 'Wax Jean' , 'https://www.vinted.es/brand/wax-jean'), +(845850 , 'Wax London' , 'https://www.vinted.es/brand/wax-london'), +(154188 , 'WoolOvers' , 'https://www.vinted.es/brand/woolovers'), +(324690 , 'Wader' , 'https://www.vinted.es/brand/wader'), +(750020 , 'Wanderlust' , 'https://www.vinted.es/brand/wanderlust'), +(1263316 , 'Waterdrop' , 'https://www.vinted.es/brand/waterdrop'), +(339770 , 'Water Jeans' , 'https://www.vinted.es/brand/water-jeans'), +(266719 , 'watercult' , 'https://www.vinted.es/brand/watercult'), +(937976 , 'Wander Beauty' , 'https://www.vinted.es/brand/wander-beauty'), +(991303 , 'W ATE R' , 'https://www.vinted.es/brand/w-ate-r'), +(1745931 , 'Wade' , 'https://www.vinted.es/brand/wade'), +(581693 , 'Waterford' , 'https://www.vinted.es/brand/waterford'), +(2379570 , 'Wandering' , 'https://www.vinted.es/brand/wandering'), +(188230 , 'Weber' , 'https://www.vinted.es/brand/weber'), +(565886 , 'Weeride' , 'https://www.vinted.es/brand/weeride'), +(640945 , 'Wild Flowers' , 'https://www.vinted.es/brand/wild-flowers'), +(407537 , 'Willard' , 'https://www.vinted.es/brand/willard'), +(370761 , 'Wissmach' , 'https://www.vinted.es/brand/wissmach'), +(175008 , 'wet n wild' , 'https://www.vinted.es/brand/wet-n-wild'), +(291429 , 'West Ham' , 'https://www.vinted.es/brand/west-ham'), +(1037965 , 'West Ham United' , 'https://www.vinted.es/brand/west-ham-united'), +(382239 , 'Wednesday' , 'https://www.vinted.es/brand/wednesday'), +(302697 , 'WeWood' , 'https://www.vinted.es/brand/wewood'), +(420113 , 'We positive' , 'https://www.vinted.es/brand/we-positive'), +(64148 , 'won hundred' , 'https://www.vinted.es/brand/won-hundred'), +(331101 , 'Watch Me Grow' , 'https://www.vinted.es/brand/watch-me-grow'), +(88420 , 'Watcher' , 'https://www.vinted.es/brand/watcher'), +(4209 , 'Wasted' , 'https://www.vinted.es/brand/wasted'), +(64220 , 'Wanted' , 'https://www.vinted.es/brand/wanted'), +(397495 , 'Witteveen' , 'https://www.vinted.es/brand/witteveen'), +(293545 , 'WB' , 'https://www.vinted.es/brand/wb'), +(4560896 , 'W BY BHS' , 'https://www.vinted.es/brand/w-by-bhs'), +(758960 , 'WHOOPIE LOOPIE' , 'https://www.vinted.es/brand/whoopie-loopie'), +(281564 , 'Whoopi' , 'https://www.vinted.es/brand/whoopi'), +(205220 , 'Wap Two' , 'https://www.vinted.es/brand/wap-two'), +(355259 , 'Whisbear' , 'https://www.vinted.es/brand/whisbear'), +(982538 , 'WHSmith' , 'https://www.vinted.es/brand/whsmith'), +(106400 , 'Wear moi' , 'https://www.vinted.es/brand/wear-moi'), +(309918 , 'Wsp! Kids' , 'https://www.vinted.es/brand/wsp-kids'), +(277265 , 'WSP' , 'https://www.vinted.es/brand/wsp'), +(471502 , 'WYCON Cosmetics' , 'https://www.vinted.es/brand/wycon-cosmetics'), +(356987 , 'wibo' , 'https://www.vinted.es/brand/wibo'), +(360756 , 'Witboy' , 'https://www.vinted.es/brand/witboy'), +(280222 , 'Wipop' , 'https://www.vinted.es/brand/wipop'), +(395167 , 'Wibs' , 'https://www.vinted.es/brand/wibs'), +(411045 , 'Widow' , 'https://www.vinted.es/brand/widow'), +(1970706 , 'Winonah Milano' , 'https://www.vinted.es/brand/winonah-milano'), +(86330 , 'Wooop' , 'https://www.vinted.es/brand/wooop'), +(116838 , 'Woop' , 'https://www.vinted.es/brand/woop'), +(768996 , 'Woodpecker' , 'https://www.vinted.es/brand/woodpecker'), +(462784 , 'Woolpower' , 'https://www.vinted.es/brand/woolpower'), +(182452 , 'Wacoal' , 'https://www.vinted.es/brand/wacoal'), +(4696262 , 'Westermann Lernspielverlage / Lük' , 'https://www.vinted.es/brand/westermann-lernspielverlage-luk'), +(186082 , 'Wind' , 'https://www.vinted.es/brand/wind'), +(327751 , 'Windrose' , 'https://www.vinted.es/brand/windrose'), +(228788 , 'Windfield' , 'https://www.vinted.es/brand/windfield'), +(792005 , 'WINDEL' , 'https://www.vinted.es/brand/windel'), +(1158461 , 'WIND & VIBES' , 'https://www.vinted.es/brand/wind-vibes'), +(2251976 , 'Windelmanufaktur' , 'https://www.vinted.es/brand/windelmanufaktur'), +(959687 , 'White & One' , 'https://www.vinted.es/brand/white-and-one'), +(8388538 , 'White + Warren' , 'https://www.vinted.es/brand/white-warren'), +(293713 , 'winfun' , 'https://www.vinted.es/brand/winfun'), +(674782 , 'WMF' , 'https://www.vinted.es/brand/wmf'), +(19863 , 'WMK' , 'https://www.vinted.es/brand/wmk'), +(348789 , 'WMN' , 'https://www.vinted.es/brand/wmn'), +(15065 , 'Wme!' , 'https://www.vinted.es/brand/wme'), +(225372 , 'Wahl' , 'https://www.vinted.es/brand/wahl'), +(255878 , 'Walter' , 'https://www.vinted.es/brand/walter'), +(547972 , 'Walter Van Beirendonck' , 'https://www.vinted.es/brand/walter-van-beirendonck'), +(523692 , 'Walter Voulaz' , 'https://www.vinted.es/brand/walter-voulaz'), +(166518 , 'Walter Baker' , 'https://www.vinted.es/brand/walter-baker'), +(1501722 , 'Walter Violet' , 'https://www.vinted.es/brand/walter-violet'), +(3997357 , 'Walter Duchini' , 'https://www.vinted.es/brand/walter-duchini'), +(173646 , 'Walmart' , 'https://www.vinted.es/brand/walmart'), +(488957 , 'wikers' , 'https://www.vinted.es/brand/wikers'), +(899070 , 'Wiking' , 'https://www.vinted.es/brand/wiking'), +(586164 , 'Wikini' , 'https://www.vinted.es/brand/wikini'), +(3486330 , 'Wiky' , 'https://www.vinted.es/brand/wiky'), +(4831051 , 'wild for the weekend' , 'https://www.vinted.es/brand/wild-for-the-weekend'), +(805711 , 'Walkright' , 'https://www.vinted.es/brand/walkright'), +(283841 , 'Westbeach' , 'https://www.vinted.es/brand/westbeach'), +(468117 , 'Westside' , 'https://www.vinted.es/brand/westside'), +(246916 , 'West Coast Choppers' , 'https://www.vinted.es/brand/west-coast-choppers'), +(49983 , 'Weinbrenner' , 'https://www.vinted.es/brand/weinbrenner'), +(945735 , 'Wyse' , 'https://www.vinted.es/brand/wyse'), +(2358715 , 'Wyler Vetta' , 'https://www.vinted.es/brand/wyler-vetta'), +(644817 , 'Wearhouse' , 'https://www.vinted.es/brand/wearhouse'), +(290202 , 'Whoo' , 'https://www.vinted.es/brand/whoo'), +(497193 , 'Who What Wear' , 'https://www.vinted.es/brand/who-what-wear'), +(11637 , 'WHO.A.U' , 'https://www.vinted.es/brand/whoau'), +(348683 , 'Who & Why' , 'https://www.vinted.es/brand/who-why'), +(1295204 , 'Who''s Henri?' , 'https://www.vinted.es/brand/whos-henri'), +(5573983 , 'Who''she' , 'https://www.vinted.es/brand/whoshe'), +(191232 , 'Watts' , 'https://www.vinted.es/brand/watts'), +(1132369 , 'Watson & Parker' , 'https://www.vinted.es/brand/watson-parker'), +(826545 , 'Walky' , 'https://www.vinted.es/brand/walky'), +(183672 , 'Waki' , 'https://www.vinted.es/brand/waki'), +(183592 , 'WAPI' , 'https://www.vinted.es/brand/wapi'), +(207684 , 'WAIPAI' , 'https://www.vinted.es/brand/waipai'), +(275450 , 'Wapiti' , 'https://www.vinted.es/brand/wapiti'), +(322261 , 'Waimea' , 'https://www.vinted.es/brand/waimea'), +(327189 , 'WAITING FOR THE SUN' , 'https://www.vinted.es/brand/waiting-for-the-sun'), +(414770 , 'Waitrose' , 'https://www.vinted.es/brand/waitrose'), +(213304 , 'Wear' , 'https://www.vinted.es/brand/wear'), +(111134 , 'We Are Replay' , 'https://www.vinted.es/brand/we-are-replay'), +(424234 , 'Wear ''N Love' , 'https://www.vinted.es/brand/wear-n-love'), +(225410 , 'Wear Lemonade' , 'https://www.vinted.es/brand/wear-lemonade'), +(111026 , 'We Are' , 'https://www.vinted.es/brand/we-are'), +(1000667 , 'We are Kids' , 'https://www.vinted.es/brand/we-are-kids'), +(630837 , 'WEARECPH' , 'https://www.vinted.es/brand/wearecph'), +(797119 , 'Wear & Share Good Mood' , 'https://www.vinted.es/brand/wear-share-good-mood'), +(637166 , 'Womar' , 'https://www.vinted.es/brand/womar'), +(2524757 , 'Wee Me' , 'https://www.vinted.es/brand/wee-me'), +(776264 , 'We R Memory Keepers' , 'https://www.vinted.es/brand/we-r-memory-keepers'), +(331825 , 'White Stag' , 'https://www.vinted.es/brand/white-stag'), +(836879 , 'WILLIAMS WILSON' , 'https://www.vinted.es/brand/williams-wilson'), +(313403 , 'Williams' , 'https://www.vinted.es/brand/williams'), +(133478 , 'William de Faye' , 'https://www.vinted.es/brand/william-de-faye'), +(164792 , 'William' , 'https://www.vinted.es/brand/william'), +(724921 , 'William & Delvin' , 'https://www.vinted.es/brand/williamdelvin'), +(467617 , 'William Rast' , 'https://www.vinted.es/brand/william-rast'), +(516395 , 'Wacom' , 'https://www.vinted.es/brand/wacom'), +(614622 , 'Wacko Maria' , 'https://www.vinted.es/brand/wacko-maria'), +(335261 , 'Walla Boo!' , 'https://www.vinted.es/brand/walla-boo'), +(272913 , 'West One' , 'https://www.vinted.es/brand/west-one'), +(212200 , 'Waven' , 'https://www.vinted.es/brand/waven'), +(278373 , 'Wave' , 'https://www.vinted.es/brand/wave'), +(403701 , 'waveboard' , 'https://www.vinted.es/brand/waveboard'), +(1020269 , 'Waverly' , 'https://www.vinted.es/brand/waverly'), +(1566606 , 'wavebreaker' , 'https://www.vinted.es/brand/wavebreaker'), +(1219224 , 'Willsoor' , 'https://www.vinted.es/brand/willsoor'), +(311944 , 'Weatherproof' , 'https://www.vinted.es/brand/weatherproof'), +(828077 , 'Weatherproof Vintage' , 'https://www.vinted.es/brand/weatherproof-vintage'), +(20689 , 'Wildcat' , 'https://www.vinted.es/brand/wildcat'), +(301757 , 'Weyz' , 'https://www.vinted.es/brand/weyz'), +(396849 , 'Weyz Clothing' , 'https://www.vinted.es/brand/weyz-clothing'), +(940945 , 'WENZ' , 'https://www.vinted.es/brand/wenz'), +(7515923 , 'Wei Zhi' , 'https://www.vinted.es/brand/wei-zhi'), +(2913779 , 'Water Babies' , 'https://www.vinted.es/brand/water-babies'), +(331154 , 'WK' , 'https://www.vinted.es/brand/wk'), +(8465091 , 'W-King' , 'https://www.vinted.es/brand/w-king'), +(301682 , 'Winning Moves' , 'https://www.vinted.es/brand/winning-moves'), +(463106 , 'Wicked Costumes' , 'https://www.vinted.es/brand/wicked-costumes'), +(49339 , 'Win''s' , 'https://www.vinted.es/brand/wins'), +(250028 , 'Wings' , 'https://www.vinted.es/brand/wings'), +(114738 , 'Winston' , 'https://www.vinted.es/brand/winston'), +(593006 , 'Winshape' , 'https://www.vinted.es/brand/winshape'), +(86336 , 'Wooxoom' , 'https://www.vinted.es/brand/wooxoom'), +(152786 , 'Woox' , 'https://www.vinted.es/brand/woox'), +(170186 , 'WISHLIST' , 'https://www.vinted.es/brand/wishlist'), +(289223 , 'Xbox' , 'https://www.vinted.es/brand/xbox'), +(767146 , 'Xboy' , 'https://www.vinted.es/brand/xboy'), +(127 , 'Yessica' , 'https://www.vinted.es/brand/yessica'), +(486 , 'Yves Rocher' , 'https://www.vinted.es/brand/yves-rocher'), +(225520 , 'Yigga' , 'https://www.vinted.es/brand/yigga'), +(449297 , 'Yingaoxuefei' , 'https://www.vinted.es/brand/yingaoxuefei'), +(325796 , 'Yigal Azrouël' , 'https://www.vinted.es/brand/yigal-azrouel'), +(1242259 , 'Yeez Louise' , 'https://www.vinted.es/brand/yeez-louise'), +(312702 , 'Yu-Gi-Oh!' , 'https://www.vinted.es/brand/yu-gi-oh'), +(18975 , 'yamamay' , 'https://www.vinted.es/brand/yamamay'), +(377 , 'Yves Saint Laurent' , 'https://www.vinted.es/brand/yves-saint-laurent'), +(104706 , 'Young Dimension' , 'https://www.vinted.es/brand/young-dimension'), +(160686 , 'Y.F.K.' , 'https://www.vinted.es/brand/yfk'), +(299649 , 'YFT' , 'https://www.vinted.es/brand/yft'), +(48239 , 'Your Sixth Sense' , 'https://www.vinted.es/brand/your-sixth-sense'), +(68804 , 'Yours' , 'https://www.vinted.es/brand/yours'), +(161822 , 'Yours Clothing' , 'https://www.vinted.es/brand/yours-clothing'), +(1178202 , 'YOUR STORY' , 'https://www.vinted.es/brand/your-story'), +(348889 , 'Your Style' , 'https://www.vinted.es/brand/your-style'), +(4696250 , 'YourTurn' , 'https://www.vinted.es/brand/yourturn'), +(975809 , 'Your Wishes' , 'https://www.vinted.es/brand/your-wishes'), +(13375 , 'Your Feet Look Gorgeous' , 'https://www.vinted.es/brand/your-feet-look-gorgeous'), +(465184 , 'YOUSTAR' , 'https://www.vinted.es/brand/youstar'), +(269617 , 'Yoors' , 'https://www.vinted.es/brand/yoors'), +(94944 , 'YD' , 'https://www.vinted.es/brand/yd'), +(780670 , 'Ydence' , 'https://www.vinted.es/brand/ydence'), +(671372 , 'YD Love Your Clothes' , 'https://www.vinted.es/brand/yd-love-your-clothes'), +(1484480 , 'YDI' , 'https://www.vinted.es/brand/ydi'), +(485 , 'Yumi' , 'https://www.vinted.es/brand/yumi'), +(11769 , 'Yumi Mazao' , 'https://www.vinted.es/brand/yumi-mazao'), +(315164 , 'Yumiko' , 'https://www.vinted.es/brand/yumiko'), +(5884675 , 'Yumi Kim' , 'https://www.vinted.es/brand/yumi-kim'), +(48685 , 'Yu & Me' , 'https://www.vinted.es/brand/yu-me'), +(383538 , 'YUMAS' , 'https://www.vinted.es/brand/yumas'), +(264280 , 'Yuri' , 'https://www.vinted.es/brand/yuri'), +(18813 , 'yuki' , 'https://www.vinted.es/brand/yuki'), +(13605 , 'YAYA' , 'https://www.vinted.es/brand/yaya'), +(323112 , 'YAYA Women' , 'https://www.vinted.es/brand/yaya-women'), +(5970139 , 'Yaya Mimì' , 'https://www.vinted.es/brand/yaya-mimi'), +(9583 , 'Yamaha' , 'https://www.vinted.es/brand/yamaha'), +(663159 , 'Yamaya' , 'https://www.vinted.es/brand/yamaya'), +(346800 , 'Yalaska' , 'https://www.vinted.es/brand/yalaska'), +(332896 , 'Yakari' , 'https://www.vinted.es/brand/yakari'), +(2043525 , 'YATAY' , 'https://www.vinted.es/brand/yatay'), +(5785766 , 'Yamazaki Home' , 'https://www.vinted.es/brand/yamazaki-home'), +(63942 , 'YAS' , 'https://www.vinted.es/brand/yas'), +(1871936 , 'Yashimei' , 'https://www.vinted.es/brand/yashimei'), +(283956 , 'Yatsi' , 'https://www.vinted.es/brand/yatsi'), +(126736 , 'Yankee Candle' , 'https://www.vinted.es/brand/yankee-candle'), +(30899 , 'YCC' , 'https://www.vinted.es/brand/ycc'), +(262092 , 'YCC collection' , 'https://www.vinted.es/brand/ycc-collection'), +(157862 , 'YCOO' , 'https://www.vinted.es/brand/ycoo'), +(718991 , 'Y-Clu' , 'https://www.vinted.es/brand/y-clu'), +(325765 , 'Y''coo Paris' , 'https://www.vinted.es/brand/ycoo-paris'), +(7105737 , 'YCHO Studija' , 'https://www.vinted.es/brand/ycho-studija'), +(380134 , 'YOUNGSTYLE' , 'https://www.vinted.es/brand/youngstyle'), +(3279 , 'YesStyle' , 'https://www.vinted.es/brand/yesstyle'), +(25173 , 'Yes Zee' , 'https://www.vinted.es/brand/yes-zee'), +(417276 , 'Ynot' , 'https://www.vinted.es/brand/ynot'), +(388675 , 'YNONYME' , 'https://www.vinted.es/brand/ynonyme'), +(132858 , 'YouniQue' , 'https://www.vinted.es/brand/younique'), +(42745 , 'Yves Dorsey' , 'https://www.vinted.es/brand/yves-dorsey'), +(271177 , 'Yera' , 'https://www.vinted.es/brand/yera'), +(33659 , 'Yerse' , 'https://www.vinted.es/brand/yerse'), +(107030 , 'Yema' , 'https://www.vinted.es/brand/yema'), +(339001 , 'Ye Baili' , 'https://www.vinted.es/brand/ye-baili'), +(4786486 , 'YES & CI' , 'https://www.vinted.es/brand/yes-ci'), +(1493373 , 'yeans halle' , 'https://www.vinted.es/brand/yeans-halle'), +(1445670 , 'Yeah Bunny' , 'https://www.vinted.es/brand/yeah-bunny'), +(4566756 , 'Yeah Right NYC' , 'https://www.vinted.es/brand/yeah-right-nyc'), +(4237848 , 'Year Of Ours' , 'https://www.vinted.es/brand/year-of-ours'), +(11763 , 'Young Spirit' , 'https://www.vinted.es/brand/young-spirit'), +(195030 , 'YOINS' , 'https://www.vinted.es/brand/yoins'), +(111732 , 'Yes Miss' , 'https://www.vinted.es/brand/yes-miss'), +(131690 , 'yest' , 'https://www.vinted.es/brand/yest'), +(16097 , 'yes or no' , 'https://www.vinted.es/brand/yes-or-no'), +(106318 , 'YES' , 'https://www.vinted.es/brand/yes'), +(268451 , 'Yes London' , 'https://www.vinted.es/brand/yes-london'), +(414528 , 'YES! DO KIDS' , 'https://www.vinted.es/brand/yes-do-kids'), +(29909 , 'Yes Yes' , 'https://www.vinted.es/brand/yes-yes'), +(414699 , 'Yesta' , 'https://www.vinted.es/brand/yesta'), +(2783787 , 'Yesey' , 'https://www.vinted.es/brand/yesey'), +(318923 , 'Yoedu' , 'https://www.vinted.es/brand/yoedu'), +(3024401 , 'YUME YUME' , 'https://www.vinted.es/brand/yume-yume'), +(34953 , 'Yuka' , 'https://www.vinted.es/brand/yuka'), +(282960 , 'Yukai' , 'https://www.vinted.es/brand/yukai'), +(414714 , 'Yuko' , 'https://www.vinted.es/brand/yuko'), +(477 , 'Yucan' , 'https://www.vinted.es/brand/yucan'), +(1493338 , 'Yuta Pasch' , 'https://www.vinted.es/brand/yuta-pasch'), +(117012 , 'Y-3' , 'https://www.vinted.es/brand/y-3'), +(188876 , 'Y-London' , 'https://www.vinted.es/brand/y-london'), +(49689 , 'Y.R.U.' , 'https://www.vinted.es/brand/yru'), +(3402113 , 'Y-Fliker' , 'https://www.vinted.es/brand/y-fliker'), +(3139295 , 'Yan Simmon' , 'https://www.vinted.es/brand/yan-simmon'), +(307972 , 'Yo-Kai Watch' , 'https://www.vinted.es/brand/yo-kai-watch'), +(309863 , 'yes yez' , 'https://www.vinted.es/brand/yes-yez'), +(395765 , 'Yes Design' , 'https://www.vinted.es/brand/yes-design'), +(308598 , 'Ysabel Mora' , 'https://www.vinted.es/brand/ysabel-mora'), +(298313 , 'YoYo' , 'https://www.vinted.es/brand/yoyo'), +(1765207 , 'Yoyo S.' , 'https://www.vinted.es/brand/yoyo-s'), +(17221 , 'You & You' , 'https://www.vinted.es/brand/you-you'), +(107670 , 'Yokono' , 'https://www.vinted.es/brand/yokono'), +(208594 , 'You Young Coveri' , 'https://www.vinted.es/brand/you-young-coveri'), +(197942 , 'Yoko' , 'https://www.vinted.es/brand/yoko'), +(77640 , 'Yoox' , 'https://www.vinted.es/brand/yoox'), +(395357 , 'YooHoo & Friends' , 'https://www.vinted.es/brand/yoohoo-friends'), +(298682 , 'YooHoo' , 'https://www.vinted.es/brand/yoohoo'), +(292644 , 'Yookidoo' , 'https://www.vinted.es/brand/yookidoo'), +(988842 , 'Yehwang' , 'https://www.vinted.es/brand/yehwang'), +(348564 , 'Y.Two' , 'https://www.vinted.es/brand/ytwo'), +(392353 , 'Yellow Shop' , 'https://www.vinted.es/brand/yellow-shop'), +(407204 , 'Yellow Skin' , 'https://www.vinted.es/brand/yellow-skin'), +(285454 , 'Yellow' , 'https://www.vinted.es/brand/yellow'), +(172970 , 'Yellow Cab' , 'https://www.vinted.es/brand/yellow-cab'), +(4340321 , 'Yellow Blue Denim' , 'https://www.vinted.es/brand/yellow-blue-denim'), +(432064 , 'Yellow Box' , 'https://www.vinted.es/brand/yellow-box'), +(4696287 , 'YELLOW BALL' , 'https://www.vinted.es/brand/yellow-ball'), +(289882 , 'You & Me' , 'https://www.vinted.es/brand/you-me'), +(294711 , 'Yakuza' , 'https://www.vinted.es/brand/yakuza'), +(305846 , 'YOGA' , 'https://www.vinted.es/brand/yoga'), +(816098 , 'Yogasearcher' , 'https://www.vinted.es/brand/yogasearcher'), +(674762 , 'Yogalicious' , 'https://www.vinted.es/brand/yogalicious'), +(434251 , 'Yoga Sprout' , 'https://www.vinted.es/brand/yoga-sprout'), +(416196 , 'Yokana' , 'https://www.vinted.es/brand/yokana'), +(312175 , 'You & I' , 'https://www.vinted.es/brand/you-i'), +(739452 , 'Yowas' , 'https://www.vinted.es/brand/yowas'), +(48797 , 'Yonex' , 'https://www.vinted.es/brand/yonex'), +(1118479 , 'Yups' , 'https://www.vinted.es/brand/yups'), +(332211 , 'Yue Sheng' , 'https://www.vinted.es/brand/yue-sheng'), +(58886 , 'YUPOONG' , 'https://www.vinted.es/brand/yupoong'), +(424480 , 'Yokoo' , 'https://www.vinted.es/brand/yokoo'), +(593775 , 'Yoshii' , 'https://www.vinted.es/brand/yoshii'), +(29445 , 'Yoshi' , 'https://www.vinted.es/brand/yoshi'), +(4800734 , 'Yoshi Funabashi' , 'https://www.vinted.es/brand/yoshi-funabashi'), +(182428 , 'Ysé' , 'https://www.vinted.es/brand/yse'), +(4547 , 'YMCMB' , 'https://www.vinted.es/brand/ymcmb'), +(178434 , 'Yves Enzo' , 'https://www.vinted.es/brand/yves-enzo'), +(7043 , 'Y.O.U' , 'https://www.vinted.es/brand/you'), +(437956 , 'Yosh' , 'https://www.vinted.es/brand/yosh'), +(460429 , 'Yoshe' , 'https://www.vinted.es/brand/yoshe'), +(245884 , 'Yosi Samra' , 'https://www.vinted.es/brand/yosi-samra'), +(202220 , 'YORN' , 'https://www.vinted.es/brand/yorn'), +(36781 , 'Yonger & Bresson' , 'https://www.vinted.es/brand/yonger-bresson'), +(582218 , 'Yonk 46' , 'https://www.vinted.es/brand/yonk-46'), +(36573 , 'Young Blood' , 'https://www.vinted.es/brand/young-blood'), +(330125 , 'York' , 'https://www.vinted.es/brand/york'), +(159244 , 'Yves' , 'https://www.vinted.es/brand/yves'), +(78848 , 'Yvesline' , 'https://www.vinted.es/brand/yvesline'), +(26595 , 'Yves Calin' , 'https://www.vinted.es/brand/yves-calin'), +(340022 , 'Yves Delorme' , 'https://www.vinted.es/brand/yves-delorme'), +(112478 , 'Yves Desfarge' , 'https://www.vinted.es/brand/yves-desfarge'), +(381368 , 'Yves Renard' , 'https://www.vinted.es/brand/yves-renard'), +(162930 , 'Yell! Industry' , 'https://www.vinted.es/brand/yell-industry'), +(759373 , 'You Decide' , 'https://www.vinted.es/brand/you-decide'), +(200474 , 'Yohji Yamamoto' , 'https://www.vinted.es/brand/yohji-yamamoto'), +(381210 , 'Yidarton' , 'https://www.vinted.es/brand/yidarton'), +(1061353 , 'Yodeyma' , 'https://www.vinted.es/brand/yodeyma'), +(1260756 , 'Young Fabulous & Broke' , 'https://www.vinted.es/brand/young-fabulous-broke'), +(219218 , 'YMC' , 'https://www.vinted.es/brand/ymc'), +(379891 , 'YMI' , 'https://www.vinted.es/brand/ymi'), +(299127 , 'YMHY' , 'https://www.vinted.es/brand/ymhy'), +(793121 , 'Yes I Am' , 'https://www.vinted.es/brand/yes-i-am'), +(6574742 , 'Yes, I am Fashion' , 'https://www.vinted.es/brand/yes-i-am-fashion'), +(15497 , 'YSTRDY' , 'https://www.vinted.es/brand/ystrdy'), +(120724 , 'Young Fashion' , 'https://www.vinted.es/brand/young-fashion'), +(183630 , 'Youth' , 'https://www.vinted.es/brand/youth'), +(2250156 , 'YOUTHS IN BALACLAVA' , 'https://www.vinted.es/brand/youths-in-balaclava'), +(749223 , 'Youh' , 'https://www.vinted.es/brand/youh'), +(3563965 , 'Yo! Club' , 'https://www.vinted.es/brand/yo-club'), +(173890 , 'YES LOVE' , 'https://www.vinted.es/brand/yes-love'), +(411120 , 'Your&self' , 'https://www.vinted.es/brand/yourself'), +(76336 , 'Yili.K' , 'https://www.vinted.es/brand/yilik'), +(323505 , 'Yo-kai' , 'https://www.vinted.es/brand/yokai'), +(145314 , 'Yoek' , 'https://www.vinted.es/brand/yoek'), +(237138 , 'Yoël' , 'https://www.vinted.es/brand/yoel'), +(359687 , 'Youngland' , 'https://www.vinted.es/brand/youngland'), +(318799 , 'Young & Rich' , 'https://www.vinted.es/brand/young-rich'), +(895146 , 'Young & Reckless' , 'https://www.vinted.es/brand/young-and-reckless'), +(155322 , 'Youline' , 'https://www.vinted.es/brand/youline'), +(5427785 , 'YELIR WORLD' , 'https://www.vinted.es/brand/yelir-world'), +(295372 , 'Yargici' , 'https://www.vinted.es/brand/yargici'), +(363646 , 'Yaro' , 'https://www.vinted.es/brand/yaro'), +(340236 , 'Yanoir' , 'https://www.vinted.es/brand/yanoir'), +(213398 , 'Yarell' , 'https://www.vinted.es/brand/yarell'), +(738712 , 'YADO' , 'https://www.vinted.es/brand/yado'), +(297681 , 'Yardley' , 'https://www.vinted.es/brand/yardley'), +(554336 , 'Yao Shun' , 'https://www.vinted.es/brand/yao-shun'), +(278698 , 'Yadou' , 'https://www.vinted.es/brand/yadou'), +(2633441 , 'Yayoi Kusama' , 'https://www.vinted.es/brand/yayoi-kusama'), +(6416480 , 'Yamoko' , 'https://www.vinted.es/brand/yamoko'), +(1441466 , 'Young Living' , 'https://www.vinted.es/brand/young-living'), +(376404 , 'Yves Calin PARIS' , 'https://www.vinted.es/brand/yves-calin-paris'), +(79120 , 'YKK' , 'https://www.vinted.es/brand/ykk'), +(88210 , 'YKX & Co.' , 'https://www.vinted.es/brand/ykx-co'), +(1040103 , 'YKRA' , 'https://www.vinted.es/brand/ykra'), +(2975441 , 'Yoto' , 'https://www.vinted.es/brand/yoto'), +(350641 , 'Yoo' , 'https://www.vinted.es/brand/yoo'), +(45245 , 'Y&L' , 'https://www.vinted.es/brand/yl'), +(217288 , 'Yanko' , 'https://www.vinted.es/brand/yanko'), +(805066 , 'Young Couture' , 'https://www.vinted.es/brand/young-couture'), +(565126 , 'Young Couture by Barbara Schwarzer' , 'https://www.vinted.es/brand/young-couture-by-barbara-schwarzer'), +(537895 , 'Yuni' , 'https://www.vinted.es/brand/yuni'), +(1434921 , 'Yūjin' , 'https://www.vinted.es/brand/yujin'), +(898867 , 'Yvette' , 'https://www.vinted.es/brand/yvette'), +(2614628 , 'Yvette Ries' , 'https://www.vinted.es/brand/yvette-ries'), +(462 , 'YENDI' , 'https://www.vinted.es/brand/yendi'), +(484518 , 'You Wit Hus' , 'https://www.vinted.es/brand/you-wit-hus'), +(639791 , 'You & Oil' , 'https://www.vinted.es/brand/you-oil'), +(1121766 , 'YOUNGSTER' , 'https://www.vinted.es/brand/youngster'), +(3334292 , 'YOUNG STARS' , 'https://www.vinted.es/brand/young-stars'), +(291352 , 'yporqué' , 'https://www.vinted.es/brand/yporque'), +(130136 , 'Yess' , 'https://www.vinted.es/brand/yess'), +(127660 , 'Yoor Mind' , 'https://www.vinted.es/brand/yoor-mind'), +(74716 , 'Yooy Mind' , 'https://www.vinted.es/brand/yooy-mind'), +(695571 , 'Yoon' , 'https://www.vinted.es/brand/yoon'), +(263822 , 'Yacht Club' , 'https://www.vinted.es/brand/yacht-club'), +(54749 , 'YS' , 'https://www.vinted.es/brand/ys'), +(6027283 , 'YSM Essential' , 'https://www.vinted.es/brand/ysm-essential'), +(124100 , 'Yannick' , 'https://www.vinted.es/brand/yannick'), +(638809 , 'Yanbal' , 'https://www.vinted.es/brand/yanbal'), +(335736 , 'Yikey' , 'https://www.vinted.es/brand/yikey'), +(2754034 , 'YUTO KIDS' , 'https://www.vinted.es/brand/yuto-kids'), +(360076 , 'Yezz' , 'https://www.vinted.es/brand/yezz'), +(2046238 , 'Yilihao' , 'https://www.vinted.es/brand/yilihao'), +(3445245 , 'Yilifao' , 'https://www.vinted.es/brand/yilifao'), +(138860 , 'YU.K' , 'https://www.vinted.es/brand/yuk'), +(5129975 , 'Yuuki' , 'https://www.vinted.es/brand/yuuki'), +(4368734 , 'Yuiki Shimoji' , 'https://www.vinted.es/brand/yuiki-shimoji'), +(347780 , 'YVON FASHION' , 'https://www.vinted.es/brand/yvon-fashion'), +(6910069 , 'Yale University Press' , 'https://www.vinted.es/brand/yale-university-press'), +(282296 , 'Yeti' , 'https://www.vinted.es/brand/yeti'), +(743947 , 'Yes i do' , 'https://www.vinted.es/brand/yes-i-do'), +(240938 , 'YESHINI' , 'https://www.vinted.es/brand/yeshini'), +(4119677 , 'Yesmile' , 'https://www.vinted.es/brand/yesmile'), +(303234 , 'Yoki' , 'https://www.vinted.es/brand/yoki'), +(871127 , 'Yepp' , 'https://www.vinted.es/brand/yepp'), +(828502 , 'Yep Yep' , 'https://www.vinted.es/brand/yep-yep'), +(436756 , 'YES PLEASE' , 'https://www.vinted.es/brand/yes-please'), +(3371716 , 'Yepoda' , 'https://www.vinted.es/brand/yepoda'), +(1559944 , 'Your Life your Fashion' , 'https://www.vinted.es/brand/your-life-your-fashion'), +(102438 , 'Young Classic' , 'https://www.vinted.es/brand/young-classic'), +(493693 , 'Yve London' , 'https://www.vinted.es/brand/yve-london'), +(896987 , 'Yulla' , 'https://www.vinted.es/brand/yulla'), +(381649 , 'Young Soles' , 'https://www.vinted.es/brand/young-soles'), +(361453 , 'Y.L YOULINE' , 'https://www.vinted.es/brand/yl-youline'), +(364343 , 'Yamboo' , 'https://www.vinted.es/brand/yamboo'), +(253630 , 'Yhocos' , 'https://www.vinted.es/brand/yhocos'), +(231824 , 'YELL' , 'https://www.vinted.es/brand/yell'), +(1551709 , 'Yo_Soy' , 'https://www.vinted.es/brand/yosoy'), +(303334 , 'Yvon' , 'https://www.vinted.es/brand/yvon'), +(269550 , 'Yvonne' , 'https://www.vinted.es/brand/yvonne'), +(1367682 , 'Yvonne Léon' , 'https://www.vinted.es/brand/yvonne-leon'), +(374211 , 'Yvan & Marzia' , 'https://www.vinted.es/brand/yvan-marzia'), +(438798 , 'Yvolution' , 'https://www.vinted.es/brand/yvolution'), +(541450 , 'Yida' , 'https://www.vinted.es/brand/yida'), +(3792335 , 'Yi Pang Wei Mei' , 'https://www.vinted.es/brand/yi-pang-wei-mei'), +(311037 , 'Yoremy' , 'https://www.vinted.es/brand/yoremy'), +(5898013 , 'Young Poets Society' , 'https://www.vinted.es/brand/young-poets-society'), +(453947 , 'Yuu Jou' , 'https://www.vinted.es/brand/yuu-jou'), +(62388 , 'Yes Bon' , 'https://www.vinted.es/brand/yes-bon'), +(470253 , 'You Are Cosmetics' , 'https://www.vinted.es/brand/you-are-cosmetics'), +(134612 , 'YILISHI' , 'https://www.vinted.es/brand/yilishi'), +(427253 , 'Y/Project' , 'https://www.vinted.es/brand/yproject'), +(414322 , 'Yazbek' , 'https://www.vinted.es/brand/yazbek'), +(4176875 , 'Yope' , 'https://www.vinted.es/brand/yope'), +(1025683 , 'Yameiji' , 'https://www.vinted.es/brand/yameiji'), +(379062 , 'Yazubi' , 'https://www.vinted.es/brand/yazubi'), +(244068 , 'You Know' , 'https://www.vinted.es/brand/you-know'), +(1091042 , 'Yesmina' , 'https://www.vinted.es/brand/yesmina'), +(776348 , 'Yummy Mummy' , 'https://www.vinted.es/brand/yummy-mummy'), +(400373 , 'Yaiza' , 'https://www.vinted.es/brand/yaiza'), +(553880 , 'Young Hearts' , 'https://www.vinted.es/brand/young-hearts'), +(661767 , 'YZY Jeans' , 'https://www.vinted.es/brand/yzy-jeans'), +(4157928 , 'Yatta' , 'https://www.vinted.es/brand/yatta'), +(4340341 , 'Y.A.S Petite' , 'https://www.vinted.es/brand/yas-petite'), +(3341248 , 'YUNG HURN' , 'https://www.vinted.es/brand/yung-hurn'), +(3548999 , 'Youngprimitive' , 'https://www.vinted.es/brand/youngprimitive'), +(142634 , 'Yves Salomon' , 'https://www.vinted.es/brand/yves-salomon'), +(5782853 , 'Yves Salomon Meteo' , 'https://www.vinted.es/brand/yves-salomon-meteo'), +(935118 , 'Yam Yam' , 'https://www.vinted.es/brand/yam-yam'), +(12 , 'Zara' , 'https://www.vinted.es/brand/zara'), +(5685789 , 'Zara Kids' , 'https://www.vinted.es/brand/zara-kids'), +(137 , 'Zara Trafaluc' , 'https://www.vinted.es/brand/zara-trafaluc'), +(8761 , 'Zara Man' , 'https://www.vinted.es/brand/zara-man'), +(29717 , 'Zara Girls' , 'https://www.vinted.es/brand/zara-girls'), +(174346 , 'Zara Baby' , 'https://www.vinted.es/brand/zara-baby'), +(5745801 , 'Zara Woman' , 'https://www.vinted.es/brand/zara-woman'), +(266968 , 'Zara Boys' , 'https://www.vinted.es/brand/zara-boys'), +(6947541 , 'Zarali' , 'https://www.vinted.es/brand/zarali'), +(5786230 , 'Zara x Andy Warhol' , 'https://www.vinted.es/brand/zara-x-andy-warhol'), +(16091 , 'Zeeman' , 'https://www.vinted.es/brand/zeeman'), +(1642040 , 'Zee Lane' , 'https://www.vinted.es/brand/zee-lane'), +(52521 , 'Zuiki' , 'https://www.vinted.es/brand/zuiki'), +(3498529 , 'Zuikis Puikis' , 'https://www.vinted.es/brand/zuikis-puikis'), +(3227393 , 'Zuikio Stiliukas' , 'https://www.vinted.es/brand/zuikio-stiliukas'), +(3611075 , 'Zuikio Svajos' , 'https://www.vinted.es/brand/zuikio-svajos'), +(521 , 'Zara Basic' , 'https://www.vinted.es/brand/zara-basic'), +(341570 , 'Z8' , 'https://www.vinted.es/brand/z8'), +(128170 , 'Zippy' , 'https://www.vinted.es/brand/zippy'), +(226834 , 'Zippo' , 'https://www.vinted.es/brand/zippo'), +(5688545 , 'Zara Mini' , 'https://www.vinted.es/brand/zara-mini'), +(3629 , 'Zalando' , 'https://www.vinted.es/brand/zalando'), +(217404 , 'Zaful' , 'https://www.vinted.es/brand/zaful'), +(16325 , 'Zero' , 'https://www.vinted.es/brand/zero'), +(848983 , 'Zero2Three' , 'https://www.vinted.es/brand/zero2three'), +(5791099 , 'Zerorh' , 'https://www.vinted.es/brand/zerorh'), +(5799429 , 'Zéro Cent Cinq' , 'https://www.vinted.es/brand/zero-cent-cinq'), +(955240 , 'Zero Zero' , 'https://www.vinted.es/brand/zero-zero'), +(771870 , 'Zero One' , 'https://www.vinted.es/brand/zero-one'), +(5785135 , 'Zerod' , 'https://www.vinted.es/brand/zerod'), +(5873052 , 'Zero To Nine' , 'https://www.vinted.es/brand/zero-to-nine'), +(5791876 , 'ZeroXposur' , 'https://www.vinted.es/brand/zeroxposur'), +(7542518 , 'Zeroly' , 'https://www.vinted.es/brand/zeroly'), +(180870 , 'ZGENERATION' , 'https://www.vinted.es/brand/zgeneration'), +(45969 , 'Zara Home' , 'https://www.vinted.es/brand/zara-home'), +(2483 , 'ZAPA' , 'https://www.vinted.es/brand/zapa'), +(477798 , 'Zapato' , 'https://www.vinted.es/brand/zapato'), +(1940899 , 'Zapato Feroz' , 'https://www.vinted.es/brand/zapato-feroz'), +(1288243 , 'Zapateria' , 'https://www.vinted.es/brand/zapateria'), +(2413555 , 'Zapaka' , 'https://www.vinted.es/brand/zapaka'), +(486374 , 'Zapata' , 'https://www.vinted.es/brand/zapata'), +(2899 , 'Zamba' , 'https://www.vinted.es/brand/zamba'), +(312250 , 'Zabaione' , 'https://www.vinted.es/brand/zabaione'), +(403949 , 'Zamboo' , 'https://www.vinted.es/brand/zamboo'), +(371161 , 'Zamagni' , 'https://www.vinted.es/brand/zamagni'), +(465062 , 'Zamberlan' , 'https://www.vinted.es/brand/zamberlan'), +(5691124 , 'Zara Knit' , 'https://www.vinted.es/brand/zara-knit'), +(17633 , 'Zumba' , 'https://www.vinted.es/brand/zumba'), +(418346 , 'Zumbi' , 'https://www.vinted.es/brand/zumbi'), +(199270 , 'ZY' , 'https://www.vinted.es/brand/zy'), +(245444 , 'ZY Baby' , 'https://www.vinted.es/brand/zy-baby'), +(4696275 , 'ZY Girl' , 'https://www.vinted.es/brand/zy-girl'), +(423434 , 'ZY Boy' , 'https://www.vinted.es/brand/zy-boy'), +(27445 , 'Zyga' , 'https://www.vinted.es/brand/zyga'), +(277201 , 'ZY Newborn' , 'https://www.vinted.es/brand/zy-newborn'), +(694776 , 'Zygomatic Games' , 'https://www.vinted.es/brand/zygo-matic'), +(501296 , 'ZY Kids' , 'https://www.vinted.es/brand/zy-kids'), +(3752806 , 'Zyzio&Zuzia' , 'https://www.vinted.es/brand/zyziozuzia'), +(185890 , 'Zendra' , 'https://www.vinted.es/brand/zendra'), +(269997 , 'Zizzi' , 'https://www.vinted.es/brand/zizzi'), +(376343 , 'ZINZI' , 'https://www.vinted.es/brand/zinzi'), +(1825 , 'Zign' , 'https://www.vinted.es/brand/zign'), +(335231 , 'ZigZag' , 'https://www.vinted.es/brand/zigzag'), +(2961 , 'Zinka' , 'https://www.vinted.es/brand/zinka'), +(4371 , 'Zinda' , 'https://www.vinted.es/brand/zinda'), +(97366 , 'Ziener' , 'https://www.vinted.es/brand/ziener'), +(875654 , 'Zigga' , 'https://www.vinted.es/brand/zigga'), +(355284 , 'Zinco' , 'https://www.vinted.es/brand/zinco'), +(332135 , 'Zion' , 'https://www.vinted.es/brand/zion'), +(409138 , 'Zing' , 'https://www.vinted.es/brand/zing'), +(5851 , 'Zebra' , 'https://www.vinted.es/brand/zebra'), +(1180626 , 'Zebra a Pua' , 'https://www.vinted.es/brand/zebra-a-pua'), +(453428 , 'Zebralino' , 'https://www.vinted.es/brand/zebralino'), +(380949 , 'Zeybra' , 'https://www.vinted.es/brand/zeybra'), +(4987 , 'Zanzea' , 'https://www.vinted.es/brand/zanzea'), +(332815 , 'Z Grain de Blé' , 'https://www.vinted.es/brand/z-grain-de-ble'), +(42023 , 'ZAG' , 'https://www.vinted.es/brand/zag'), +(188510 , 'ZA girls' , 'https://www.vinted.es/brand/za-girls'), +(84934 , 'Zagora' , 'https://www.vinted.es/brand/zagora'), +(769928 , 'Zagg' , 'https://www.vinted.es/brand/zagg'), +(629490 , 'Zaggora' , 'https://www.vinted.es/brand/zaggora'), +(5688724 , 'Zara Collection' , 'https://www.vinted.es/brand/zara-collection'), +(1178502 , 'Zabione' , 'https://www.vinted.es/brand/zabione'), +(292953 , 'Zip' , 'https://www.vinted.es/brand/zip'), +(37431 , 'Zip-It' , 'https://www.vinted.es/brand/zip-it'), +(176864 , 'Zip Zap' , 'https://www.vinted.es/brand/zip-zap'), +(1268511 , 'ZIP73' , 'https://www.vinted.es/brand/zip73'), +(489432 , 'Zipups' , 'https://www.vinted.es/brand/zipups'), +(3431200 , 'Zipster' , 'https://www.vinted.es/brand/zipster'), +(240004 , 'Z One' , 'https://www.vinted.es/brand/z-one'), +(17499 , 'zone bleue' , 'https://www.vinted.es/brand/zone-bleue'), +(302007 , 'Zone 3' , 'https://www.vinted.es/brand/zone-3'), +(339920 , 'ZONE ONE' , 'https://www.vinted.es/brand/zone-one'), +(1883844 , 'Zone Denmark' , 'https://www.vinted.es/brand/zone-denmark'), +(4023 , 'Zoe' , 'https://www.vinted.es/brand/zoe'), +(52115 , 'Zoe Karssen' , 'https://www.vinted.es/brand/zoe-karssen'), +(181216 , 'Zoé and co' , 'https://www.vinted.es/brand/zoe-and-co'), +(259196 , 'Zoë Loveborn' , 'https://www.vinted.es/brand/zoe-loveborn'), +(842559 , 'ZOE SHOP' , 'https://www.vinted.es/brand/zoe-shop'), +(177918 , 'Zoeva' , 'https://www.vinted.es/brand/zoeva'), +(23921 , 'Zoé la Fée' , 'https://www.vinted.es/brand/zoe-la-fee'), +(13175 , 'Zoé Bonbon' , 'https://www.vinted.es/brand/zoe-bonbon'), +(1493469 , 'ZOE&ZAC' , 'https://www.vinted.es/brand/zoezac'), +(343574 , 'Zoé Ayla' , 'https://www.vinted.es/brand/zoe-ayla'), +(604551 , 'Zoeppritz' , 'https://www.vinted.es/brand/zoeppritz'), +(234858 , 'Zoggs' , 'https://www.vinted.es/brand/zoggs'), +(406170 , 'Zeta' , 'https://www.vinted.es/brand/zeta'), +(10725 , 'Zeta Moda' , 'https://www.vinted.es/brand/zeta-moda'), +(533316 , 'Zeta Otto' , 'https://www.vinted.es/brand/zeta-otto'), +(18375 , 'ZEVA' , 'https://www.vinted.es/brand/zeva'), +(382200 , 'Z and Co' , 'https://www.vinted.es/brand/z-and-co'), +(399969 , 'ZEZA FASHION' , 'https://www.vinted.es/brand/zeza-fashion'), +(15455 , 'Z&L' , 'https://www.vinted.es/brand/zl'), +(268903 , 'Zeagoo' , 'https://www.vinted.es/brand/zeagoo'), +(316759 , 'Z&I' , 'https://www.vinted.es/brand/zi'), +(455676 , 'Zelante' , 'https://www.vinted.es/brand/zelante'), +(657239 , 'Zusss' , 'https://www.vinted.es/brand/zusss'), +(370870 , 'ZURU' , 'https://www.vinted.es/brand/zuru'), +(5812751 , 'Zurück' , 'https://www.vinted.es/brand/zuruck'), +(877232 , 'ZulupaPUWA' , 'https://www.vinted.es/brand/zulupapuwa'), +(1378196 , 'ZÚA' , 'https://www.vinted.es/brand/zua'), +(7009698 , 'Zuzu Toys' , 'https://www.vinted.es/brand/zuzu-toys'), +(1493680 , 'Zuzu Bart' , 'https://www.vinted.es/brand/zuzu-bart'), +(182720 , 'Zuelements' , 'https://www.vinted.es/brand/zuelements'), +(296838 , 'Zapf Creation' , 'https://www.vinted.es/brand/zapf-creation'), +(162594 , 'Zac & Zoe' , 'https://www.vinted.es/brand/zac-zoe'), +(600316 , 'Zoso' , 'https://www.vinted.es/brand/zoso'), +(10401 , 'Zoo York' , 'https://www.vinted.es/brand/zoo-york'), +(290407 , 'Zoobles' , 'https://www.vinted.es/brand/zoobles'), +(347906 , 'Zohoha' , 'https://www.vinted.es/brand/zohoha'), +(164680 , 'Zoon' , 'https://www.vinted.es/brand/zoon'), +(417672 , 'Zooplus' , 'https://www.vinted.es/brand/zooplus'), +(690058 , 'Zoofari' , 'https://www.vinted.es/brand/zoofari'), +(401930 , 'Zoom' , 'https://www.vinted.es/brand/zoom'), +(460361 , 'ZooParc de Beauval' , 'https://www.vinted.es/brand/zooparc-de-beauval'), +(335585 , 'Zoomer' , 'https://www.vinted.es/brand/zoomer'), +(256980 , 'Zerres' , 'https://www.vinted.es/brand/zerres'), +(435048 , 'zoey beth' , 'https://www.vinted.es/brand/zoey-beth'), +(2006349 , 'zoё+phoebe' , 'https://www.vinted.es/brand/zoephoebe'), +(2887627 , 'Zoe & Morgan' , 'https://www.vinted.es/brand/zoe-morgan'), +(449987 , 'Zelys Paris' , 'https://www.vinted.es/brand/zelys-paris'), +(118372 , 'ZACK' , 'https://www.vinted.es/brand/zack'), +(61232 , 'John Zack' , 'https://www.vinted.es/brand/john-zack'), +(211670 , 'Zac et zoe' , 'https://www.vinted.es/brand/zac-et-zoe'), +(413479 , 'ZAK' , 'https://www.vinted.es/brand/zak'), +(188524 , 'Zac Posen' , 'https://www.vinted.es/brand/zac-posen'), +(667776 , 'ZAB kids' , 'https://www.vinted.es/brand/zab-kids'), +(414174 , 'Zac & Rachel' , 'https://www.vinted.es/brand/zac-rachel'), +(562614 , 'Zakti' , 'https://www.vinted.es/brand/zakti'), +(592321 , 'Zac Zac Posen' , 'https://www.vinted.es/brand/zac-zac-posen'), +(144678 , 'Zeus' , 'https://www.vinted.es/brand/zeus'), +(3997587 , 'Zeus + Dione' , 'https://www.vinted.es/brand/zeusdione'), +(37355 , 'Zeste de Mode' , 'https://www.vinted.es/brand/zeste-de-mode'), +(303050 , 'Zespà' , 'https://www.vinted.es/brand/zespa'), +(385307 , 'ZEISS' , 'https://www.vinted.es/brand/zeiss'), +(169714 , 'Zaxy' , 'https://www.vinted.es/brand/zaxy'), +(526249 , 'ZAPY' , 'https://www.vinted.es/brand/zapy'), +(460393 , 'ZAYNE' , 'https://www.vinted.es/brand/zayne'), +(580969 , 'zay' , 'https://www.vinted.es/brand/zay'), +(397682 , 'Zayane Bijoux' , 'https://www.vinted.es/brand/zayane-bijoux'), +(313643 , 'Zecchino d''Oro' , 'https://www.vinted.es/brand/zecchino-doro'), +(346500 , 'Zöllner' , 'https://www.vinted.es/brand/zollner'), +(368841 , 'ZUMO' , 'https://www.vinted.es/brand/zumo'), +(401239 , 'Zucchi' , 'https://www.vinted.es/brand/zucchi'), +(164380 , 'Zucca' , 'https://www.vinted.es/brand/zucca'), +(961872 , 'Zetpol' , 'https://www.vinted.es/brand/zetpol'), +(1374333 , 'Zavetti Canada' , 'https://www.vinted.es/brand/zavetti-canada'), +(23261 , 'ZEN' , 'https://www.vinted.es/brand/zen'), +(222894 , 'Zenith' , 'https://www.vinted.es/brand/zenith'), +(514324 , 'Zenner' , 'https://www.vinted.es/brand/zenner'), +(545933 , 'ZENGGI' , 'https://www.vinted.es/brand/zenggi'), +(47807 , 'Zenka' , 'https://www.vinted.es/brand/zenka'), +(14627 , 'Zen Ethic' , 'https://www.vinted.es/brand/zen-ethic'), +(1134766 , 'ZILVER' , 'https://www.vinted.es/brand/zilver'), +(95068 , 'Zumiez' , 'https://www.vinted.es/brand/zumiez'), +(585006 , 'Zum Zum' , 'https://www.vinted.es/brand/zum-zum'), +(1489992 , 'Zuo' , 'https://www.vinted.es/brand/zuo'), +(16497 , 'Zingara' , 'https://www.vinted.es/brand/zingara'), +(338703 , 'Zina' , 'https://www.vinted.es/brand/zina'), +(1375345 , 'Zinga' , 'https://www.vinted.es/brand/zinga'), +(312475 , 'Zidane' , 'https://www.vinted.es/brand/zidane'), +(330897 , 'Zolux' , 'https://www.vinted.es/brand/zolux'), +(1779766 , 'Zaino' , 'https://www.vinted.es/brand/zaino'), +(695742 , 'Zanolini' , 'https://www.vinted.es/brand/zanolini'), +(630168 , 'Zanone' , 'https://www.vinted.es/brand/zanone'), +(267833 , 'Zanon & Zago' , 'https://www.vinted.es/brand/zanon-zago'), +(2483027 , 'Zanotta' , 'https://www.vinted.es/brand/zanotta'), +(279095 , 'Zoot' , 'https://www.vinted.es/brand/zoot'), +(20497 , 'Zoteno' , 'https://www.vinted.es/brand/zoteno'), +(172418 , 'Zimmermann' , 'https://www.vinted.es/brand/zimmermann'), +(392012 , 'Zimmerman' , 'https://www.vinted.es/brand/zimmerman'), +(245246 , 'Zhu Zhu Pets' , 'https://www.vinted.es/brand/zhu-zhu-pets'), +(287076 , 'Zodio' , 'https://www.vinted.es/brand/zodio'), +(45713 , 'Zodiaco' , 'https://www.vinted.es/brand/zodiaco'), +(356148 , 'Zodiac' , 'https://www.vinted.es/brand/zodiac'), +(2674910 , 'Zoio' , 'https://www.vinted.es/brand/zoio'), +(1493424 , 'Zentex' , 'https://www.vinted.es/brand/zentex'), +(34573 , 'zef' , 'https://www.vinted.es/brand/zef'), +(3124722 , 'Zefyras' , 'https://www.vinted.es/brand/zefyras'), +(1898359 , 'ZIELONA SOWA' , 'https://www.vinted.es/brand/zielona-sowa'), +(309906 , 'Zwei' , 'https://www.vinted.es/brand/zwei'), +(669368 , 'Zwitsal' , 'https://www.vinted.es/brand/zwitsal'), +(955207 , 'ZWIJSEN' , 'https://www.vinted.es/brand/zwijsen'), +(7063175 , 'Zwilling J. A. Henckels' , 'https://www.vinted.es/brand/zwilling-j-a-henckels'), +(1208639 , 'Zwillingsherz' , 'https://www.vinted.es/brand/zwillingsherz'), +(321750 , 'Zelda' , 'https://www.vinted.es/brand/zelda'), +(31117 , 'Zelia' , 'https://www.vinted.es/brand/zelia'), +(379550 , 'Zella' , 'https://www.vinted.es/brand/zella'), +(402291 , 'Zeila' , 'https://www.vinted.es/brand/zeila'), +(369984 , 'ZILCH' , 'https://www.vinted.es/brand/zilch'), +(459231 , 'Zaffiro' , 'https://www.vinted.es/brand/zaffiro'), +(247846 , 'Zaffiri' , 'https://www.vinted.es/brand/zaffiri'), +(5863 , 'ZENANA OUTFITTERS' , 'https://www.vinted.es/brand/zenana-outfitters'), +(180590 , 'Zenana' , 'https://www.vinted.es/brand/zenana'), +(1047663 , 'Zeazoo' , 'https://www.vinted.es/brand/zeazoo'), +(201642 , 'Zoppini' , 'https://www.vinted.es/brand/zoppini'), +(453895 , 'Zhenzi' , 'https://www.vinted.es/brand/zhenzi'), +(171276 , 'Ze-Ze' , 'https://www.vinted.es/brand/ze-ze'), +(21597 , 'Zergatik' , 'https://www.vinted.es/brand/zergatik'), +(333147 , 'ZOI' , 'https://www.vinted.es/brand/zoi'), +(583761 , 'Zombie Dash' , 'https://www.vinted.es/brand/zombie-dash'), +(91046 , 'Zilian' , 'https://www.vinted.es/brand/zilian'), +(2044420 , 'Ziviani' , 'https://www.vinted.es/brand/ziviani'), +(3999606 , 'Zygzak' , 'https://www.vinted.es/brand/zygzak'), +(454338 , 'ZAPSHOP' , 'https://www.vinted.es/brand/zapshop'), +(970184 , 'Zappy' , 'https://www.vinted.es/brand/zappy'), +(368082 , 'Zavanna' , 'https://www.vinted.es/brand/zavanna'), +(231368 , 'Zimtstern' , 'https://www.vinted.es/brand/zimtstern'), +(739448 , 'Zimstern' , 'https://www.vinted.es/brand/zimstern'), +(1083475 , 'Ziaja' , 'https://www.vinted.es/brand/ziaja'), +(196628 , 'zao' , 'https://www.vinted.es/brand/zao'), +(203598 , 'Zegna' , 'https://www.vinted.es/brand/zegna'), +(525326 , 'Zitto' , 'https://www.vinted.es/brand/zitto'), +(390643 , 'Zilton' , 'https://www.vinted.es/brand/zilton'), +(78246 , 'zabok' , 'https://www.vinted.es/brand/zabok'), +(800332 , 'Zhrill' , 'https://www.vinted.es/brand/zhrill'), +(795619 , 'Zahjr' , 'https://www.vinted.es/brand/zahjr'), +(341772 , 'Zahir' , 'https://www.vinted.es/brand/zahir'), +(1493649 , 'Zahra Clothing Co' , 'https://www.vinted.es/brand/zahra-clothing-co'), +(165808 , 'ZALORA' , 'https://www.vinted.es/brand/zalora'), +(1133237 , 'Zezuzulla' , 'https://www.vinted.es/brand/zezuzulla'), +(42379 , 'ZNJ' , 'https://www.vinted.es/brand/znj'), +(105504 , 'ZNJeans' , 'https://www.vinted.es/brand/znjeans'), +(1493585 , 'zniwtwins' , 'https://www.vinted.es/brand/zniwtwins'), +(5986329 , 'Znak' , 'https://www.vinted.es/brand/znak'), +(951714 , 'zoolaboo' , 'https://www.vinted.es/brand/zoolaboo'), +(1165381 , 'Zopa' , 'https://www.vinted.es/brand/zopa'), +(337734 , 'Zona Brera' , 'https://www.vinted.es/brand/zona-brera'), +(984688 , 'Zocal' , 'https://www.vinted.es/brand/zocal'), +(46363 , 'Zoak' , 'https://www.vinted.es/brand/zoak'), +(202180 , 'Zoya' , 'https://www.vinted.es/brand/zoya'), +(272757 , 'Zoul' , 'https://www.vinted.es/brand/zoul'), +(368091 , 'Zolder' , 'https://www.vinted.es/brand/zolder'), +(272810 , 'ZOLI' , 'https://www.vinted.es/brand/zoli'), +(350489 , 'Zolla' , 'https://www.vinted.es/brand/zolla'), +(274348 , 'Zoella' , 'https://www.vinted.es/brand/zoella'), +(288506 , 'Zoelibat' , 'https://www.vinted.es/brand/zoelibat'), +(558376 , 'Zable' , 'https://www.vinted.es/brand/zable'), +(291494 , 'ZAB' , 'https://www.vinted.es/brand/zab'), +(2527 , 'Zilae' , 'https://www.vinted.es/brand/zilae'), +(22981 , 'ZAZA' , 'https://www.vinted.es/brand/zaza'), +(6196190 , 'Zara x Disney' , 'https://www.vinted.es/brand/zara-x-disney'), +(337631 , 'ZAZU' , 'https://www.vinted.es/brand/zazu'), +(1493438 , 'zazza' , 'https://www.vinted.es/brand/zazza'), +(1296743 , 'Zauberstern' , 'https://www.vinted.es/brand/zauberstern'), +(4052566 , 'Zaquad' , 'https://www.vinted.es/brand/zaquad'), +(20725 , 'Zarina' , 'https://www.vinted.es/brand/zarina'), +(117946 , 'Zinzo' , 'https://www.vinted.es/brand/zinzo'), +(189476 , 'Zintia' , 'https://www.vinted.es/brand/zintia'), +(395120 , 'Zucchero' , 'https://www.vinted.es/brand/zucchero'), +(756325 , 'Zizo' , 'https://www.vinted.es/brand/zizo'), +(2445504 , 'Zizù La Femme' , 'https://www.vinted.es/brand/zizu-la-femme'), +(350009 , 'Zimo' , 'https://www.vinted.es/brand/zimo'), +(215672 , 'Zizu' , 'https://www.vinted.es/brand/zizu'), +(1099195 , 'ZieZoo' , 'https://www.vinted.es/brand/ziezoo'), +(445058 , 'Zion Rootswear' , 'https://www.vinted.es/brand/zion-rootswear'), +(288044 , 'Zibi London' , 'https://www.vinted.es/brand/zibi-london'), +(635716 , 'Zoomalia' , 'https://www.vinted.es/brand/zoomalia'), +(3388177 , 'Zoé Lu' , 'https://www.vinted.es/brand/zoe-lu'), +(135080 , 'Zaps' , 'https://www.vinted.es/brand/zaps'), +(360996 , 'Zaatxchi' , 'https://www.vinted.es/brand/zaatxchi'), +(777642 , 'Zhoe & Tobiah' , 'https://www.vinted.es/brand/zhoe-tobiah'), +(192288 , 'Zerimar' , 'https://www.vinted.es/brand/zerimar'), +(366659 , 'Zanellato' , 'https://www.vinted.es/brand/zanellato'), +(223668 , 'Zarro' , 'https://www.vinted.es/brand/zarro'), +(932500 , 'Zarra Gembos' , 'https://www.vinted.es/brand/zarra-gembos'), +(2527574 , 'Zofix' , 'https://www.vinted.es/brand/zofix'), +(659279 , 'Zego' , 'https://www.vinted.es/brand/zego'), +(893884 , 'Z-MAN Games' , 'https://www.vinted.es/brand/z-man-games'), +(317901 , 'Zorro' , 'https://www.vinted.es/brand/zorro'), +(313105 , 'Zorra' , 'https://www.vinted.es/brand/zorra'), +(5695720 , 'Zara SRPLS' , 'https://www.vinted.es/brand/zara-srpls'), +(1493560 , 'ZaiZai Kids' , 'https://www.vinted.es/brand/zaizai-kids'), +(599969 , 'Z ZEGNA' , 'https://www.vinted.es/brand/z-zegna'), +(617007 , 'Ziggy Denim' , 'https://www.vinted.es/brand/ziggy-denim'), +(2280749 , 'Ziggy Chen' , 'https://www.vinted.es/brand/ziggy-chen'), +(415013 , 'Z Design' , 'https://www.vinted.es/brand/z-design'), +(641020 , 'Zunie' , 'https://www.vinted.es/brand/zunie'), +(303579 , 'Zoch' , 'https://www.vinted.es/brand/zoch'), +(746942 , 'Zocco' , 'https://www.vinted.es/brand/zocco'), +(3019419 , 'Zoccai' , 'https://www.vinted.es/brand/zoccai'), +(830690 , 'Zophie' , 'https://www.vinted.es/brand/zophie'), +(2353462 , 'Zoë Chicco' , 'https://www.vinted.es/brand/zoe-chicco'), +(2056028 , 'Zo-Han' , 'https://www.vinted.es/brand/zo-han'), +(182010 , 'Zatchels' , 'https://www.vinted.es/brand/zatchels'), +(429806 , 'Zuppe' , 'https://www.vinted.es/brand/zuppe'), +(1180299 , 'zuppa' , 'https://www.vinted.es/brand/zuppa'), +(460598 , 'Zimmerli' , 'https://www.vinted.es/brand/zimmerli'), +(2540762 , 'Zimpli Kids' , 'https://www.vinted.es/brand/zimpli-kids'), +(1025883 , 'Zoey' , 'https://www.vinted.es/brand/zoey'), +(552695 , 'ZERMATT' , 'https://www.vinted.es/brand/zermatt'), +(5748127 , 'Zoeller' , 'https://www.vinted.es/brand/zoeller'), +(957092 , 'Zuccastregata' , 'https://www.vinted.es/brand/zuccastregata'), +(1616130 , 'Zucca Travail' , 'https://www.vinted.es/brand/zucca-travail'), +(281377 , 'Zinc' , 'https://www.vinted.es/brand/zinc'), +(359145 , 'Z1975' , 'https://www.vinted.es/brand/z1975'), +(386024 , 'Z BIZ' , 'https://www.vinted.es/brand/z-biz'), +(322096 , 'Ziki' , 'https://www.vinted.es/brand/ziki'), +(66628 , 'Zigi Soho' , 'https://www.vinted.es/brand/zigi-soho'), +(571513 , 'ZIBIZ' , 'https://www.vinted.es/brand/zibiz'), +(341073 , 'Zibi' , 'https://www.vinted.es/brand/zibi'), +(38127 , 'ZiGiny' , 'https://www.vinted.es/brand/ziginy'), +(720147 , 'Zorina' , 'https://www.vinted.es/brand/zorina'), +(36931 , 'Zafira' , 'https://www.vinted.es/brand/zafira'), +(469873 , 'Zanetti' , 'https://www.vinted.es/brand/zanetti'), +(2920779 , 'Zanetti 1965' , 'https://www.vinted.es/brand/zanetti-1965'), +(34387 , 'Ze Hippie' , 'https://www.vinted.es/brand/ze-hippie'), +(996670 , 'Zarek' , 'https://www.vinted.es/brand/zarek'), +(296675 , 'zanerobe' , 'https://www.vinted.es/brand/zanerobe'), +(2779583 , 'Zych & Staszewski' , 'https://www.vinted.es/brand/zych-staszewski'), +(338743 , 'ZANIER' , 'https://www.vinted.es/brand/zanier'), +(3137060 , 'Zartex' , 'https://www.vinted.es/brand/zartex'), +(392800 , 'ZSIIBO' , 'https://www.vinted.es/brand/zsiibo'), +(360260 , 'ZAND Amsterdam' , 'https://www.vinted.es/brand/zand-amsterdam'), +(355064 , 'Zava' , 'https://www.vinted.es/brand/zava'), +(695984 , 'Zantos' , 'https://www.vinted.es/brand/zantos'); diff --git a/migrations/2023-07-01-164526_countries/down.sql b/migrations/2023-07-01-164526_countries/down.sql new file mode 100644 index 0000000..d9a93fe --- /dev/null +++ b/migrations/2023-07-01-164526_countries/down.sql @@ -0,0 +1 @@ +-- This file should undo anything in `up.sql` diff --git a/migrations/2023-07-01-164526_countries/up.sql b/migrations/2023-07-01-164526_countries/up.sql new file mode 100644 index 0000000..fdafc84 --- /dev/null +++ b/migrations/2023-07-01-164526_countries/up.sql @@ -0,0 +1,30 @@ +-- Your SQL goes here +CREATE TABLE COUNTRY ( + id INT PRIMARY KEY, + name VARCHAR(30), + local_name VARCHAR(30), + iso_code VARCHAR(2), + flag VARCHAR(5) +); + + + +INSERT INTO COUNTRY(id, name, local_name, iso_code , flag) VALUES +(16 , 'France' , 'France', 'FR', '🇨🇵'), +(19 , 'Belgique' , 'Belgique / België', 'BE', '🇧🇪'), +(7 , 'Espagne' , 'España', 'ES', '🇪🇸'), +(20 , 'Luxembourg' , 'Luxembourg', 'LU', '🇱🇺'), +(10 , 'Pays-Bas' , 'Nederland', 'NL', '🇳🇱'), +(1 , 'Lituanie' , 'Lietuva', 'LT', '🇱🇹'), +(2 , 'Allemagne ' , 'Deutschland', 'DE', '🇩🇪'), +(4 , 'Autriche' , 'Österreich', 'AT', '🇦🇹'), +(18 , 'Italie' , 'Italia', 'IT', '🇮🇹'), +(13 , 'Royaume-Uni' , 'United Kingdom', 'GB', '🇬🇧'), +(21 , 'Portugal' , 'Portugal', 'PT','🇵🇹'), +(14 , 'États-Unis' , 'United States', 'US', '🇺🇸'), +(3 , 'République tchèque' , 'Česká republika', 'CZ', '🇨🇿'), +(22 , 'Slovaquie' , 'Slovenská republika', 'SK', '🇸🇰'), +(15 , 'Pologne' , 'Polska', 'PL', '🇵🇱'), +(12 , 'Suède' , 'Sverige', 'SE', '🇸🇪'), +(25 , 'Roumanie' , 'România', 'RO', '🇷🇴'), +(24 , 'Hongrie' , 'Magyarország', 'HU', '🇭🇺'); diff --git a/src/db.rs b/src/db.rs new file mode 100644 index 0000000..9ae4ee9 --- /dev/null +++ b/src/db.rs @@ -0,0 +1,95 @@ +use std::fmt::Display; + +use bb8_postgres::{ + bb8::{Pool, RunError}, + tokio_postgres::{ + tls::{MakeTlsConnect, TlsConnect}, + Row, Socket, + }, + PostgresConnectionManager, +}; +use postgres_types::ToSql; +use thiserror::Error; + +use crate::model::filter::{brand::Brand, category::Category}; + +const GET_BRAND_BY_NAME: &str = include_str!("sql_queries/GET_BRAND_BY_NAME.sql"); +const GET_BRANDS_BY_NAME: &str = include_str!("sql_queries/GET_BRANDS_BY_NAME.sql"); +const GET_CATEGORY_BY_NAME: &str = include_str!("sql_queries/GET_CATEGORY_BY_NAME.sql"); + +#[derive(Error, Debug)] +pub enum DbError { + #[error(transparent)] + PoolError(#[from] RunError), + #[error(transparent)] + PgError(#[from] bb8_postgres::tokio_postgres::Error), +} + +pub struct DbController +where + Tls: MakeTlsConnect + Clone + Send + Sync + 'static, + >::Stream: Send + Sync, + >::TlsConnect: Send, + <>::TlsConnect as TlsConnect>::Future: Send, +{ + pool: Pool>, +} + +impl DbController +where + Tls: MakeTlsConnect + Clone + Send + Sync + 'static, + >::Stream: Send + Sync, + >::TlsConnect: Send, + <>::TlsConnect as TlsConnect>::Future: Send, +{ + pub async fn new(uri: &str, pool_size: u32, tls: Tls) -> Result, DbError> { + let manager = PostgresConnectionManager::new_from_stringlike(uri, tls)?; + + let pool = Pool::builder().max_size(pool_size).build(manager).await?; + + Ok(DbController { pool }) + } + + pub async fn get_brand_by_name + Sync + ToSql>( + &self, + name: &S, + ) -> Result { + let conn = self.pool.get().await?; + + let row: Row = conn.query_one(GET_BRAND_BY_NAME, &[name]).await?; + + // Works because From for Brand is implemented + let b: Brand = row.into(); + + Ok(b) + } + + pub async fn get_brands_by_name + Sync + ToSql + Display>( + &self, + name: &S, + ) -> Result, DbError> { + let conn = self.pool.get().await?; + + let name_to_sql = format!("{}%", &name); + + let rows: Vec = conn.query(GET_BRANDS_BY_NAME, &[&name_to_sql]).await?; + + // Works because From for Brand is implemented + let brands: Vec = rows.into_iter().map(|row| row.into()).collect(); + + Ok(brands) + } + + pub async fn get_category_by_title + Sync + ToSql + Display>( + &self, + name: &S, + ) -> Result { + let conn = self.pool.get().await?; + let row: Row = conn.query_one(GET_CATEGORY_BY_NAME, &[&name]).await?; + + // Works because From for Category is implemented + let cat: Category = row.into(); + + Ok(cat) + } +} diff --git a/src/lib.rs b/src/lib.rs index 4270ac5..c32c6d9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,11 @@ +/*! +Hola como estas +*/ +#[cfg(feature = "advanced_filters")] +pub mod db; pub mod model; pub mod queries; +pub use queries::CookieError; +pub use queries::VintedWrapper; #[cfg(test)] pub mod tests; diff --git a/src/main.rs b/src/main.rs index 915df6c..07d584b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,34 @@ -use vinted_rs::queries; +use bb8_postgres::tokio_postgres::NoTls; +use vinted_rs::{ + db::DbController, + model::{filter::brand::Brand, filter::Filter}, +}; + +use vinted_rs::VintedWrapper; + +const DB_URL: &str = "postgres://postgres:postgres@localhost/vinted-rs"; +const POOL_SIZE: u32 = 5; #[tokio::main] async fn main() { - let mut vinted = queries::VintedWrapper::new(); + let vinted = VintedWrapper::new(); + + let filter: Filter = Filter::builder().search_text(String::from("shoes")).build(); + + let items = vinted.get_items(&filter, 5).await.unwrap(); + + print!("{items:?}"); + + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + + let brand_name: String = String::from("adidas"); + //let brand_name : &str = "adidas"; + + let b: Brand = db.get_brand_by_name(&brand_name).await.unwrap(); + + let brands = db.get_brands_by_name(&brand_name).await.unwrap(); - vinted.refresh_cookies().await.unwrap(); + println!("\n\n\n\nBrand {b:?}\n\n\n\n"); - vinted.get_item().await.unwrap(); + println!("Brands: {brands:?}"); } diff --git a/src/model.rs b/src/model.rs index 2c808fd..f500f95 100644 --- a/src/model.rs +++ b/src/model.rs @@ -1,7 +1,6 @@ -mod brand; pub mod filter; pub mod item; pub mod items; -mod photo; +pub mod photo; pub mod user; pub use serde::{Deserialize, Serialize}; diff --git a/src/model/brand.rs b/src/model/brand.rs deleted file mode 100644 index 12916d4..0000000 --- a/src/model/brand.rs +++ /dev/null @@ -1,8 +0,0 @@ -use crate::model::{Deserialize, Serialize}; - -#[derive(Debug, Clone, Serialize, Deserialize)] -pub struct Brand { - id: i64, - title: String, - url: String, -} diff --git a/src/model/filter.rs b/src/model/filter.rs index f257af6..8cd6703 100644 --- a/src/model/filter.rs +++ b/src/model/filter.rs @@ -1,14 +1,71 @@ -/*use typed_builder::TypedBuilder; +use typed_builder::TypedBuilder; -#[derive(TypedBuilder)] +pub mod brand; +pub mod category; +pub mod category_tree; +pub mod colors; +pub mod country; +pub mod material; +pub mod size; + +#[derive(TypedBuilder, Debug, Clone)] pub struct Filter { #[builder(default, setter(strip_option))] - search_text: Option, + pub search_text: Option, + #[builder(default, setter(strip_option))] + pub catalog_ids: Option, + #[builder(default, setter(strip_option))] + pub color_ids: Option, + #[builder(default, setter(strip_option))] + pub brand_ids: Option, + #[builder(default, setter(strip_option))] + pub countries_ids: Option, #[builder(default, setter(strip_option))] - catalog_id: Option, + pub size_ids: Option, #[builder(default, setter(strip_option))] - color_id: Option, - // id 15 es Mango + pub article_status: Option>, #[builder(default, setter(strip_option))] - brand_ids: Option>, -}*/ + pub sort_by: Option, +} + +#[derive(Debug, Clone)] +pub enum ArticleStatus { + NewTags, + NewNoTags, + VeryGood, + Good, + Satisfactory, +} + +impl From<&ArticleStatus> for &str { + /// From `&ArticleStatus` to `&str` + fn from(status: &ArticleStatus) -> Self { + match *status { + ArticleStatus::NewTags => "6", + ArticleStatus::NewNoTags => "1", + ArticleStatus::VeryGood => "2", + ArticleStatus::Good => "3", + ArticleStatus::Satisfactory => "4", + } + } +} + +#[derive(Debug, Clone)] +pub enum SortBy { + Relevance, + PriceDescendant, + PriceAscendant, + NewestFirst, +} + +impl From<&SortBy> for &str { + /// From `&SortBy` to `&str` + fn from(sort: &SortBy) -> Self { + match *sort { + SortBy::Relevance => "relevance", + SortBy::PriceDescendant => "price_high_to_low", + SortBy::PriceAscendant => "price_low_to_high", + SortBy::NewestFirst => "newest_first", + } + } +} diff --git a/src/model/filter/brand.rs b/src/model/filter/brand.rs new file mode 100644 index 0000000..cdc7b47 --- /dev/null +++ b/src/model/filter/brand.rs @@ -0,0 +1,21 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +pub struct Brand { + pub id: i32, + pub title: String, + pub url: String, +} + +#[cfg(feature = "advanced_filters")] +impl From for Brand { + fn from(row: Row) -> Self { + Brand::builder() + .id(row.get("id")) + .title(row.get("title")) + .url(row.get("url")) + .build() + } +} diff --git a/src/model/filter/category.rs b/src/model/filter/category.rs new file mode 100644 index 0000000..35847f7 --- /dev/null +++ b/src/model/filter/category.rs @@ -0,0 +1,28 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +pub struct Category { + id: i32, + // TODO creo que estos titulos solo estan en ingles + title: String, + code: String, + parent_id: i32, + url: String, + url_en: String, +} + +#[cfg(feature = "advanced_filters")] +impl From for Category { + fn from(row: Row) -> Self { + Category::builder() + .id(row.get("id")) + .title(row.get("title")) + .code(row.get("code")) + .parent_id(row.get("parent_id")) + .url(row.get("url")) + .url_en(row.get("url_en")) + .build() + } +} diff --git a/src/model/filter/category_tree.rs b/src/model/filter/category_tree.rs new file mode 100644 index 0000000..da7de6c --- /dev/null +++ b/src/model/filter/category_tree.rs @@ -0,0 +1,21 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +pub struct CategoryTree { + id: i32, + parent_id: i32, + child_id: i32, +} + +#[cfg(feature = "advanced_filters")] +impl From for CategoryTree { + fn from(row: Row) -> Self { + CategoryTree::builder() + .id(row.get("id")) + .parent_id(row.get("parent_id")) + .child_id(row.get("child_id")) + .build() + } +} diff --git a/src/model/filter/colors.rs b/src/model/filter/colors.rs new file mode 100644 index 0000000..732dd7d --- /dev/null +++ b/src/model/filter/colors.rs @@ -0,0 +1,22 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +pub struct Color { + id: i32, + // TODO el titulo solo está en francés valorar que podemos hacer + title: String, + hex: String, +} + +#[cfg(feature = "advanced_filters")] +impl From for Color { + fn from(row: Row) -> Self { + Color::builder() + .id(row.get("id")) + .title(row.get("title")) + .hex(row.get("hex")) + .build() + } +} diff --git a/src/model/filter/country.rs b/src/model/filter/country.rs new file mode 100644 index 0000000..c7a4c2e --- /dev/null +++ b/src/model/filter/country.rs @@ -0,0 +1,23 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +struct Country { + id: i32, + local_name: String, + iso_code: String, + flag: String, +} + +#[cfg(feature = "advanced_filters")] +impl From for Country { + fn from(row: Row) -> Self { + Country::builder() + .id(row.get("id")) + .local_name(row.get("local_name")) + .iso_code(row.get("iso_code")) + .flag(row.get("flag")) + .build() + } +} diff --git a/src/model/filter/material.rs b/src/model/filter/material.rs new file mode 100644 index 0000000..699aa8e --- /dev/null +++ b/src/model/filter/material.rs @@ -0,0 +1,23 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +pub struct Material { + id: i32, + material_es: String, + material_fr: String, + material_en: String, +} + +#[cfg(feature = "advanced_filters")] +impl From for Material { + fn from(row: Row) -> Self { + Material::builder() + .id(row.get("id")) + .material_es(row.get("material_es")) + .material_en(row.get("material_en")) + .material_fr(row.get("material_fr")) + .build() + } +} diff --git a/src/model/filter/size.rs b/src/model/filter/size.rs new file mode 100644 index 0000000..755e1dc --- /dev/null +++ b/src/model/filter/size.rs @@ -0,0 +1,24 @@ +#[cfg(feature = "advanced_filters")] +use bb8_postgres::tokio_postgres::Row; +use typed_builder::TypedBuilder; + +#[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] +pub struct Size { + id: i32, + id_vinted: i32, + // TODO las tallas y las categorias de tallas están solo en Castellano + size: String, + category: String, +} + +#[cfg(feature = "advanced_filters")] +impl From for Size { + fn from(row: Row) -> Self { + Size::builder() + .id(row.get("id")) + .id_vinted(row.get("id_vinted")) + .size(row.get("size")) + .category(row.get("category")) + .build() + } +} diff --git a/src/model/item.rs b/src/model/item.rs index 7c2a522..960eba0 100644 --- a/src/model/item.rs +++ b/src/model/item.rs @@ -4,16 +4,15 @@ use super::photo::Photo; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct Item { - id: i64, - title: String, - size_title: String, - brand_title: String, - //discount: String, (null?) - currency: String, - price: String, - photo: Photo, //Sustituable por "full_size_url" - url: String, - is_visible: i32, - promoted: bool, - favourite_count: i32, + pub id: i64, + pub title: String, + pub size_title: String, + pub brand_title: String, + pub currency: String, + pub price: String, + pub photo: Photo, + pub url: String, + pub is_visible: i32, + pub promoted: bool, + pub favourite_count: i32, } diff --git a/src/model/items.rs b/src/model/items.rs index 88bfedf..1dddbe4 100644 --- a/src/model/items.rs +++ b/src/model/items.rs @@ -2,7 +2,7 @@ use crate::model::item::Item; use crate::model::{Deserialize, Serialize}; #[derive(Debug, Serialize, Deserialize)] pub struct Items { - items: Vec, + pub items: Vec, } impl Items { diff --git a/src/queries.rs b/src/queries.rs index bbbbae2..ab0f8cd 100644 --- a/src/queries.rs +++ b/src/queries.rs @@ -1,17 +1,35 @@ use once_cell::sync::OnceCell; use rand::Rng; use reqwest::Client; +use reqwest::StatusCode; use reqwest_cookie_store::CookieStore; use reqwest_cookie_store::CookieStoreMutex; use std::sync::Arc; use thiserror::Error; +use crate::model::filter::Filter; use crate::model::items::Items; #[derive(Error, Debug)] pub enum CookieError { - #[error("ReqwestError")] + #[error(transparent)] ReqWestError(#[from] reqwest::Error), + #[error("Error to get cookies")] + GetCookiesError, +} + +#[derive(Error, Debug)] +pub enum VintedWrapperError { + #[error(transparent)] + CookiesError(#[from] CookieError), + #[error("Number of items must be non-zero value")] + ItemNumberError, +} + +impl From for VintedWrapperError { + fn from(value: reqwest::Error) -> Self { + VintedWrapperError::CookiesError(CookieError::ReqWestError(value)) + } } const DOMAINS: [&str; 18] = [ @@ -19,34 +37,105 @@ const DOMAINS: [&str; 18] = [ "se", "ro", "hu", ]; -fn random_host() -> String { +#[derive(Debug, Clone)] +pub enum Host { + Fr, + Be, + Es, + Lu, + Nl, + Lt, + De, + At, + It, + Uk, + Pt, + Com, + Cz, + Sk, + Pl, + Se, + Ro, + Hu, +} + +impl From for &str { + fn from(val: Host) -> Self { + match val { + Host::Fr => DOMAINS[0], + Host::Be => DOMAINS[1], + Host::Es => DOMAINS[2], + Host::Lu => DOMAINS[3], + Host::Nl => DOMAINS[4], + Host::Lt => DOMAINS[5], + Host::De => DOMAINS[6], + Host::At => DOMAINS[7], + Host::It => DOMAINS[8], + Host::Uk => DOMAINS[9], + Host::Pt => DOMAINS[10], + Host::Com => DOMAINS[11], + Host::Cz => DOMAINS[12], + Host::Sk => DOMAINS[13], + Host::Pl => DOMAINS[14], + Host::Se => DOMAINS[15], + Host::Ro => DOMAINS[16], + Host::Hu => DOMAINS[17], + } + } +} + +pub fn random_host<'a>() -> &'a str { let random_index = rand::thread_rng().gen_range(0..DOMAINS.len()); - DOMAINS[random_index].to_string() + DOMAINS[random_index] } static CLIENT: OnceCell = OnceCell::new(); -pub struct VintedWrapper { - host: Option, +#[derive(Debug, Clone)] +pub struct VintedWrapper<'a> { + host: &'a str, cookie_store: Arc, } -impl Default for VintedWrapper { +impl<'a> Default for VintedWrapper<'a> { fn default() -> Self { - Self::new() + Self::new_with_host(Host::Es) } } -impl VintedWrapper { + +impl<'a> VintedWrapper<'a> { pub fn new() -> Self { let cookie_store = CookieStore::new(None); let cookie_store = CookieStoreMutex::new(cookie_store); let cookie_store = Arc::new(cookie_store); VintedWrapper { - host: None, + host: random_host(), + cookie_store, + } + } + + pub fn new_with_host(host: Host) -> Self { + let cookie_store = CookieStore::new(None); + let cookie_store = CookieStoreMutex::new(cookie_store); + let cookie_store = Arc::new(cookie_store); + VintedWrapper { + host: host.into(), cookie_store, } } + pub fn get_host(&self) -> &str { + self.host + } + + pub fn set_new_random_host(&mut self) { + self.host = random_host(); + } + + pub fn set_new_host(&mut self, host: Host) { + self.host = host.into(); + } + fn get_client(&self) -> &'static Client { CLIENT.get_or_init(|| -> Client { reqwest::ClientBuilder::new() @@ -56,20 +145,82 @@ impl VintedWrapper { }) } - pub async fn refresh_cookies(&mut self) -> Result<(), CookieError> { + pub async fn refresh_cookies(&self) -> Result<(), CookieError> { self.cookie_store.lock().unwrap().clear(); + let client = self.get_client(); - self.host = Some(random_host()); // Option - let request = format!( - "https://www.vinted.{}/auth/token_refresh", - self.host.as_ref().unwrap() - ); - client.post(request).send().await?; + + let request = format!("https://www.vinted.{}/auth/token_refresh", self.host); + + let mut response_cookies = client.post(&request).send().await?; + let max_retries = 3; + let mut i = 0; + + while response_cookies.status() != StatusCode::OK && i < max_retries { + response_cookies = client.post(&request).send().await?; + i += 1; + // valorar meter un sleep 0.1 s + } + + if response_cookies.status() != StatusCode::OK { + return Err(CookieError::GetCookiesError); + } + Ok(()) } - pub async fn get_item(&mut self) -> Result<(), CookieError> { - let domain: &str = &format!("vinted.{}", self.host.as_ref().unwrap()); + fn substitute_if_first(first: &mut bool, url: &mut String) { + if *first { + url.replace_range(0..1, "?"); + *first = false; + } + } + + /// Retrieves items from the Vinted API based on the provided filters. + /// + /// # Arguments + /// + /// * `filters` - A reference to a `Filter` struct containing the filter parameters. + /// * `num` - The number of items to retrieve. Defaults to 1 if not specified. + /// + /// # Returns + /// + /// A `Result` enum containing either the retrieved `Items` or a `CookieError`. + /// + /// # Examples + /// + /// ```rust + /// use tokio::main; + /// use crate::vinted_rs::model::items::Items; + /// use crate::vinted_rs::model::filter::Filter; + /// use crate::vinted_rs::queries::VintedWrapper; + /// use crate::vinted_rs::queries::VintedWrapperError; + /// + /// + /// #[tokio::main] + /// async fn main() { + /// let wrapper = VintedWrapper::new(); + /// let filter: Filter = Filter::builder().search_text(String::from("shoes")).build(); + /// let num = 10; + /// + /// match wrapper.get_items(&filter, num).await { + /// Ok(items) => { + /// println!("Retrieved {} items: {:?}", items.items.len(), items); + /// assert_eq!(items.items.len(), 10); + /// } + /// Err(err) => match err { + /// VintedWrapperError::ItemNumberError => unreachable!(), + /// VintedWrapperError::CookiesError(_) => (), + /// }, + /// } + /// } + /// ``` + pub async fn get_items(&self, filters: &Filter, num: u32) -> Result { + if num == 0 { + return Err(VintedWrapperError::ItemNumberError); + } + + let domain: &str = &format!("https://www.vinted.{}/api/v2/catalog/items", self.host); let cookie_store_clone = self.cookie_store.clone(); @@ -79,20 +230,76 @@ impl VintedWrapper { .get(domain, "/", "__cf_bm") .is_none() { - self.refresh_cookies().await? + self.refresh_cookies().await?; } let client = self.get_client(); - let url = format!( - "https://www.vinted.{}/api/v2/catalog/items", - self.host.as_ref().unwrap() - ); + let mut first = true; + + let mut url = format!("https://www.vinted.{}/api/v2/catalog/items", self.host); - let res: Items = client.get(url).send().await?.json().await?; + // Filtro search text + if let Some(text) = &filters.search_text { + url = format!("{url}?search_text={text}"); + first = false; + } - println!("JSON :{res:?}"); + // Filtro catalogo + if let Some(catalog_ids) = &filters.catalog_ids { + let mut catalog_args: String = format!("&catalog_ids={}", catalog_ids); - Ok(()) + VintedWrapper::substitute_if_first(&mut first, &mut catalog_args); + + url = format!("{url}{catalog_args}"); + } + + // Filtro colores + if let Some(color_ids) = &filters.color_ids { + let mut color_args: String = format!("&color_ids={}", color_ids); + + VintedWrapper::substitute_if_first(&mut first, &mut color_args); + + url = format!("{url}{color_args}"); + } + + if let Some(brand_ids) = &filters.brand_ids { + let mut brand_args: String = format!("&brand_ids={}", brand_ids); + + VintedWrapper::substitute_if_first(&mut first, &mut brand_args); + + url = format!("{url}{brand_args}"); + } + + if let Some(vec) = &filters.article_status { + let querify_vec: Vec<&str> = vec.iter().map(|status| status.into()).collect(); + + let mut article_status_args: String = format!("&status_ids={}", querify_vec.join(",")); + + VintedWrapper::substitute_if_first(&mut first, &mut article_status_args); + + url = format!("{url}{article_status_args}"); + } + + if let Some(sort_by) = &filters.sort_by { + let sort_by_str: &str = sort_by.into(); + + let mut sort_by_arg = format!("&order={}", sort_by_str); + + VintedWrapper::substitute_if_first(&mut first, &mut sort_by_arg); + + url = format!("{url}{sort_by_arg}"); + } + + // Limitar el articulo a 1 + let mut per_page_args = format!("&per_page={num}"); + + VintedWrapper::substitute_if_first(&mut first, &mut per_page_args); + + url = format!("{url}{per_page_args}"); + + let items: Items = client.get(url).send().await?.json().await?; + + Ok(items) } } diff --git a/src/sql_queries/GET_BRANDS_BY_NAME.sql b/src/sql_queries/GET_BRANDS_BY_NAME.sql new file mode 100644 index 0000000..6691b53 --- /dev/null +++ b/src/sql_queries/GET_BRANDS_BY_NAME.sql @@ -0,0 +1 @@ +SELECT * FROM BRAND WHERE UPPER(TITLE) LIKE UPPER($1); diff --git a/src/sql_queries/GET_BRAND_BY_NAME.sql b/src/sql_queries/GET_BRAND_BY_NAME.sql new file mode 100644 index 0000000..f1b752e --- /dev/null +++ b/src/sql_queries/GET_BRAND_BY_NAME.sql @@ -0,0 +1 @@ +SELECT * FROM BRAND WHERE UPPER(title) = UPPER($1); \ No newline at end of file diff --git a/src/sql_queries/GET_CATEGORY_BY_NAME.sql b/src/sql_queries/GET_CATEGORY_BY_NAME.sql new file mode 100644 index 0000000..3bec998 --- /dev/null +++ b/src/sql_queries/GET_CATEGORY_BY_NAME.sql @@ -0,0 +1 @@ +SELECT * FROM CATEGORY WHERE UPPER(title) = UPPER($1); diff --git a/src/sql_queries/GET_CHILDREN_BY_FATHER_ID.sql b/src/sql_queries/GET_CHILDREN_BY_FATHER_ID.sql new file mode 100644 index 0000000..e5c6287 --- /dev/null +++ b/src/sql_queries/GET_CHILDREN_BY_FATHER_ID.sql @@ -0,0 +1 @@ +SELECT child_id FROM CATEGORY_TREE WHERE parent_id = $1 \ No newline at end of file diff --git a/src/sql_queries/GET_COUNTRY_BY_ISO_CODE.sql b/src/sql_queries/GET_COUNTRY_BY_ISO_CODE.sql new file mode 100644 index 0000000..0392e8f --- /dev/null +++ b/src/sql_queries/GET_COUNTRY_BY_ISO_CODE.sql @@ -0,0 +1 @@ +SELECT * FROM COUNTRY WHERE iso_code = UPPER($1) \ No newline at end of file diff --git a/src/tests.rs b/src/tests.rs index e50227e..796b824 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -1,4 +1,6 @@ #[cfg(test)] +pub mod db; +#[cfg(test)] pub mod model; #[cfg(test)] pub mod queries; diff --git a/src/tests/db.rs b/src/tests/db.rs new file mode 100644 index 0000000..a5beebc --- /dev/null +++ b/src/tests/db.rs @@ -0,0 +1,58 @@ +use crate::{ + db::DbController, + model::filter::{brand::Brand, category::Category}, +}; +use bb8_postgres::tokio_postgres::NoTls; + +const DB_URL: &str = "postgres://postgres:postgres@localhost/vinted-rs"; +const POOL_SIZE: u32 = 5; + +#[tokio::test] +async fn test_get_brand_by_name() { + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + + let brand_name: String = String::from("adidas"); + + let b: Brand = db.get_brand_by_name(&brand_name).await.unwrap(); + + assert_eq!( + b, + Brand::builder() + .title(String::from("adidas")) + .id(14) + .url(String::from("https://www.vinted.es/brand/adidas")) + .build() + ); +} + +#[tokio::test] +async fn test_get_brands_by_name() { + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + + let brand_name: String = String::from("adidas"); + + let brands: Vec = db.get_brands_by_name(&brand_name).await.unwrap(); + + assert_eq!(brands.len(), 38); +} + +#[tokio::test] +async fn test_get_category_by_name() { + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + + let category_name: String = String::from("Women"); + + let c = db.get_category_by_title(&category_name).await.unwrap(); + + assert_eq!( + c, + Category::builder() + .code(String::from("WOMEN_ROOT")) + .url(String::from("/women")) + .url_en(String::from("/women")) + .title(String::from("Women")) + .id(1904) + .parent_id(0) + .build() + ); +} diff --git a/src/tests/queries.rs b/src/tests/queries.rs index 8b13789..1f778cc 100644 --- a/src/tests/queries.rs +++ b/src/tests/queries.rs @@ -1 +1,96 @@ +use crate::db::DbController; +use crate::model::filter::Filter; +use crate::queries::VintedWrapperError; +use crate::VintedWrapper; +use bb8_postgres::tokio_postgres::NoTls; +const DB_URL: &str = "postgres://postgres:postgres@localhost/vinted-rs"; +const POOL_SIZE: u32 = 5; + +#[tokio::test] +async fn test_get_item_query_text() { + let vinted = VintedWrapper::new(); + + let filter: Filter = Filter::builder().search_text(String::from("shoes")).build(); + + match vinted.get_items(&filter, 1).await { + // Limitado el numero de elementos a 1 + Ok(items) => { + assert_eq!(items.items.len(), 1); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_item_brands() { + let vinted = VintedWrapper::new(); + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + let brand = db.get_brand_by_name(&String::from("Adidas")).await.unwrap(); + + let filter: Filter = Filter::builder().brand_ids(brand.id.to_string()).build(); + + match vinted.get_items(&filter, 1).await { + // Limitado el numero de elementos a 1 + Ok(items) => { + assert_eq!(items.items.get(0).unwrap().brand_title, brand.title); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_items_brands() { + let vinted = VintedWrapper::new(); + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + let brand = db.get_brand_by_name(&String::from("Adidas")).await.unwrap(); + + let filter: Filter = Filter::builder().brand_ids(brand.id.to_string()).build(); + + match vinted.get_items(&filter, 10).await { + Ok(items) => { + for item in items.items { + assert_eq!(item.brand_title, brand.title); + } + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_items_catalogs_no_db() { + let vinted = VintedWrapper::new(); + //Woman elements + let filter: Filter = Filter::builder().catalog_ids(String::from("1904")).build(); + let substrings = vec![ + "women", "mujer", "femme", "kobiety", "donna", "moterims", "noi", "dames", "zeny", "damen", + "femei", "mulher", + ]; + + match vinted.get_items(&filter, 10).await { + Ok(items) => { + let all_ok = items.items.iter().all(|item| { + let ok_once = substrings.iter().any(|w| item.url.contains(w)); + if !ok_once { + println!("{}", item.url) + } + ok_once + }); + + assert!(all_ok); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} diff --git a/vinted-db-feeder b/vinted-db-feeder new file mode 160000 index 0000000..990de5c --- /dev/null +++ b/vinted-db-feeder @@ -0,0 +1 @@ +Subproject commit 990de5c43d489e41d5f29e420b0a5146e167f11c From fd579403a0debbf39bb803c6e65cc814f672dc02 Mon Sep 17 00:00:00 2001 From: alvarocabo Date: Sat, 8 Jul 2023 20:08:50 +0200 Subject: [PATCH 2/4] Fix cargo lock --- Cargo.lock | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8fe728..cbce8aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -451,15 +451,6 @@ dependencies = [ "digest", ] -[[package]] -name = "hmac" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" -dependencies = [ - "digest", -] - [[package]] name = "http" version = "0.2.9" From 8b36de0df82fc475b2d4150e4d63add26bbc53d1 Mon Sep 17 00:00:00 2001 From: Pmarquez <48651252+pxp9@users.noreply.github.com> Date: Sun, 9 Jul 2023 20:17:24 +0200 Subject: [PATCH 3/4] countries , price from and price to filter done (#25) * countries , price from and price to filter done * fix typo docs * Improved README * Fixing doc tests * Small fix * Added search by country * Como no el fmt * Added material and size filters * Removed debug element * Attemp of testing item by color * Ignoring the test for now * Fix clippy * Ignore test for now * Removed main.rs * Updated .gitignore * tests de filtros * fix clippy and fmt --------- Co-authored-by: alvarocabo --- .github/workflows/rust.yml | 2 +- .gitignore | 1 + README.md | 28 +++---- src/db.rs | 17 +++- src/main.rs | 34 -------- src/model/filter.rs | 61 ++++++++++++++- src/model/filter/category.rs | 12 +-- src/model/filter/category_tree.rs | 6 +- src/model/filter/colors.rs | 7 +- src/model/filter/country.rs | 12 +-- src/model/filter/material.rs | 8 +- src/model/photo.rs | 8 +- src/queries.rs | 53 ++++++++++++- src/tests/db.rs | 19 ++++- src/tests/queries.rs | 124 +++++++++++++++++++++++++++++- 15 files changed, 306 insertions(+), 86 deletions(-) delete mode 100644 src/main.rs diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7d36743..259ee28 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -69,7 +69,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --verbose --all-features -- --ignored + args: --verbose --all-features -- --ignored --nocapture release: name: Release x86_64-unknown-linux-gnu diff --git a/.gitignore b/.gitignore index ea8c4bf..246a668 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +**/main.rs \ No newline at end of file diff --git a/README.md b/README.md index ceacb47..8a18eb2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,17 @@ [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs -A complete Vinted API-Wrapper in Rust +## Table of Contents + +- [Vinted-rs: A Vinted API wrapper](#vinted-rs-a-vinted-api-wrapper) + - [Table of Contents](#table-of-contents) + - [Installation](#installation) + - [DB setup](#db-setup) + - [Create a migration](#create-a-migration) + - [Run a Docker container with PostgreSQL](#run-a-docker-container-with-postgresql) + - [Run migrations](#run-migrations) + - [Stop DB](#stop-db) + - [Running Tests](#running-tests) ## Installation @@ -14,24 +24,16 @@ Via `cargo` you can add the library to your project's `Cargo.toml` ```toml [dependencies] -vinted-rs = "0.0.1" +vinted-rs = "0.1.1" ``` -## Authors - -[Álvaro Cabo](https://github.com/alvarocabo) - -[Pepe Márquez](https://github.com/pxp9) - ## DB setup Advanced filtering features must require this setup before running. - First start installing diesel-cli (in order to run the migrations in PostgreSQL database) -### VERY IMPORTANT - -diesel-cli installation may fail if you do not have `libpq` library installed. +⚠️**Very important:** diesel-cli installation may fail if you do not have `libpq` library installed. To install `libpq`, just install PostgreSQL package on your machine. @@ -85,9 +87,7 @@ make stop ## Running Tests -### Very important - -Before running tests is important to do the DB setup +⚠️**Very important:** Before running tests is important to do the [DB setup](#db-setup) Then run the tests diff --git a/src/db.rs b/src/db.rs index 3447fbd..aea607b 100644 --- a/src/db.rs +++ b/src/db.rs @@ -22,11 +22,12 @@ use bb8_postgres::{ use postgres_types::ToSql; use thiserror::Error; -use crate::model::filter::{brand::Brand, category::Category}; +use crate::model::filter::{brand::Brand, category::Category, country::Country}; const GET_BRAND_BY_NAME: &str = include_str!("sql_queries/GET_BRAND_BY_NAME.sql"); const GET_BRANDS_BY_NAME: &str = include_str!("sql_queries/GET_BRANDS_BY_NAME.sql"); const GET_CATEGORY_BY_NAME: &str = include_str!("sql_queries/GET_CATEGORY_BY_NAME.sql"); +const GET_COUNTRY_BY_ISO_CODE: &str = include_str!("sql_queries/GET_COUNTRY_BY_ISO_CODE.sql"); /** Represents an error that can occur during database operations. @@ -122,4 +123,18 @@ where Ok(cat) } + + /// Retrieves a category by its title from the database + pub async fn get_country_by_iso + Sync + ToSql + Display>( + &self, + code: &S, + ) -> Result { + let conn = self.pool.get().await?; + let row: Row = conn.query_one(GET_COUNTRY_BY_ISO_CODE, &[&code]).await?; + + // Works because From for Category is implemented + let country: Country = row.into(); + + Ok(country) + } } diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index 07d584b..0000000 --- a/src/main.rs +++ /dev/null @@ -1,34 +0,0 @@ -use bb8_postgres::tokio_postgres::NoTls; -use vinted_rs::{ - db::DbController, - model::{filter::brand::Brand, filter::Filter}, -}; - -use vinted_rs::VintedWrapper; - -const DB_URL: &str = "postgres://postgres:postgres@localhost/vinted-rs"; -const POOL_SIZE: u32 = 5; - -#[tokio::main] -async fn main() { - let vinted = VintedWrapper::new(); - - let filter: Filter = Filter::builder().search_text(String::from("shoes")).build(); - - let items = vinted.get_items(&filter, 5).await.unwrap(); - - print!("{items:?}"); - - let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); - - let brand_name: String = String::from("adidas"); - //let brand_name : &str = "adidas"; - - let b: Brand = db.get_brand_by_name(&brand_name).await.unwrap(); - - let brands = db.get_brands_by_name(&brand_name).await.unwrap(); - - println!("\n\n\n\nBrand {b:?}\n\n\n\n"); - - println!("Brands: {brands:?}"); -} diff --git a/src/model/filter.rs b/src/model/filter.rs index 32b36a0..08b540a 100644 --- a/src/model/filter.rs +++ b/src/model/filter.rs @@ -9,7 +9,7 @@ pub mod material; pub mod size; /// Represents a filter for querying items. - +/// /// Trait Implementations: /// - `TypedBuilder`: Implements the builder pattern for constructing a `Filter` instance. /// @@ -19,6 +19,7 @@ pub mod size; ///### Example /// ///```rust +/// use vinted_rs::Filter; /// /// let filter: Filter = Filter::builder() /// .catalog_ids(String::from("4,16")) @@ -30,11 +31,16 @@ pub mod size; /// ///``` /// +/// +/// `price_from` filter should be always <= `price_to` , otherwise Vinted will not find anything +/// #[derive(TypedBuilder, Debug, Clone)] pub struct Filter { ///The search text to filter items by. ///### Example ///```rust + /// use vinted_rs::Filter; + /// ///let filter: Filter = Filter::builder().search_text(String::from("shoes")).build(); ///``` /// @@ -73,6 +79,8 @@ pub struct Filter { /// ///Try it in [Regex 101](https://regex101.com/r/u8ZEpv/1) /// + /// + /// **Note:** Color names are only avalible in French in our database at the moment ///### Example ///```rust /// use vinted_rs::Filter; @@ -117,7 +125,7 @@ pub struct Filter { /// use vinted_rs::Filter; /// /// - /// let filter: Filter = Filter::builder().country_ids(String::from("7,16")).build(); + /// let filter: Filter = Filter::builder().countries_ids(String::from("7,16")).build(); /// // Where 7 and 16 are country_ids from Vinted /// // 7 is country_id for Spain /// // 16 is country_id for France @@ -144,6 +152,26 @@ pub struct Filter { ///``` /// #[builder(default, setter(strip_option))] + pub material_ids: Option, + /// The material IDs to filter items by. Must be formatted as `^[\d+,]*\d+$` regex. + /// + ///If not formated with the specified regex, undefined behaviour. (Input will not be checked). + /// + /// + ///Try it in [Regex 101](https://regex101.com/r/u8ZEpv/1) + /// + ///### Example + ///```rust + /// use vinted_rs::Filter; + /// + /// + /// let filter: Filter = Filter::builder().material_ids(String::from("44,102")).build(); + /// // Where 7 and 16 are country_ids from Vinted + /// // 44 is material_id for coton + /// // 49 is material_id for silk + ///``` + /// + #[builder(default, setter(strip_option))] pub size_ids: Option, #[builder(default, setter(strip_option))] /// The article statuses to filter items by. @@ -151,7 +179,7 @@ pub struct Filter { ///### Example ///```rust /// use vinted_rs::Filter; - /// + /// use vinted_rs::model::filter::ArticleStatus; /// /// let filter: Filter = Filter::builder().article_status(vec![ArticleStatus::NewTags , /// ArticleStatus::NewNoTags]).build(); @@ -163,13 +191,38 @@ pub struct Filter { ///### Example ///```rust /// use vinted_rs::Filter; - /// + /// use vinted_rs::model::filter::SortBy; + /// /// let filter: Filter = Filter::builder().sort_by(SortBy::PriceAscendant).build(); ///``` /// #[builder(default, setter(strip_option))] pub sort_by: Option, + /// The minimum price of the article + /// + ///### Example + ///```rust + /// use vinted_rs::Filter; + /// + /// + /// let filter: Filter = Filter::builder().price_from(10u32).build(); + ///``` + /// + #[builder(default, setter(strip_option))] + pub price_from: Option, + /// The max price of the article + /// + ///### Example + ///```rust + /// use vinted_rs::Filter; + /// + /// + /// let filter: Filter = Filter::builder().price_from(20u32).build(); + ///``` + /// + #[builder(default, setter(strip_option))] + pub price_to: Option, } /* diff --git a/src/model/filter/category.rs b/src/model/filter/category.rs index 35847f7..eff10fb 100644 --- a/src/model/filter/category.rs +++ b/src/model/filter/category.rs @@ -4,13 +4,13 @@ use typed_builder::TypedBuilder; #[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] pub struct Category { - id: i32, + pub id: i32, // TODO creo que estos titulos solo estan en ingles - title: String, - code: String, - parent_id: i32, - url: String, - url_en: String, + pub title: String, + pub code: String, + pub parent_id: i32, + pub url: String, + pub url_en: String, } #[cfg(feature = "advanced_filters")] diff --git a/src/model/filter/category_tree.rs b/src/model/filter/category_tree.rs index da7de6c..c09c3d2 100644 --- a/src/model/filter/category_tree.rs +++ b/src/model/filter/category_tree.rs @@ -4,9 +4,9 @@ use typed_builder::TypedBuilder; #[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] pub struct CategoryTree { - id: i32, - parent_id: i32, - child_id: i32, + pub id: i32, + pub parent_id: i32, + pub child_id: i32, } #[cfg(feature = "advanced_filters")] diff --git a/src/model/filter/colors.rs b/src/model/filter/colors.rs index 732dd7d..ba48698 100644 --- a/src/model/filter/colors.rs +++ b/src/model/filter/colors.rs @@ -4,10 +4,9 @@ use typed_builder::TypedBuilder; #[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] pub struct Color { - id: i32, - // TODO el titulo solo está en francés valorar que podemos hacer - title: String, - hex: String, + pub id: i32, + pub title: String, + pub hex: String, } #[cfg(feature = "advanced_filters")] diff --git a/src/model/filter/country.rs b/src/model/filter/country.rs index c7a4c2e..e0f364e 100644 --- a/src/model/filter/country.rs +++ b/src/model/filter/country.rs @@ -3,11 +3,12 @@ use bb8_postgres::tokio_postgres::Row; use typed_builder::TypedBuilder; #[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] -struct Country { - id: i32, - local_name: String, - iso_code: String, - flag: String, +pub struct Country { + pub id: i32, + pub name: String, + pub local_name: String, + pub iso_code: String, + pub flag: String, } #[cfg(feature = "advanced_filters")] @@ -15,6 +16,7 @@ impl From for Country { fn from(row: Row) -> Self { Country::builder() .id(row.get("id")) + .name(row.get("name")) .local_name(row.get("local_name")) .iso_code(row.get("iso_code")) .flag(row.get("flag")) diff --git a/src/model/filter/material.rs b/src/model/filter/material.rs index 699aa8e..a5788fe 100644 --- a/src/model/filter/material.rs +++ b/src/model/filter/material.rs @@ -4,10 +4,10 @@ use typed_builder::TypedBuilder; #[derive(Debug, Clone, TypedBuilder, PartialEq, Eq)] pub struct Material { - id: i32, - material_es: String, - material_fr: String, - material_en: String, + pub id: i32, + pub material_es: String, + pub material_fr: String, + pub material_en: String, } #[cfg(feature = "advanced_filters")] diff --git a/src/model/photo.rs b/src/model/photo.rs index 33b7fd7..a912daf 100644 --- a/src/model/photo.rs +++ b/src/model/photo.rs @@ -2,8 +2,8 @@ use crate::model::{Deserialize, Serialize}; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct Photo { - id: i64, - url: String, - dominant_color: String, - dominant_color_opaque: String, + pub id: i64, + pub url: String, + pub dominant_color: String, + pub dominant_color_opaque: String, } diff --git a/src/queries.rs b/src/queries.rs index dea1fce..498c826 100644 --- a/src/queries.rs +++ b/src/queries.rs @@ -357,13 +357,13 @@ impl<'a> VintedWrapper<'a> { let mut url = format!("https://www.vinted.{}/api/v2/catalog/items", self.host); - // Filtro search text + // Filter search text if let Some(text) = &filters.search_text { url = format!("{url}?search_text={text}"); first = false; } - // Filtro catalogo + // Filter catalogo if let Some(catalog_ids) = &filters.catalog_ids { let mut catalog_args: String = format!("&catalog_ids={}", catalog_ids); @@ -372,7 +372,7 @@ impl<'a> VintedWrapper<'a> { url = format!("{url}{catalog_args}"); } - // Filtro colores + // Filter colors if let Some(color_ids) = &filters.color_ids { let mut color_args: String = format!("&color_ids={}", color_ids); @@ -381,6 +381,7 @@ impl<'a> VintedWrapper<'a> { url = format!("{url}{color_args}"); } + //Filter brand if let Some(brand_ids) = &filters.brand_ids { let mut brand_args: String = format!("&brand_ids={}", brand_ids); @@ -389,6 +390,51 @@ impl<'a> VintedWrapper<'a> { url = format!("{url}{brand_args}"); } + //Filter sizes + if let Some(size_ids) = &filters.size_ids { + let mut size_args: String = format!("&size_ids={}", size_ids); + + VintedWrapper::substitute_if_first(&mut first, &mut size_args); + + url = format!("{url}{size_args}"); + } + + //Filter materials + if let Some(material_ids) = &filters.material_ids { + let mut material_args: String = format!("&material_ids={}", material_ids); + + VintedWrapper::substitute_if_first(&mut first, &mut material_args); + + url = format!("{url}{material_args}"); + } + //Filter country + if let Some(countries_ids) = &filters.countries_ids { + let mut countries_args: String = format!("&country_ids={}", countries_ids); + + VintedWrapper::substitute_if_first(&mut first, &mut countries_args); + + url = format!("{url}{countries_args}"); + } + + //Filter price from + if let Some(price_from) = &filters.price_from { + let mut price_from_arg: String = format!("&price_from={}", price_from); + + VintedWrapper::substitute_if_first(&mut first, &mut price_from_arg); + + url = format!("{url}{price_from_arg}"); + } + + //Filter price to + if let Some(price_to) = &filters.price_to { + let mut price_to_arg: String = format!("&price_to={}", price_to); + + VintedWrapper::substitute_if_first(&mut first, &mut price_to_arg); + + url = format!("{url}{price_to_arg}"); + } + + // Filter article_status if let Some(vec) = &filters.article_status { let querify_vec: Vec<&str> = vec.iter().map(|status| status.into()).collect(); @@ -399,6 +445,7 @@ impl<'a> VintedWrapper<'a> { url = format!("{url}{article_status_args}"); } + //Order by if let Some(sort_by) = &filters.sort_by { let sort_by_str: &str = sort_by.into(); diff --git a/src/tests/db.rs b/src/tests/db.rs index a5beebc..d453550 100644 --- a/src/tests/db.rs +++ b/src/tests/db.rs @@ -1,6 +1,6 @@ use crate::{ db::DbController, - model::filter::{brand::Brand, category::Category}, + model::filter::{brand::Brand, category::Category, country::Country}, }; use bb8_postgres::tokio_postgres::NoTls; @@ -56,3 +56,20 @@ async fn test_get_category_by_name() { .build() ); } + +#[tokio::test] +async fn test_get_country_by_iso() { + let db: DbController = DbController::new(DB_URL, POOL_SIZE, NoTls).await.unwrap(); + let c = db.get_country_by_iso(&String::from("ES")).await.unwrap(); + + assert_eq!( + c, + Country::builder() + .id(7) + .name(String::from("Espagne")) + .local_name(String::from("España")) + .iso_code(String::from("ES")) + .flag(String::from("🇪🇸")) + .build() + ); +} diff --git a/src/tests/queries.rs b/src/tests/queries.rs index 8cf390c..94e2cb8 100644 --- a/src/tests/queries.rs +++ b/src/tests/queries.rs @@ -7,6 +7,26 @@ use bb8_postgres::tokio_postgres::NoTls; const DB_URL: &str = "postgres://postgres:postgres@localhost/vinted-rs"; const POOL_SIZE: u32 = 5; +fn _calculate_color_props(hex_color1: &str) -> (f64, f64, f64) { + let color1 = _hex_to_rgb(hex_color1); + + let r_prop = color1.0 as f64 / 255.0; + let g_prop = color1.1 as f64 / 255.0; + let b_prop = color1.2 as f64 / 255.0; + + (r_prop, g_prop, b_prop) +} + +fn _hex_to_rgb(hex_color: &str) -> (u8, u8, u8) { + let hex = hex_color.trim_start_matches('#'); + + let r = u8::from_str_radix(&hex[0..2], 16).unwrap(); + let g = u8::from_str_radix(&hex[2..4], 16).unwrap(); + let b = u8::from_str_radix(&hex[4..6], 16).unwrap(); + + (r, g, b) +} + #[tokio::test] async fn test_get_item_query_text() { let vinted = VintedWrapper::new(); @@ -67,18 +87,118 @@ async fn test_get_items_brands() { } #[tokio::test] +#[ignore] async fn test_get_items_catalogs_no_db() { let vinted = VintedWrapper::new(); //Woman elements let filter: Filter = Filter::builder().catalog_ids(String::from("1904")).build(); - let _substrings = vec![ + let substrings = vec![ "women", "mujer", "femme", "kobiety", "donna", "moterims", "noi", "dames", "zeny", "damen", - "femei", "mulher", + "femei", "mulher", "beauty", "femmes", "dam", ]; match vinted.get_items(&filter, 10).await { Ok(items) => { assert_eq!(items.items.len(), 10); + items.items.iter().for_each(|item| { + let url_item: &str = &item.url; + let category = url_item.split('/').nth(3).unwrap(); + println!("{:?}", category); + assert!( + substrings.contains(&category), + "Category not found {}", + category + ); + }); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_items_by_price() { + let vinted = VintedWrapper::new(); + let min = 50; + let max = 100; + + let filter: Filter = Filter::builder().price_from(min).price_to(max).build(); + + match vinted.get_items(&filter, 10).await { + Ok(items) => { + assert_eq!(items.items.len(), 10); + let ok: bool = items.items.iter().all(|item| { + let price: f32 = item.price.parse().unwrap(); + price <= max as f32 && price >= min as f32 + }); + + assert!(ok); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_items_by_size() { + let vinted = VintedWrapper::new(); + let size_id = String::from("1568"); + let size_title = String::from("XS"); + + let filter: Filter = Filter::builder().size_ids(size_id).build(); + + match vinted.get_items(&filter, 20).await { + Ok(items) => { + assert_eq!(items.items.len(), 20); + let ok: bool = items.items.iter().all(|item| item.size_title == size_title); + + assert!(ok); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_items_by_material() { + let vinted = VintedWrapper::new(); + let id = 49; // Silk + + let filter: Filter = Filter::builder().material_ids(id.to_string()).build(); + let num: usize = 15; + + match vinted.get_items(&filter, num as u32).await { + Ok(items) => { + assert_eq!(items.items.len(), num); + } + Err(err) => match err { + VintedWrapperError::ItemNumberError => unreachable!(), + VintedWrapperError::CookiesError(_) => (), + }, + }; +} + +#[tokio::test] +async fn test_get_items_by_color() { + let vinted = VintedWrapper::new(); + let id = 7; //Red + //let hex = "#CC3300"; //Red + + //let props = calculate_color_props(hex); + + let filter: Filter = Filter::builder().color_ids(id.to_string()).build(); + + let num: usize = 20; + + match vinted.get_items(&filter, num as u32).await { + Ok(items) => { + assert_eq!(items.items.len(), num); } Err(err) => match err { VintedWrapperError::ItemNumberError => unreachable!(), From 47a69d52525dd42ed817db0be9b832f14151f1c0 Mon Sep 17 00:00:00 2001 From: pxp9 Date: Sun, 9 Jul 2023 20:25:58 +0200 Subject: [PATCH 4/4] bump the version to 0.2 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cbce8aa..16bd352 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1504,7 +1504,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vinted-rs" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bb8-postgres", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index be3a722..971f5db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vinted-rs" -version = "0.1.0" +version = "0.2.0" edition = "2021" repository = "https://github.com/TuTarea/vinted-rs" authors = ["Pepe Márquez " , "Álvaro Cabo "] diff --git a/README.md b/README.md index 8a18eb2..d253dac 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Via `cargo` you can add the library to your project's `Cargo.toml` ```toml [dependencies] -vinted-rs = "0.1.1" +vinted-rs = "0.2" ``` ## DB setup