diff --git a/components/scrapeless/actions/crawler/crawler.mjs b/components/scrapeless/actions/crawler/crawler.mjs index 0bfb0b15c3f62..0e912cc877110 100644 --- a/components/scrapeless/actions/crawler/crawler.mjs +++ b/components/scrapeless/actions/crawler/crawler.mjs @@ -4,7 +4,7 @@ export default { key: "scrapeless-crawler", name: "Crawler", description: "Crawl any website at scale and say goodbye to blocks. [See the documentation](https://apidocs.scrapeless.com/api-17509010).", - version: "0.0.2", + version: "0.0.3", type: "action", props: { scrapeless, @@ -26,9 +26,34 @@ export default { reloadProps: true, }, }, + additionalProps() { + const props = { + url: { + type: "string", + label: "URL to Crawl", + description: "If you want to crawl in batches, please refer to the SDK of the document", + }, + }; + + if (this.apiServer === "crawl") { + return { + ...props, + limitCrawlPages: { + type: "integer", + label: "Number Of Subpages", + default: 5, + description: "Max number of results to return", + }, + }; + } + + return props; + }, async run({ $ }) { const { - scrapeless, apiServer, ...inputProps + scrapeless, + apiServer, + ...inputProps } = this; const browserOptions = { @@ -40,9 +65,11 @@ export default { let response; + const client = await scrapeless._scrapelessClient(); + if (apiServer === "crawl") { response = - await scrapeless._scrapelessClient().scrapingCrawl.crawl.crawlUrl(inputProps.url, { + await client.scrapingCrawl.crawl.crawlUrl(inputProps.url, { limit: inputProps.limitCrawlPages, browserOptions, }); @@ -50,40 +77,16 @@ export default { if (apiServer === "scrape") { response = - await scrapeless._scrapelessClient().scrapingCrawl.scrape.scrapeUrl(inputProps.url, { + await client.scrapingCrawl.scrape.scrapeUrl(inputProps.url, { browserOptions, }); } if (response?.status === "completed" && response?.data) { - $.export("$summary", `Successfully retrieved crawling results for ${inputProps.url}`); + $.export("$summary", `Successfully retrieved crawling results for \`${inputProps.url}\``); return response.data; } else { throw new Error(response?.error || "Failed to retrieve crawling results"); } }, - additionalProps() { - const { apiServer } = this; - - const props = {}; - - if (apiServer === "crawl" || apiServer === "scrape") { - props.url = { - type: "string", - label: "URL to Crawl", - description: "If you want to crawl in batches, please refer to the SDK of the document", - }; - } - - if (apiServer === "crawl") { - props.limitCrawlPages = { - type: "integer", - label: "Number Of Subpages", - default: 5, - description: "Max number of results to return", - }; - } - - return props; - }, }; diff --git a/components/scrapeless/actions/get-scrape-result/get-scrape-result.mjs b/components/scrapeless/actions/get-scrape-result/get-scrape-result.mjs index cc4583796c49c..3329814d94b85 100644 --- a/components/scrapeless/actions/get-scrape-result/get-scrape-result.mjs +++ b/components/scrapeless/actions/get-scrape-result/get-scrape-result.mjs @@ -4,7 +4,7 @@ export default { key: "scrapeless-get-scrape-result", name: "Get Scrape Result", description: "Retrieve the result of a completed scraping job. [See the documentation](https://apidocs.scrapeless.com/api-11949853)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { scrapeless, diff --git a/components/scrapeless/actions/scraping-api/scraping-api.mjs b/components/scrapeless/actions/scraping-api/scraping-api.mjs index 1f66a15c097fc..336c527f7e778 100644 --- a/components/scrapeless/actions/scraping-api/scraping-api.mjs +++ b/components/scrapeless/actions/scraping-api/scraping-api.mjs @@ -1,10 +1,19 @@ import scrapeless from "../../scrapeless.app.mjs"; import { log } from "../../common/utils.mjs"; +import { + GOOGLE_DOMAIN_OPTIONS, GOOGLE_SEARCH_LR_OPTIONS, + GOOGLE_SEARCH_TBM_OPTIONS, + GOOGLE_TRENDS_DATA_TYPE_OPTIONS, + GOOGLE_TRENDS_GEO_OPTIONS, + GOOGLE_TRENDS_CATEGORY_OPTIONS, + GOOGLE_TRENDS_PROPERTY_OPTIONS, +} from "../../common/constants.mjs"; + export default { key: "scrapeless-scraping-api", name: "Scraping API", description: "Endpoints for fresh, structured data from 100+ popular sites. [See the documentation](https://apidocs.scrapeless.com/api-12919045).", - version: "0.0.1", + version: "0.0.2", type: "action", props: { scrapeless, @@ -18,10 +27,246 @@ export default { label: "Google Search", value: "googleSearch", }, + { + label: "Google Trends", + value: "googleTrends", + }, ], reloadProps: true, }, }, + additionalProps() { + const { apiServer } = this; + + const props = {}; + + if (apiServer === "googleSearch") { + props.g_search_query = { + type: "string", + label: "Search Query", + description: "Parameter defines the query you want to search. You can use anything that you would use in a regular Google search. e.g. inurl:, site:, intitle:. We also support advanced search query parameters such as as_dt and as_eq.", + default: "coffee", + }; + + props.g_search_language = { + type: "string", + label: "Language", + description: "Parameter defines the language to use for the Google search. It's a two-letter language code. (e.g., en for English, es for Spanish, or fr for French).", + default: "en", + }; + + props.g_search_country = { + type: "string", + label: "Country", + description: "Parameter defines the country to use for the Google search. It's a two-letter country code. (e.g., us for the United States, uk for United Kingdom, or fr for France).", + default: "us", + }; + + props.g_search_google_domain = { + type: "string", + label: "Domain", + description: "Parameter defines the Google domain to use. It defaults to 'google.com'.", + default: "google.com", + options: GOOGLE_DOMAIN_OPTIONS.map((domain) => ({ + label: domain.label, + value: domain.value, + })), + optional: true, + }; + + props.g_search_location = { + type: "string", + label: "Location", + default: "", + description: "Parameter defines from where you want the search to originate. If several locations match the location requested, we'll pick the most popular one. The location and uule parameters can't be used together. It is recommended to specify location at the city level in order to simulate a real userโ€™s search. If location is omitted, the search may take on the location of the proxy.", + optional: true, + }; + + props.g_search_start = { + type: "integer", + label: "Result Offset", + description: "Parameter defines the result offset. It skips the given number of results. It's used for pagination. (e.g., `0` (default) is the first page of results, `10` is the 2nd page of results, `20` is the 3rd page of results, etc.).", + default: 0, + optional: true, + }; + + props.g_search_num = { + type: "integer", + label: "Number of Results", + description: "Parameter defines the maximum number of results to return. (e.g., `10` (default) returns 10 results, `40` returns 40 results, and `100` returns 100 results).", + default: 10, + optional: true, + }; + + props.g_search_ludocid = { + type: "string", + label: "Google Place ID", + description: "Parameter defines the id (`CID`) of the Google My Business listing you want to scrape. Also known as Google Place ID.", + default: "", + optional: true, + }; + + props.g_search_kgmid = { + type: "string", + label: "Google Knowledge Graph ID", + description: "Parameter defines the id (`KGMID`) of the Google Knowledge Graph listing you want to scrape. Also known as Google Knowledge Graph ID. Searches with `kgmid` parameter will return results for the originally encrypted search parameters. For some searches, `kgmid` may override all other parameters except `start`, and `num` parameters.", + default: "", + optional: true, + }; + + props.g_search_ibp = { + type: "string", + label: "Google Element Rendering", + default: "", + description: "Parameter is responsible for rendering layouts and expansions for some elements (e.g., `gwp;0,7` to expand searches with `ludocid` for expanded knowledge graph).", + optional: true, + }; + + props.g_search_cr = { + type: "string", + label: "Set Multiple Countries", + default: "", + description: "Parameter defines one or multiple countries to limit the search to. It uses country{two-letter upper-case country code} to specify countries and | as a delimiter. (e.g., countryFR|countryDE will only search French and German pages).", + optional: true, + }; + + props.g_search_lr = { + type: "string", + label: "Set Multiple Languages", + default: "", + description: "Parameter defines one or multiple languages to limit the search to. It uses lang_{two-letter language code} to specify languages and | as a delimiter. (e.g., lang_fr|lang_de will only search French and German pages).", + optional: true, + options: GOOGLE_SEARCH_LR_OPTIONS.map((language) => ({ + label: language.label, + value: language.value, + })), + }; + + props.g_search_tbs = { + type: "string", + label: "Time Range", + default: "", + description: "(to be searched) parameter defines advanced search parameters that aren't possible in the regular query field. (e.g., advanced search for patents, dates, news, videos, images, apps, or text contents).", + optional: true, + }; + + props.g_search_safe = { + type: "string", + label: "Safe Search", + default: "", + description: "Parameter defines the level of filtering for adult content. It can be set to `active` or `off`, by default Google will blur explicit content.", + optional: true, + }; + + props.g_search_nfpr = { + label: "Exclude Auto-corrected Results", + type: "string", + default: "", + description: "Parameter defines whether to exclude auto-corrected results. It can be set to `true` or `false`, by default Google will include auto-corrected results.", + optional: true, + }; + + props.g_search_filter = { + label: "Results Filtering", + type: "string", + default: "", + description: "Parameter defines if the filters for 'Similar Results' and 'Omitted Results' are on or off. It can be set to 1 (default) to enable these filters, or 0 to disable these filters.", + optional: true, + }; + + props.g_search_tbm = { + label: "Search Type", + type: "string", + default: "", + description: "(to be matched) parameter defines the type of search you want to do.\n\nIt can be set to:\n`(no tbm parameter)`: `regular Google Search`,\n`isch`: `Google Images API`,\n`lcl` - `Google Local API`\n`vid`: `Google Videos API`,\n`nws`: `Google News API`,\n`shop`: `Google Shopping API`,\n`pts`: `Google Patents API`,\nor any other Google service.", + optional: true, + options: GOOGLE_SEARCH_TBM_OPTIONS.map((tbm) => ({ + label: tbm.label, + value: tbm.value, + })), + }; + } else if (apiServer === "googleTrends") { + props.g_trends_query = { + type: "string", + label: "Search Query", + description: "Parameter defines the query or queries you want to search. You can use anything that you would use in a regular Google Trends search. The maximum number of queries per search is 5 (this only applies to `interest_over_time` and `compared_breakdown_by_region` data_type, other types of data will only accept 1 query per search).", + default: "Mercedes-Benz,BMW X5", + }; + + props.g_trends_data_type = { + type: "string", + label: "Data Type", + description: "The supported types are: `autocomplete`,`interest_over_time`,`compared_breakdown_by_region`,`interest_by_subregion`,`related_queries`,`related_topics`.", + default: "interest_over_time", + options: GOOGLE_TRENDS_DATA_TYPE_OPTIONS.map((dataType) => ({ + label: dataType.label, + value: dataType.value, + })), + }; + + props.g_trends_date = { + type: "string", + label: "Date", + description: "The supported dates are: `now 1-H`, `now 4-H`, `now 1-d`, `now 7-d`, `today 1-m`, `today 3-m`, `today 12-m`, `today 5-y`, `all`. You can also pass custom values: Dates from 2004 to present: `yyyy-mm-dd yyyy-mm-dd` (e.g. `2021-10-15 2022-05-25`). Dates with hours within a week range: `yyyy-mm-ddThh yyyy-mm-ddThh` (e.g. `2022-05-19T10 2022-05-24T22`). Hours will be calculated depending on the tz (time zone) parameter.", + default: "today 1-m", + optional: true, + }; + + props.g_trends_language = { + type: "string", + label: "Language", + description: "Parameter defines the language to use for the Google Trends search. It's a two-letter language code. (e.g., `en` for English, `es` for Spanish, or `fr` for French).", + default: "en", + optional: true, + }; + + props.g_trends_time_zone = { + type: "string", + label: "Time zone", + description: "Time zone offset. default is `420`.", + default: "420", + optional: true, + }; + + props.g_trends_geo = { + type: "string", + label: "Location", + description: "Parameter defines the location from where you want the search to originate. It defaults to Worldwide (activated when the value of geo parameter is not set or empty).", + default: "", + optional: true, + options: GOOGLE_TRENDS_GEO_OPTIONS.map((geo) => ({ + label: geo.label, + value: geo.value, + })), + }; + + props.g_trends_category = { + type: "string", + label: "Category", + description: "Parameter is used to define a search category. The default value is set to `0` (\"All categories\").", + default: "", + optional: true, + options: GOOGLE_TRENDS_CATEGORY_OPTIONS.map((category) => ({ + label: category.label, + value: category.value, + })), + }; + + props.g_trends_property = { + type: "string", + label: "Property", + description: "Parameter is used for sorting results by property. The default property is set to `Web Search` (activated when the value of property parameter is not set or empty). Other available options: `images` - Image Search `news` - News Search `froogle` - Google Shopping `youtube` - YouTube Search", + default: "", + optional: true, + options: GOOGLE_TRENDS_PROPERTY_OPTIONS.map((property) => ({ + label: property.label, + value: property.value, + })), + }; + } + + return props; + }, async run({ $ }) { const { scrapeless, apiServer, ...inputProps @@ -34,6 +279,7 @@ export default { let submitData; let job; + const client = await scrapeless._scrapelessClient(); // pre check if the job is already in the context if (run?.context?.job) { @@ -44,19 +290,49 @@ export default { submitData = { actor: "scraper.google.search", input: { - q: inputProps.q, - hl: inputProps.hl, - gl: inputProps.gl, + q: inputProps.g_search_query, + hl: inputProps.g_search_language, + gl: inputProps.g_search_country, + google_domain: inputProps.g_search_google_domain, + location: inputProps.g_search_location, + start: inputProps.g_search_start, + num: inputProps.g_search_num, + ludocid: inputProps.g_search_ludocid, + kgmid: inputProps.g_search_kgmid, + ibp: inputProps.g_search_ibp, + cr: inputProps.g_search_cr, + lr: inputProps.g_search_lr, + tbs: inputProps.g_search_tbs, + safe: inputProps.g_search_safe, + nfpr: inputProps.g_search_nfpr, + filter: inputProps.g_search_filter, + tbm: inputProps.g_search_tbm, + }, + }; + } else if (apiServer === "googleTrends") { + submitData = { + actor: "scraper.google.trends", + input: { + q: inputProps.g_trends_query, + data_type: inputProps.g_trends_data_type, + date: inputProps.g_trends_date, + hl: inputProps.g_trends_language, + tz: inputProps.g_trends_time_zone, + geo: inputProps.g_trends_geo, + cat: inputProps.g_trends_category, + property: inputProps.g_trends_property, }, }; } + log("submitData", submitData, "apiServer", apiServer, "inputProps", inputProps); + if (!submitData) { throw new Error("No actor found"); } // 1. Create a new scraping job if (!job) { - job = await scrapeless._scrapelessClient().deepserp.createTask({ + job = await client.deepserp.createTask({ actor: submitData.actor, input: submitData.input, }); @@ -77,7 +353,7 @@ export default { } else if (run.runs > MAX_RETRIES ) { throw new Error("Max retries reached"); } else if (job && job?.data?.taskId) { - const result = await scrapeless._scrapelessClient().deepserp.getTaskResult(job.data.taskId); + const result = await client.deepserp.getTaskResult(job.data.taskId); if (result.status === 200) { $.export("$summary", "Successfully retrieved scraping results"); return result.data; @@ -89,36 +365,6 @@ export default { } else { throw new Error("No job found"); } - }, - additionalProps() { - const { apiServer } = this; - - const props = {}; - - if (apiServer === "googleSearch") { - props.q = { - type: "string", - label: "Search Query", - description: "Parameter defines the query you want to search. You can use anything that you would use in a regular Google search. e.g. inurl:, site:, intitle:. We also support advanced search query parameters such as as_dt and as_eq.", - default: "coffee", - }; - - props.hl = { - type: "string", - label: "Language", - description: "Parameter defines the language to use for the Google search. It's a two-letter language code. (e.g., en for English, es for Spanish, or fr for French).", - default: "en", - }; - - props.gl = { - type: "string", - label: "Country", - description: "Parameter defines the country to use for the Google search. It's a two-letter country code. (e.g., us for the United States, uk for United Kingdom, or fr for France).", - default: "us", - }; - } - return props; - }, }; diff --git a/components/scrapeless/actions/submit-scrape-job/submit-scrape-job.mjs b/components/scrapeless/actions/submit-scrape-job/submit-scrape-job.mjs index 18562bc90782a..1a24486cb9d00 100644 --- a/components/scrapeless/actions/submit-scrape-job/submit-scrape-job.mjs +++ b/components/scrapeless/actions/submit-scrape-job/submit-scrape-job.mjs @@ -6,7 +6,7 @@ export default { key: "scrapeless-submit-scrape-job", name: "Submit Scrape Job", description: "Submit a new web scraping job with specified target URL and extraction rules. [See the documentation](https://apidocs.scrapeless.com/api-11949852)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { scrapeless, diff --git a/components/scrapeless/actions/universal-scraping-api/universal-scraping-api.mjs b/components/scrapeless/actions/universal-scraping-api/universal-scraping-api.mjs index a5ab27698d1f8..1ba6706e3dc63 100644 --- a/components/scrapeless/actions/universal-scraping-api/universal-scraping-api.mjs +++ b/components/scrapeless/actions/universal-scraping-api/universal-scraping-api.mjs @@ -5,7 +5,7 @@ export default { key: "scrapeless-universal-scraping-api", name: "Universal Scraping API", description: "Access any website at scale and say goodbye to blocks. [See the documentation](https://apidocs.scrapeless.com/api-11949854).", - version: "0.0.1", + version: "0.0.2", type: "action", props: { scrapeless, @@ -23,29 +23,6 @@ export default { reloadProps: true, }, }, - async run({ $ }) { - const { - scrapeless, - apiServer, ...inputProps - } = this; - - if (apiServer === "webUnlocker") { - const response = await scrapeless._scrapelessClient().universal.scrape({ - actor: "unlocker.webunlocker", - input: { - url: inputProps.url, - headless: inputProps.headless, - js_render: inputProps.jsRender, - }, - proxy: { - country: inputProps.country, - }, - }); - - $.export("$summary", "Successfully retrieved scraping results for Web Unlocker"); - return response; - } - }, additionalProps() { const { apiServer } = this; @@ -83,4 +60,30 @@ export default { return props; }, + async run({ $ }) { + const { + scrapeless, + apiServer, ...inputProps + } = this; + + const client = await scrapeless._scrapelessClient(); + + if (apiServer === "webUnlocker") { + const response = await client.universal.scrape({ + actor: "unlocker.webunlocker", + input: { + url: inputProps.url, + headless: inputProps.headless, + js_render: inputProps.jsRender, + }, + proxy: { + country: inputProps.country, + }, + }); + + $.export("$summary", "Successfully retrieved scraping results for Web Unlocker"); + return response; + } + }, + }; diff --git a/components/scrapeless/common/constants.mjs b/components/scrapeless/common/constants.mjs index 1fa6ac6532b13..f09914c5e6bf8 100644 --- a/components/scrapeless/common/constants.mjs +++ b/components/scrapeless/common/constants.mjs @@ -7,1116 +7,6845 @@ export const COUNTRY_OPTIONS = [ emoji: "๐ŸŒŽ", }, { - "regionId": 3, - "value": "AL", - "label": "Albania", - "signal": 2, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฑ", + regionId: 3, + value: "AL", + label: "Albania", + signal: 2, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ฑ", }, { - "regionId": 4, - "value": "DZ", - "label": "Algeria", - "signal": 3, - "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฟ", + regionId: 4, + value: "DZ", + label: "Algeria", + signal: 3, + emoji: "๐Ÿ‡ฉ๐Ÿ‡ฟ", }, { - "regionId": 26, - "value": "BT", - "label": "Bhutan", - "signal": 2, - "emoji": "๐Ÿ‡ง๐Ÿ‡น", + regionId: 26, + value: "BT", + label: "Bhutan", + signal: 2, + emoji: "๐Ÿ‡ง๐Ÿ‡น", }, { - "regionId": 27, - "value": "BO", - "label": "Bolivia", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡ด", + regionId: 27, + value: "BO", + label: "Bolivia", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡ด", + }, + { + regionId: 15, + value: "AT", + label: "Austria", + signal: 3, + emoji: "๐Ÿ‡ฆ๐Ÿ‡น", + }, + { + regionId: 18, + value: "BH", + label: "Bahrain", + signal: 2, + emoji: "๐Ÿ‡ง๐Ÿ‡ญ", + }, + { + regionId: 11, + value: "AR", + label: "Argentina", + signal: 2, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ท", + }, + { + regionId: 16, + value: "AZ", + label: "Azerbaijan", + signal: 3, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ฟ", + }, + { + regionId: 57, + value: "CY", + label: "Cyprus", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡พ", + }, + { + regionId: 36, + value: "BI", + label: "Burundi", + signal: 1, + emoji: "๐Ÿ‡ง๐Ÿ‡ฎ", + }, + { + regionId: 38, + value: "CM", + label: "Cameroon", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡ฒ", + }, + { + regionId: 55, + value: "HR", + label: "Croatia", + signal: 3, + emoji: "๐Ÿ‡ญ๐Ÿ‡ท", + }, + { + regionId: 62, + value: "DO", + label: "Dominican Republic", + signal: 2, + emoji: "๐Ÿ‡ฉ๐Ÿ‡ด", + }, + { + regionId: 14, + value: "AU", + label: "Australia", + signal: 3, + emoji: "๐Ÿ‡ฆ๐Ÿ‡บ", + }, + { + regionId: 21, + value: "BY", + label: "Belarus", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡พ", + }, + { + regionId: 7, + value: "AO", + label: "Angola", + signal: 2, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ด", + }, + { + regionId: 34, + value: "BG", + label: "Bulgaria", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡ฌ", + }, + { + regionId: 51, + value: "CD", + label: "Democratic Republic of the Congo", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡ฉ", + }, + { + regionId: 13, + value: "AW", + label: "Aruba", + signal: 2, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ผ", + }, + { + regionId: 12, + value: "AM", + label: "Armenia", + signal: 2, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ฒ", + }, + { + regionId: 19, + value: "BD", + label: "Bangladesh", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡ฉ", + }, + { + regionId: 22, + value: "BE", + label: "Belgium", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡ช", + }, + { + regionId: 37, + value: "KH", + label: "Cambodia", + signal: 2, + emoji: "๐Ÿ‡ฐ๐Ÿ‡ญ", + }, + { + regionId: 58, + value: "CZ", + label: "Czech Republic", + signal: 3, + emoji: "๐Ÿ‡จ๐Ÿ‡ฟ", + }, + { + regionId: 59, + value: "DK", + label: "Denmark", + signal: 2, + emoji: "๐Ÿ‡ฉ๐Ÿ‡ฐ", + }, + { + regionId: 35, + value: "BF", + label: "Burkina Faso", + signal: 2, + emoji: "๐Ÿ‡ง๐Ÿ‡ซ", + }, + { + regionId: 39, + value: "CA", + label: "Canada", + signal: 3, + emoji: "๐Ÿ‡จ๐Ÿ‡ฆ", + }, + { + regionId: 56, + value: "CU", + label: "Cuba", + signal: 1, + emoji: "๐Ÿ‡จ๐Ÿ‡บ", + }, + { + regionId: 45, + value: "CN", + label: "China", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡ณ", + }, + { + regionId: 80, + value: "GM", + label: "Gambia The", + signal: 1, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ฒ", + }, + { + regionId: 81, + value: "GE", + label: "Georgia", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ช", + }, + { + regionId: 44, + value: "CL", + label: "Chile", + signal: 3, + emoji: "๐Ÿ‡จ๐Ÿ‡ฑ", + }, + { + regionId: 50, + value: "CG", + label: "Congo", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡ฌ", + }, + { + regionId: 54, + value: "CI", + label: "Cote D'Ivoire (Ivory Coast)", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡ฎ", + }, + { + regionId: 79, + value: "GA", + label: "Gabon", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ฆ", + }, + { + regionId: 48, + value: "CO", + label: "Colombia", + signal: 3, + emoji: "๐Ÿ‡จ๐Ÿ‡ด", + }, + { + regionId: 53, + value: "CR", + label: "Costa Rica", + signal: 3, + emoji: "๐Ÿ‡จ๐Ÿ‡ท", + }, + { + regionId: 102, + value: "ID", + label: "Indonesia", + signal: 3, + emoji: "๐Ÿ‡ฎ๐Ÿ‡ฉ", + }, + { + regionId: 77, + value: "PF", + label: "French Polynesia", + signal: 1, + emoji: "๐Ÿ‡ต๐Ÿ‡ซ", + }, + { + regionId: 127, + value: "LU", + label: "Luxembourg", + signal: 3, + emoji: "๐Ÿ‡ฑ๐Ÿ‡บ", + }, + { + regionId: 135, + value: "MT", + label: "Malta", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡น", + }, + { + regionId: 134, + value: "ML", + label: "Mali", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฑ", + }, + { + regionId: 142, + value: "MX", + label: "Mexico", + signal: 4, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฝ", + }, + { + regionId: 140, + value: "MU", + label: "Mauritius", + signal: 1, + emoji: "๐Ÿ‡ฒ๐Ÿ‡บ", + }, + { + regionId: 130, + value: "MG", + label: "Madagascar", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฌ", + }, + { + regionId: 131, + value: "MW", + label: "Malawi", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ผ", + }, + { + regionId: 147, + value: "ME", + label: "Montenegro", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ช", + }, + { + regionId: 156, + value: "NL", + label: "Netherlands", + signal: 3, + emoji: "๐Ÿ‡ณ๐Ÿ‡ฑ", + }, + { + regionId: 128, + value: "MO", + label: "Macau S.A.R.", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ด", + }, + { + regionId: 144, + value: "MD", + label: "Moldova", + signal: 3, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฉ", + }, + { + regionId: 132, + value: "MY", + label: "Malaysia", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡พ", + }, + { + regionId: 146, + value: "MN", + label: "Mongolia", + signal: 3, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ณ", + }, + { + regionId: 136, + value: "IM", + label: "Man (Isle of)", + signal: 2, + emoji: "๐Ÿ‡ฎ๐Ÿ‡ฒ", + }, + { + regionId: 73, + value: "FJ", + label: "Fiji Islands", + signal: 1, + emoji: "๐Ÿ‡ซ๐Ÿ‡ฏ", + }, + { + regionId: 74, + value: "FI", + label: "Finland", + signal: 2, + emoji: "๐Ÿ‡ซ๐Ÿ‡ฎ", + }, + { + regionId: 75, + value: "FR", + label: "France", + signal: 4, + emoji: "๐Ÿ‡ซ๐Ÿ‡ท", + }, + { + regionId: 101, + value: "IN", + label: "India", + signal: 2, + emoji: "๐Ÿ‡ฎ๐Ÿ‡ณ", + }, + { + regionId: 100, + value: "IS", + label: "Iceland", + signal: 2, + emoji: "๐Ÿ‡ฎ๐Ÿ‡ธ", + }, + { + regionId: 129, + value: "MK", + label: "North Macedonia", + signal: 3, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฐ", + }, + { + regionId: 158, + value: "NZ", + label: "New Zealand", + signal: 3, + emoji: "๐Ÿ‡ณ๐Ÿ‡ฟ", + }, + { + regionId: 159, + value: "NI", + label: "Nicaragua", + signal: 2, + emoji: "๐Ÿ‡ณ๐Ÿ‡ฎ", + }, + { + regionId: 165, + value: "NO", + label: "Norway", + signal: 2, + emoji: "๐Ÿ‡ณ๐Ÿ‡ด", + }, + { + regionId: 95, + value: "HT", + label: "Haiti", + signal: 2, + emoji: "๐Ÿ‡ญ๐Ÿ‡น", + }, + { + regionId: 97, + value: "HN", + label: "Honduras", + signal: 2, + emoji: "๐Ÿ‡ญ๐Ÿ‡ณ", + }, + { + regionId: 99, + value: "HU", + label: "Hungary", + signal: 3, + emoji: "๐Ÿ‡ญ๐Ÿ‡บ", + }, + { + regionId: 94, + value: "GY", + label: "Guyana", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡พ", + }, + { + regionId: 98, + value: "HK", + label: "Hong Kong S.A.R.", + signal: 2, + emoji: "๐Ÿ‡ญ๐Ÿ‡ฐ", + }, + { + regionId: 161, + value: "NG", + label: "Nigeria", + signal: 4, + emoji: "๐Ÿ‡ณ๐Ÿ‡ฌ", + }, + { + regionId: 166, + value: "OM", + label: "Oman", + signal: 3, + emoji: "๐Ÿ‡ด๐Ÿ‡ฒ", + }, + { + regionId: 173, + value: "PE", + label: "Peru", + signal: 2, + emoji: "๐Ÿ‡ต๐Ÿ‡ช", + }, + { + regionId: 167, + value: "PK", + label: "Pakistan", + signal: 4, + emoji: "๐Ÿ‡ต๐Ÿ‡ฐ", + }, + { + regionId: 169, + value: "PS", + label: "Palestinian Territory Occupied", + signal: 3, + emoji: "๐Ÿ‡ต๐Ÿ‡ธ", + }, + { + regionId: 171, + value: "PG", + label: "Papua new Guinea", + signal: 2, + emoji: "๐Ÿ‡ต๐Ÿ‡ฌ", + }, + { + regionId: 176, + value: "PL", + label: "Poland", + signal: 4, + emoji: "๐Ÿ‡ต๐Ÿ‡ฑ", + }, + { + regionId: 172, + value: "PY", + label: "Paraguay", + signal: 2, + emoji: "๐Ÿ‡ต๐Ÿ‡พ", + }, + { + regionId: 170, + value: "PA", + label: "Panama", + signal: 2, + emoji: "๐Ÿ‡ต๐Ÿ‡ฆ", + }, + { + regionId: 174, + value: "PH", + label: "Philippines", + signal: 3, + emoji: "๐Ÿ‡ต๐Ÿ‡ญ", + }, + { + regionId: 70, + value: "ET", + label: "Ethiopia", + signal: 2, + emoji: "๐Ÿ‡ช๐Ÿ‡น", + }, + { + regionId: 90, + value: "GT", + label: "Guatemala", + signal: 3, + emoji: "๐Ÿ‡ฌ๐Ÿ‡น", + }, + { + regionId: 85, + value: "GR", + label: "Greece", + signal: 4, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ท", + }, + { + regionId: 93, + value: "GW", + label: "Guinea-Bissau", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ผ", + }, + { + regionId: 69, + value: "EE", + label: "Estonia", + signal: 3, + emoji: "๐Ÿ‡ช๐Ÿ‡ช", + }, + { + regionId: 92, + value: "GN", + label: "Guinea", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ณ", + }, + { + regionId: 194, + value: "SA", + label: "Saudi Arabia", + signal: 3, + emoji: "๐Ÿ‡ธ๐Ÿ‡ฆ", + }, + { + regionId: 196, + value: "RS", + label: "Serbia", + signal: 2, + emoji: "๐Ÿ‡ท๐Ÿ‡ธ", + }, + { + regionId: 17, + value: "BS", + label: "The Bahamas", + signal: 2, + emoji: "๐Ÿ‡ง๐Ÿ‡ธ", + }, + { + regionId: 64, + value: "EC", + label: "Ecuador", + signal: 2, + emoji: "๐Ÿ‡ช๐Ÿ‡จ", + }, + { + regionId: 87, + value: "GD", + label: "Grenada", + signal: 1, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ฉ", + }, + { + regionId: 28, + value: "BA", + label: "Bosnia and Herzegovina", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡ฆ", + }, + { + regionId: 31, + value: "BR", + label: "Brazil", + signal: 3, + emoji: "๐Ÿ‡ง๐Ÿ‡ท", + }, + { + regionId: 82, + value: "DE", + label: "Germany", + signal: 3, + emoji: "๐Ÿ‡ฉ๐Ÿ‡ช", + }, + { + regionId: 83, + value: "GH", + label: "Ghana", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ญ", + }, + { + regionId: 183, + value: "RW", + label: "Rwanda", + signal: 2, + emoji: "๐Ÿ‡ท๐Ÿ‡ผ", + }, + { + regionId: 195, + value: "SN", + label: "Senegal", + signal: 3, + emoji: "๐Ÿ‡ธ๐Ÿ‡ณ", + }, + { + regionId: 219, + value: "TH", + label: "Thailand", + signal: 2, + emoji: "๐Ÿ‡น๐Ÿ‡ญ", + }, + { + regionId: 217, + value: "TJ", + label: "Tajikistan", + signal: 2, + emoji: "๐Ÿ‡น๐Ÿ‡ฏ", + }, + { + regionId: 218, + value: "TZ", + label: "Tanzania", + signal: 2, + emoji: "๐Ÿ‡น๐Ÿ‡ฟ", + }, + { + regionId: 65, + value: "EG", + label: "Egypt", + signal: 3, + emoji: "๐Ÿ‡ช๐Ÿ‡ฌ", + }, + { + regionId: 66, + value: "SV", + label: "El Salvador", + signal: 2, + emoji: "๐Ÿ‡ธ๐Ÿ‡ป", + }, + { + regionId: 84, + value: "GI", + label: "Gibraltar", + signal: 1, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ฎ", + }, + { + regionId: 188, + value: "VC", + label: "Saint Vincent And The Grenadines", + signal: 2, + emoji: "๐Ÿ‡ป๐Ÿ‡จ", + }, + { + regionId: 200, + value: "SK", + label: "Slovakia", + signal: 3, + emoji: "๐Ÿ‡ธ๐Ÿ‡ฐ", + }, + { + regionId: 201, + value: "SI", + label: "Slovenia", + signal: 2, + emoji: "๐Ÿ‡ธ๐Ÿ‡ฎ", + }, + { + regionId: 223, + value: "TT", + label: "Trinidad And Tobago", + signal: 2, + emoji: "๐Ÿ‡น๐Ÿ‡น", + }, + { + regionId: 224, + value: "TN", + label: "Tunisia", + signal: 4, + emoji: "๐Ÿ‡น๐Ÿ‡ณ", + }, + { + regionId: 225, + value: "TR", + label: "Turkey", + signal: 3, + emoji: "๐Ÿ‡น๐Ÿ‡ท", + }, + { + regionId: 229, + value: "UG", + label: "Uganda", + signal: 2, + emoji: "๐Ÿ‡บ๐Ÿ‡ฌ", + }, + { + regionId: 227, + value: "TC", + label: "Turks And Caicos Islands", + signal: 2, + emoji: "๐Ÿ‡น๐Ÿ‡จ", + }, + { + regionId: 230, + value: "UA", + label: "Ukraine", + signal: 2, + emoji: "๐Ÿ‡บ๐Ÿ‡ฆ", + }, + { + regionId: 220, + value: "TG", + label: "Togo", + signal: 2, + emoji: "๐Ÿ‡น๐Ÿ‡ฌ", + }, + { + regionId: 233, + value: "US", + label: "United States", + signal: 4, + emoji: "๐Ÿ‡บ๐Ÿ‡ธ", + }, + { + regionId: 177, + value: "PT", + label: "Portugal", + signal: 3, + emoji: "๐Ÿ‡ต๐Ÿ‡น", + }, + { + regionId: 178, + value: "PR", + label: "Puerto Rico", + signal: 2, + emoji: "๐Ÿ‡ต๐Ÿ‡ท", + }, + { + regionId: 231, + value: "AE", + label: "United Arab Emirates", + signal: 3, + emoji: "๐Ÿ‡ฆ๐Ÿ‡ช", + }, + { + regionId: 232, + value: "GB", + label: "United Kingdom", + signal: 2, + emoji: "๐Ÿ‡ฌ๐Ÿ‡ง", + }, + { + regionId: 240, + value: "VN", + label: "Vietnam", + signal: 3, + emoji: "๐Ÿ‡ป๐Ÿ‡ณ", + }, + { + regionId: 112, + value: "KZ", + label: "Kazakhstan", + signal: 4, + emoji: "๐Ÿ‡ฐ๐Ÿ‡ฟ", + }, + { + regionId: 106, + value: "IL", + label: "Israel", + signal: 4, + emoji: "๐Ÿ‡ฎ๐Ÿ‡ฑ", + }, + { + regionId: 108, + value: "JM", + label: "Jamaica", + signal: 2, + emoji: "๐Ÿ‡ฏ๐Ÿ‡ฒ", + }, + { + regionId: 242, + value: "VI", + label: "Virgin Islands (US)", + signal: 1, + emoji: "๐Ÿ‡ป๐Ÿ‡ฎ", + }, + { + regionId: 118, + value: "KG", + label: "Kyrgyzstan", + signal: 3, + emoji: "๐Ÿ‡ฐ๐Ÿ‡ฌ", + }, + { + regionId: 120, + value: "LV", + label: "Latvia", + signal: 2, + emoji: "๐Ÿ‡ฑ๐Ÿ‡ป", + }, + { + regionId: 154, + value: "NP", + label: "Nepal", + signal: 2, + emoji: "๐Ÿ‡ณ๐Ÿ‡ต", + }, + { + regionId: 246, + value: "ZM", + label: "Zambia", + signal: 2, + emoji: "๐Ÿ‡ฟ๐Ÿ‡ฒ", + }, + { + regionId: 124, + value: "LY", + label: "Libya", + signal: 1, + emoji: "๐Ÿ‡ฑ๐Ÿ‡พ", + }, + { + regionId: 152, + value: "NA", + label: "Namibia", + signal: 1, + emoji: "๐Ÿ‡ณ๐Ÿ‡ฆ", + }, + { + regionId: 180, + value: "RE", + label: "Reunion", + signal: 1, + emoji: "๐Ÿ‡ท๐Ÿ‡ช", + }, + { + regionId: 179, + value: "QA", + label: "Qatar", + signal: 2, + emoji: "๐Ÿ‡ถ๐Ÿ‡ฆ", + }, + { + regionId: 182, + value: "RU", + label: "Russia", + signal: 2, + emoji: "๐Ÿ‡ท๐Ÿ‡บ", + }, + { + regionId: 110, + value: "JE", + label: "Jersey", + signal: 1, + emoji: "๐Ÿ‡ฏ๐Ÿ‡ช", + }, + { + regionId: 117, + value: "KW", + label: "Kuwait", + signal: 4, + emoji: "๐Ÿ‡ฐ๐Ÿ‡ผ", + }, + { + regionId: 126, + value: "LT", + label: "Lithuania", + signal: 2, + emoji: "๐Ÿ‡ฑ๐Ÿ‡น", + }, + { + regionId: 149, + value: "MA", + label: "Morocco", + signal: 3, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฆ", + }, + { + regionId: 105, + value: "IE", + label: "Ireland", + signal: 3, + emoji: "๐Ÿ‡ฎ๐Ÿ‡ช", + }, + { + regionId: 107, + value: "IT", + label: "Italy", + signal: 3, + emoji: "๐Ÿ‡ฎ๐Ÿ‡น", + }, + { + regionId: 151, + value: "MM", + label: "Myanmar", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฒ", + }, + { + regionId: 247, + value: "ZW", + label: "Zimbabwe", + signal: 1, + emoji: "๐Ÿ‡ฟ๐Ÿ‡ผ", + }, + { + regionId: 122, + value: "LS", + label: "Lesotho", + signal: 1, + emoji: "๐Ÿ‡ฑ๐Ÿ‡ธ", + }, + { + regionId: 245, + value: "YE", + label: "Yemen", + signal: 2, + emoji: "๐Ÿ‡พ๐Ÿ‡ช", + }, + { + regionId: 181, + value: "RO", + label: "Romania", + signal: 2, + emoji: "๐Ÿ‡ท๐Ÿ‡ด", + }, + { + regionId: 150, + value: "MZ", + label: "Mozambique", + signal: 2, + emoji: "๐Ÿ‡ฒ๐Ÿ‡ฟ", + }, + { + regionId: 109, + value: "JP", + label: "Japan", + signal: 1, + emoji: "๐Ÿ‡ฏ๐Ÿ‡ต", + }, + { + regionId: 111, + value: "JO", + label: "Jordan", + signal: 3, + emoji: "๐Ÿ‡ฏ๐Ÿ‡ด", + }, + { + regionId: 113, + value: "KE", + label: "Kenya", + signal: 4, + emoji: "๐Ÿ‡ฐ๐Ÿ‡ช", + }, + { + regionId: 239, + value: "VE", + label: "Venezuela", + signal: 2, + emoji: "๐Ÿ‡ป๐Ÿ‡ช", + }, + { + regionId: 236, + value: "UZ", + label: "Uzbekistan", + signal: 3, + emoji: "๐Ÿ‡บ๐Ÿ‡ฟ", + }, + { + regionId: 235, + value: "UY", + label: "Uruguay", + signal: 2, + emoji: "๐Ÿ‡บ๐Ÿ‡พ", + }, + { + regionId: 208, + value: "LK", + label: "Sri Lanka", + signal: 3, + emoji: "๐Ÿ‡ฑ๐Ÿ‡ฐ", + }, + { + regionId: 209, + value: "SD", + label: "Sudan", + signal: 2, + emoji: "๐Ÿ‡ธ๐Ÿ‡ฉ", + }, + { + regionId: 214, + value: "CH", + label: "Switzerland", + signal: 2, + emoji: "๐Ÿ‡จ๐Ÿ‡ญ", + }, + { + regionId: 116, + value: "KR", + label: "South Korea", + signal: 3, + emoji: "๐Ÿ‡ฐ๐Ÿ‡ท", + }, + { + regionId: 210, + value: "SR", + label: "Suriname", + signal: 2, + emoji: "๐Ÿ‡ธ๐Ÿ‡ท", + }, + { + regionId: 204, + value: "ZA", + label: "South Africa", + signal: 2, + emoji: "๐Ÿ‡ฟ๐Ÿ‡ฆ", + }, + { + regionId: 207, + value: "ES", + label: "Spain", + signal: 4, + emoji: "๐Ÿ‡ช๐Ÿ‡ธ", + }, + { + regionId: 216, + value: "TW", + label: "Taiwan", + signal: 3, + emoji: "๐Ÿ‡น๐Ÿ‡ผ", + }, + { + regionId: 213, + value: "SE", + label: "Sweden", + signal: 3, + emoji: "๐Ÿ‡ธ๐Ÿ‡ช", + }, + { + regionId: 203, + value: "SO", + label: "Somalia", + signal: 2, + emoji: "๐Ÿ‡ธ๐Ÿ‡ด", + }, + { + regionId: 121, + value: "LB", + label: "Lebanon", + signal: 3, + emoji: "๐Ÿ‡ฑ๐Ÿ‡ง", + }, + { + regionId: 199, + value: "SG", + label: "Singapore", + signal: 3, + emoji: "๐Ÿ‡ธ๐Ÿ‡ฌ", + }, +]; + +export const GOOGLE_DOMAIN_OPTIONS = [ + { + label: "google.com", + value: "google.com", + }, + { + label: "google.ad", + value: "google.ad", + }, + { + label: "google.ae", + value: "google.ae", + }, + { + label: "google.com.af", + value: "google.com.af", + }, + { + label: "google.com.ag", + value: "google.com.ag", + }, + { + label: "google.com.ai", + value: "google.com.ai", + }, + { + label: "google.al", + value: "google.al", + }, + { + label: "google.am", + value: "google.am", + }, + { + label: "google.co.ao", + value: "google.co.ao", + }, + { + label: "google.com.ar", + value: "google.com.ar", + }, + { + label: "google.as", + value: "google.as", + }, + { + label: "google.at", + value: "google.at", + }, + { + label: "google.com.au", + value: "google.com.au", + }, + { + label: "google.az", + value: "google.az", + }, + { + label: "google.ba", + value: "google.ba", + }, + { + label: "google.com.bd", + value: "google.com.bd", + }, + { + label: "google.be", + value: "google.be", + }, + { + label: "google.bf", + value: "google.bf", + }, + { + label: "google.bg", + value: "google.bg", + }, + { + label: "google.com.bh", + value: "google.com.bh", + }, + { + label: "google.bi", + value: "google.bi", + }, + { + label: "google.bj", + value: "google.bj", + }, + { + label: "google.com.bn", + value: "google.com.bn", + }, + { + label: "google.com.bo", + value: "google.com.bo", + }, + { + label: "google.com.br", + value: "google.com.br", + }, + { + label: "google.bs", + value: "google.bs", + }, + { + label: "google.bt", + value: "google.bt", + }, + { + label: "google.co.bw", + value: "google.co.bw", + }, + { + label: "google.by", + value: "google.by", + }, + { + label: "google.com.bz", + value: "google.com.bz", + }, + { + label: "google.ca", + value: "google.ca", + }, + { + label: "google.com.kh", + value: "google.com.kh", + }, + { + label: "google.cd", + value: "google.cd", + }, + { + label: "google.cf", + value: "google.cf", + }, + { + label: "google.cg", + value: "google.cg", + }, + { + label: "google.ch", + value: "google.ch", + }, + { + label: "google.ci", + value: "google.ci", + }, + { + label: "google.co.ck", + value: "google.co.ck", + }, + { + label: "google.cl", + value: "google.cl", + }, + { + label: "google.cm", + value: "google.cm", + }, + { + label: "google.com.co", + value: "google.com.co", + }, + { + label: "google.co.cr", + value: "google.co.cr", + }, + { + label: "google.com.cu", + value: "google.com.cu", + }, + { + label: "google.cv", + value: "google.cv", + }, + { + label: "google.com.cy", + value: "google.com.cy", + }, + { + label: "google.cz", + value: "google.cz", + }, + { + label: "google.de", + value: "google.de", + }, + { + label: "google.dj", + value: "google.dj", + }, + { + label: "google.dk", + value: "google.dk", + }, + { + label: "google.dm", + value: "google.dm", + }, + { + label: "google.com.do", + value: "google.com.do", + }, + { + label: "google.dz", + value: "google.dz", + }, + { + label: "google.com.ec", + value: "google.com.ec", + }, + { + label: "google.ee", + value: "google.ee", + }, + { + label: "google.com.eg", + value: "google.com.eg", + }, + { + label: "google.es", + value: "google.es", + }, + { + label: "google.com.et", + value: "google.com.et", + }, + { + label: "google.fi", + value: "google.fi", + }, + { + label: "google.fm", + value: "google.fm", + }, + { + label: "google.com.fj", + value: "google.com.fj", + }, + { + label: "google.fr", + value: "google.fr", + }, + { + label: "google.ga", + value: "google.ga", + }, + { + label: "google.ge", + value: "google.ge", + }, + { + label: "google.com.gh", + value: "google.com.gh", + }, + { + label: "google.com.gi", + value: "google.com.gi", + }, + { + label: "google.gl", + value: "google.gl", + }, + { + label: "google.gm", + value: "google.gm", + }, + { + label: "google.gp", + value: "google.gp", + }, + { + label: "google.gr", + value: "google.gr", + }, + { + label: "google.com.gt", + value: "google.com.gt", + }, + { + label: "google.gy", + value: "google.gy", + }, + { + label: "google.com.hk", + value: "google.com.hk", + }, + { + label: "google.hn", + value: "google.hn", + }, + { + label: "google.hr", + value: "google.hr", + }, + { + label: "google.ht", + value: "google.ht", + }, + { + label: "google.hu", + value: "google.hu", + }, + { + label: "google.co.id", + value: "google.co.id", + }, + { + label: "google.iq", + value: "google.iq", + }, + { + label: "google.ie", + value: "google.ie", + }, + { + label: "google.co.il", + value: "google.co.il", + }, + { + label: "google.co.in", + value: "google.co.in", + }, + { + label: "google.is", + value: "google.is", + }, + { + label: "google.it", + value: "google.it", + }, + { + label: "google.je", + value: "google.je", + }, + { + label: "google.com.jm", + value: "google.com.jm", + }, + { + label: "google.jo", + value: "google.jo", + }, + { + label: "google.co.jp", + value: "google.co.jp", + }, + { + label: "google.co.ke", + value: "google.co.ke", + }, + { + label: "google.ki", + value: "google.ki", + }, + { + label: "google.kg", + value: "google.kg", + }, + { + label: "google.co.kr", + value: "google.co.kr", + }, + { + label: "google.com.kw", + value: "google.com.kw", + }, + { + label: "google.kz", + value: "google.kz", + }, + { + label: "google.la", + value: "google.la", + }, + { + label: "google.com.lb", + value: "google.com.lb", + }, + { + label: "google.li", + value: "google.li", + }, + { + label: "google.lk", + value: "google.lk", + }, + { + label: "google.co.ls", + value: "google.co.ls", + }, + { + label: "google.lt", + value: "google.lt", + }, + { + label: "google.lu", + value: "google.lu", + }, + { + label: "google.lv", + value: "google.lv", + }, + { + label: "google.com.ly", + value: "google.com.ly", + }, + { + label: "google.co.ma", + value: "google.co.ma", + }, + { + label: "google.md", + value: "google.md", + }, + { + label: "google.mg", + value: "google.mg", + }, + { + label: "google.mk", + value: "google.mk", + }, + { + label: "google.ml", + value: "google.ml", + }, + { + label: "google.com.mm", + value: "google.com.mm", + }, + { + label: "google.mn", + value: "google.mn", + }, + { + label: "google.ms", + value: "google.ms", + }, + { + label: "google.com.mt", + value: "google.com.mt", + }, + { + label: "google.mu", + value: "google.mu", + }, + { + label: "google.mv", + value: "google.mv", + }, + { + label: "google.mw", + value: "google.mw", + }, + { + label: "google.com.mx", + value: "google.com.mx", + }, + { + label: "google.com.my", + value: "google.com.my", + }, + { + label: "google.co.mz", + value: "google.co.mz", + }, + { + label: "google.com.na", + value: "google.com.na", + }, + { + label: "google.ne", + value: "google.ne", + }, + { + label: "google.com.ng", + value: "google.com.ng", + }, + { + label: "google.com.ni", + value: "google.com.ni", + }, + { + label: "google.nl", + value: "google.nl", + }, + { + label: "google.no", + value: "google.no", + }, + { + label: "google.com.np", + value: "google.com.np", + }, + { + label: "google.nr", + value: "google.nr", + }, + { + label: "google.nu", + value: "google.nu", + }, + { + label: "google.co.nz", + value: "google.co.nz", + }, + { + label: "google.com.om", + value: "google.com.om", + }, + { + label: "google.com.pk", + value: "google.com.pk", + }, + { + label: "google.com.pa", + value: "google.com.pa", + }, + { + label: "google.com.pe", + value: "google.com.pe", + }, + { + label: "google.com.ph", + value: "google.com.ph", + }, + { + label: "google.pl", + value: "google.pl", + }, + { + label: "google.com.pg", + value: "google.com.pg", + }, + { + label: "google.com.pr", + value: "google.com.pr", + }, + { + label: "google.ps", + value: "google.ps", + }, + { + label: "google.pt", + value: "google.pt", + }, + { + label: "google.com.py", + value: "google.com.py", + }, + { + label: "google.com.qa", + value: "google.com.qa", + }, + { + label: "google.ro", + value: "google.ro", + }, + { + label: "google.rs", + value: "google.rs", + }, + { + label: "google.ru", + value: "google.ru", + }, + { + label: "google.rw", + value: "google.rw", + }, + { + label: "google.com.sa", + value: "google.com.sa", + }, + { + label: "google.com.sb", + value: "google.com.sb", + }, + { + label: "google.sc", + value: "google.sc", + }, + { + label: "google.se", + value: "google.se", + }, + { + label: "google.com.sg", + value: "google.com.sg", + }, + { + label: "google.sh", + value: "google.sh", + }, + { + label: "google.si", + value: "google.si", + }, + { + label: "google.sk", + value: "google.sk", + }, + { + label: "google.com.sl", + value: "google.com.sl", + }, + { + label: "google.sn", + value: "google.sn", + }, + { + label: "google.sm", + value: "google.sm", + }, + { + label: "google.so", + value: "google.so", + }, + { + label: "google.sr", + value: "google.sr", + }, + { + label: "google.com.sv", + value: "google.com.sv", + }, + { + label: "google.td", + value: "google.td", + }, + { + label: "google.tg", + value: "google.tg", + }, + { + label: "google.co.th", + value: "google.co.th", + }, + { + label: "google.com.tj", + value: "google.com.tj", + }, + { + label: "google.tk", + value: "google.tk", + }, + { + label: "google.tl", + value: "google.tl", + }, + { + label: "google.tm", + value: "google.tm", + }, + { + label: "google.to", + value: "google.to", + }, + { + label: "google.tn", + value: "google.tn", + }, + { + label: "google.com.tr", + value: "google.com.tr", + }, + { + label: "google.tt", + value: "google.tt", + }, + { + label: "google.com.tw", + value: "google.com.tw", + }, + { + label: "google.co.tz", + value: "google.co.tz", + }, + { + label: "google.com.ua", + value: "google.com.ua", + }, + { + label: "google.co.ug", + value: "google.co.ug", + }, + { + label: "google.co.uk", + value: "google.co.uk", + }, + { + label: "google.com.uy", + value: "google.com.uy", + }, + { + label: "google.co.uz", + value: "google.co.uz", + }, + { + label: "google.com.vc", + value: "google.com.vc", + }, + { + label: "google.co.ve", + value: "google.co.ve", + }, + { + label: "google.vg", + value: "google.vg", + }, + { + label: "google.co.vi", + value: "google.co.vi", + }, + { + label: "google.com.vn", + value: "google.com.vn", + }, + { + label: "google.vu", + value: "google.vu", + }, + { + label: "google.ws", + value: "google.ws", + }, + { + label: "google.co.za", + value: "google.co.za", + }, + { + label: "google.co.zm", + value: "google.co.zm", + }, + { + label: "google.co.zw", + value: "google.co.zw", + }, +]; + +export const GOOGLE_SEARCH_LR_OPTIONS = [ + { + "label": "Arabic", + "value": "lang_ar", + }, + { + "label": "Armenian", + "value": "lang_hy", + }, + { + "label": "Bulgarian", + "value": "lang_bg", + }, + { + "label": "Catalan", + "value": "lang_ca", + }, + { + "label": "Czech", + "value": "lang_cs", + }, + { + "label": "Danish", + "value": "lang_da", + }, + { + "label": "German", + "value": "lang_de", + }, + { + "label": "Greek", + "value": "lang_el", + }, + { + "label": "English", + "value": "lang_en", + }, + { + "label": "Spanish", + "value": "lang_es", + }, + { + "label": "Estonian", + "value": "lang_et", + }, + { + "label": "Filipino", + "value": "lang_tl", + }, + { + "label": "Finnish", + "value": "lang_fi", + }, + { + "label": "French", + "value": "lang_fr", + }, + { + "label": "Croatian", + "value": "lang_hr", + }, + { + "label": "Hindi", + "value": "lang_hi", + }, + { + "label": "Hungarian", + "value": "lang_hu", + }, + { + "label": "Indonesian", + "value": "lang_id", + }, + { + "label": "Icelandic", + "value": "lang_is", + }, + { + "label": "Italian", + "value": "lang_it", + }, + { + "label": "Hebrew", + "value": "lang_iw", + }, + { + "label": "Hebrew", + "value": "lang_he", + }, + { + "label": "Japanese", + "value": "lang_ja", + }, + { + "label": "Korean", + "value": "lang_ko", + }, + { + "label": "Lithuanian", + "value": "lang_lt", + }, + { + "label": "Latvian", + "value": "lang_lv", + }, + { + "label": "Dutch", + "value": "lang_nl", + }, + { + "label": "Norwegian", + "value": "lang_no", + }, + { + "label": "Persian", + "value": "lang_fa", + }, + { + "label": "Polish", + "value": "lang_pl", + }, + { + "label": "Portuguese", + "value": "lang_pt", + }, + { + "label": "Romanian", + "value": "lang_ro", + }, + { + "label": "Russian", + "value": "lang_ru", + }, + { + "label": "Slovak", + "value": "lang_sk", + }, + { + "label": "Slovenian", + "value": "lang_sl", + }, + { + "label": "Serbian", + "value": "lang_sr", + }, + { + "label": "Swedish", + "value": "lang_sv", + }, + { + "label": "Thai", + "value": "lang_th", + }, + { + "label": "Turkish", + "value": "lang_tr", + }, + { + "label": "Ukrainian", + "value": "lang_uk", + }, + { + "label": "Vietnamese", + "value": "lang_vi", + }, + { + "label": "Chinese (Simplified)", + "value": "lang_zh-CN", + }, + { + "label": "Chinese (Traditional)", + "value": "lang_zh-TW", + }, +]; + +export const GOOGLE_SEARCH_TBM_OPTIONS = [ + { + "label": "isch - Google Images", + "value": "isch", + }, + { + "label": "lcl - Google Local", + "value": "lcl", + }, + { + "label": "nws - Google News", + "value": "nws", + }, + { + "label": "shop - Google Shopping", + "value": "shop", + }, + { + "label": "vid - Google Videos", + "value": "vid", + }, + { + "label": "pts - Google Patents", + "value": "pts", + }, +]; + +export const GOOGLE_TRENDS_DATA_TYPE_OPTIONS = [ + { + "label": "Auto complete", + "value": "autocomplete", + }, + { + "label": "Interest over time", + "value": "interest_over_time", + }, + { + "label": "Compared breakdown by region", + "value": "compared_breakdown_by_region", + }, + { + "label": "Interest by region", + "value": "interest_by_subregion", + }, + { + "label": "Related queries", + "value": "related_queries", + }, + { + "label": "Related topics", + "value": "related_topics", + }, +]; + +export const GOOGLE_TRENDS_GEO_OPTIONS = [ + { + "label": "Argentina", + "value": "AR", + }, + { + "label": "Australia", + "value": "AU", }, { - "regionId": 15, - "value": "AT", "label": "Austria", - "signal": 3, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡น", + "value": "AT", + }, + { + "label": "Belgium", + "value": "BE", + }, + { + "label": "Brazil", + "value": "BR", + }, + { + "label": "Canada", + "value": "CA", + }, + { + "label": "Chile", + "value": "CL", + }, + { + "label": "Colombia", + "value": "CO", + }, + { + "label": "Czechia", + "value": "CZ", + }, + { + "label": "Denmark", + "value": "DK", + }, + { + "label": "Egypt", + "value": "EG", + }, + { + "label": "Finland", + "value": "FI", + }, + { + "label": "France", + "value": "FR", + }, + { + "label": "Germany", + "value": "DE", + }, + { + "label": "Greece", + "value": "GR", + }, + { + "label": "Hong Kong", + "value": "HK", + }, + { + "label": "Hungary", + "value": "HU", + }, + { + "label": "India", + "value": "IN", + }, + { + "label": "Indonesia", + "value": "ID", + }, + { + "label": "Ireland", + "value": "IE", + }, + { + "label": "Israel", + "value": "IL", + }, + { + "label": "Italy", + "value": "IT", + }, + { + "label": "Japan", + "value": "JP", + }, + { + "label": "Kenya", + "value": "KE", + }, + { + "label": "Malaysia", + "value": "MY", + }, + { + "label": "Mexico", + "value": "MX", + }, + { + "label": "Netherlands", + "value": "NL", + }, + { + "label": "New Zealand", + "value": "NZ", + }, + { + "label": "Nigeria", + "value": "NG", + }, + { + "label": "Norway", + "value": "NO", + }, + { + "label": "Peru", + "value": "PE", + }, + { + "label": "Philippines", + "value": "PH", + }, + { + "label": "Poland", + "value": "PL", + }, + { + "label": "Portugal", + "value": "PT", + }, + { + "label": "Romania", + "value": "RO", + }, + { + "label": "Russia", + "value": "RU", + }, + { + "label": "Saudi Arabia", + "value": "SA", + }, + { + "label": "Singapore", + "value": "SG", + }, + { + "label": "South Africa", + "value": "ZA", + }, + { + "label": "South Korea", + "value": "KR", + }, + { + "label": "Spain", + "value": "ES", + }, + { + "label": "Sweden", + "value": "SE", + }, + { + "label": "Switzerland", + "value": "CH", + }, + { + "label": "Taiwan", + "value": "TW", + }, + { + "label": "Thailand", + "value": "TH", + }, + { + "label": "Tรผrkiye", + "value": "TR", + }, + { + "label": "Ukraine", + "value": "UA", + }, + { + "label": "United Kingdom", + "value": "GB", + }, + { + "label": "United States", + "value": "US", + }, + { + "label": "Vietnam", + "value": "VN", + }, +]; + +export const GOOGLE_TRENDS_CATEGORY_OPTIONS = [ + { + "value": "0", + "label": "All categories", + }, + { + "value": "3", + "label": "Arts & Entertainment", + }, + { + "value": "5", + "label": "Computers & Electronics", + }, + { + "value": "7", + "label": "Finance", + }, + { + "value": "8", + "label": "Games", + }, + { + "value": "11", + "label": "Home & Garden", + }, + { + "value": "12", + "label": "Business & Industrial", + }, + { + "value": "13", + "label": "Internet & Telecom", + }, + { + "value": "14", + "label": "People & Society", + }, + { + "value": "16", + "label": "News", + }, + { + "value": "18", + "label": "Shopping", + }, + { + "value": "19", + "label": "Law & Government", + }, + { + "value": "20", + "label": "Sports", + }, + { + "value": "22", + "label": "Books & Literature", + }, + { + "value": "23", + "label": "Performing Arts", + }, + { + "value": "24", + "label": "Visual Art & Design", + }, + { + "value": "25", + "label": "Advertising & Marketing", + }, + { + "value": "28", + "label": "Office Services", + }, + { + "value": "29", + "label": "Real Estate", + }, + { + "value": "30", + "label": "Computer Hardware", + }, + { + "value": "31", + "label": "Programming", + }, + { + "value": "32", + "label": "Software", + }, + { + "value": "33", + "label": "Offbeat", + }, + { + "value": "34", + "label": "Movies", + }, + { + "value": "35", + "label": "Music & Audio", + }, + { + "value": "36", + "label": "TV & Video", + }, + { + "value": "37", + "label": "Banking", + }, + { + "value": "38", + "label": "Insurance", + }, + { + "value": "39", + "label": "Card Games", + }, + { + "value": "41", + "label": "Computer & Video Games", + }, + { + "value": "42", + "label": "Jazz", + }, + { + "value": "43", + "label": "Online Goodies", + }, + { + "value": "44", + "label": "Beauty & Fitness", + }, + { + "value": "45", + "label": "Health", + }, + { + "value": "46", + "label": "Agriculture & Forestry", + }, + { + "value": "47", + "label": "Autos & Vehicles", + }, + { + "value": "48", + "label": "Construction & Maintenance", + }, + { + "value": "49", + "label": "Manufacturing", + }, + { + "value": "50", + "label": "Transportation & Logistics", + }, + { + "value": "53", + "label": "Web Hosting & Domain Registration", + }, + { + "value": "54", + "label": "Social Issues & Advocacy", + }, + { + "value": "55", + "label": "Dating & Personals", + }, + { + "value": "56", + "label": "Ethnic & Identity Groups", + }, + { + "value": "57", + "label": "Charity & Philanthropy", + }, + { + "value": "58", + "label": "Parenting", + }, + { + "value": "59", + "label": "Religion & Belief", + }, + { + "value": "60", + "label": "Jobs", + }, + { + "value": "61", + "label": "Classifieds", + }, + { + "value": "63", + "label": "Weather", + }, + { + "value": "64", + "label": "Antiques & Collectibles", + }, + { + "value": "65", + "label": "Hobbies & Leisure", + }, + { + "value": "66", + "label": "Pets & Animals", + }, + { + "value": "67", + "label": "Travel", + }, + { + "value": "68", + "label": "Apparel", + }, + { + "value": "69", + "label": "Consumer Resources", + }, + { + "value": "70", + "label": "Gifts & Special Event Items", + }, + { + "value": "71", + "label": "Food & Drink", + }, + { + "value": "73", + "label": "Mass Merchants & Department Stores", + }, + { + "value": "74", + "label": "Education", + }, + { + "value": "75", + "label": "Legal", + }, + { + "value": "76", + "label": "Government", + }, + { + "value": "77", + "label": "Enterprise Technology", + }, + { + "value": "78", + "label": "Consumer Electronics", + }, + { + "value": "82", + "label": "Environmental Issues", + }, + { + "value": "83", + "label": "Marketing Services", + }, + { + "value": "84", + "label": "Search Engine Optimization & Marketing", + }, + { + "value": "89", + "label": "Vehicle Parts & Accessories", + }, + { + "value": "91", + "label": "Stereo Systems & Components", + }, + { + "value": "93", + "label": "Skin & Nail Care", + }, + { + "value": "94", + "label": "Fitness", + }, + { + "value": "95", + "label": "Office Supplies", + }, + { + "value": "96", + "label": "Real Estate Agencies", + }, + { + "value": "97", + "label": "Consumer Advocacy & Protection", + }, + { + "value": "98", + "label": "Fashion Designers & Collections", + }, + { + "value": "99", + "label": "Gifts", + }, + { + "value": "100", + "label": "Cards & Greetings", + }, + { + "value": "101", + "label": "Spirituality", + }, + { + "value": "102", + "label": "Personals", + }, + { + "value": "104", + "label": "ISPs", + }, + { + "value": "105", + "label": "Online Games", + }, + { + "value": "107", + "label": "Investing", + }, + { + "value": "108", + "label": "Language Resources", + }, + { + "value": "112", + "label": "Broadcast & Network News", + }, + { + "value": "113", + "label": "Gay-Lesbian-Bisexual-Transgender", + }, + { + "value": "115", + "label": "Baby Care & Hygiene", + }, + { + "value": "118", + "label": "Water Sports", + }, + { + "value": "119", + "label": "Wildlife", + }, + { + "value": "120", + "label": "Cookware & Diningware", + }, + { + "value": "121", + "label": "Grocery & Food Retailers", + }, + { + "value": "122", + "label": "Cooking & Recipes", + }, + { + "value": "123", + "label": "Tobacco Products", + }, + { + "value": "124", + "label": "Clothing Accessories", + }, + { + "value": "137", + "label": "Homemaking & Interior Decor", + }, + { + "value": "138", + "label": "Vehicle Maintenance", + }, + { + "value": "143", + "label": "Face & Body Care", + }, + { + "value": "144", + "label": "Unwanted Body & Facial Hair Removal", + }, + { + "value": "145", + "label": "Spas & Beauty Services", + }, + { + "value": "146", + "label": "Hair Care", + }, + { + "value": "147", + "label": "Cosmetology & Beauty Professionals", + }, + { + "value": "148", + "label": "Off-Road Vehicles", + }, + { + "value": "154", + "label": "Kids & Teens", + }, + { + "value": "157", + "label": "Human Resources", + }, + { + "value": "158", + "label": "Home Improvement", + }, + { + "value": "166", + "label": "Public Safety", + }, + { + "value": "168", + "label": "Emergency Services", + }, + { + "value": "170", + "label": "Vehicle Licensing & Registration", + }, + { + "value": "171", + "label": "Native Americans", + }, + { + "value": "174", + "label": "Science", + }, + { + "value": "179", + "label": "Hotels & Accommodations", + }, + { + "value": "180", + "label": "Motor Sports", + }, + { + "value": "182", + "label": "Humor", + }, + { + "value": "184", + "label": "Celebrities & Entertainment News", + }, + { + "value": "185", + "label": "Fashion & Style", + }, + { + "value": "188", + "label": "Clubs & Nightlife", + }, + { + "value": "189", + "label": "Clubs & Organizations", + }, + { + "value": "191", + "label": "Forum & Chat Providers", + }, + { + "value": "195", + "label": "Reproductive Health", + }, + { + "value": "198", + "label": "Birth Control", + }, + { + "value": "202", + "label": "Erectile Dysfunction", + }, + { + "value": "203", + "label": "Air Travel", + }, + { + "value": "205", + "label": "Car Rental & Taxi Services", + }, + { + "value": "206", + "label": "Cruises & Charters", + }, + { + "value": "208", + "label": "Tourist Destinations", + }, + { + "value": "210", + "label": "DVD & Video Shopping", + }, + { + "value": "211", + "label": "Online Video", + }, + { + "value": "213", + "label": "Movie Memorabilia", + }, + { + "value": "215", + "label": "Radio", + }, + { + "value": "216", + "label": "Musical Instruments", + }, + { + "value": "217", + "label": "CD & Audio Shopping", + }, + { + "value": "218", + "label": "Music Art & Memorabilia", + }, + { + "value": "220", + "label": "Music Streams & Downloads", + }, + { + "value": "224", + "label": "Software Utilities", + }, + { + "value": "225", + "label": "Device Drivers", + }, + { + "value": "226", + "label": "Computer Memory", + }, + { + "value": "227", + "label": "MP3 & Portable Media Players", + }, + { + "value": "228", + "label": "PDAs & Handhelds", + }, + { + "value": "229", + "label": "TV & Video Equipment", + }, + { + "value": "230", + "label": "Car Audio", + }, + { + "value": "231", + "label": "Engineering & Technology", + }, + { + "value": "233", + "label": "Energy & Utilities", + }, + { + "value": "234", + "label": "Make-Up & Cosmetics", + }, + { + "value": "235", + "label": "Hair Loss", + }, + { + "value": "236", + "label": "Weight Loss", + }, + { + "value": "237", + "label": "Vitamins & Supplements", + }, + { + "value": "238", + "label": "Cosmetic Surgery", + }, + { + "value": "239", + "label": "Body Art", + }, + { + "value": "241", + "label": "Bodybuilding", + }, + { + "value": "242", + "label": "Perfumes & Fragrances", + }, + { + "value": "244", + "label": "Hygiene & Toiletries", + }, + { + "value": "245", + "label": "Oral & Dental Care", + }, + { + "value": "246", + "label": "Vision Care", + }, + { + "value": "248", + "label": "Pharmacy", + }, + { + "value": "249", + "label": "Health Insurance", + }, + { + "value": "250", + "label": "Hospitals & Treatment Centers", + }, + { + "value": "251", + "label": "Medical Devices & Equipment", + }, + { + "value": "252", + "label": "Health Foundations & Medical Research", + }, + { + "value": "253", + "label": "Medical Literature & Resources", + }, + { + "value": "254", + "label": "Health Education & Medical Training", + }, + { + "value": "255", + "label": "Pharmaceuticals & Biotech", + }, + { + "value": "256", + "label": "Medical Facilities & Services", + }, + { + "value": "257", + "label": "Substance Abuse", + }, + { + "value": "258", + "label": "American Football", + }, + { + "value": "259", + "label": "Baseball", + }, + { + "value": "260", + "label": "Hockey", + }, + { + "value": "261", + "label": "Golf", + }, + { + "value": "262", + "label": "Racquet Sports", + }, + { + "value": "263", + "label": "Sporting Goods", + }, + { + "value": "264", + "label": "Basketball", + }, + { + "value": "265", + "label": "Winter Sports", + }, + { + "value": "268", + "label": "Maps", + }, + { + "value": "269", + "label": "Gardening & Landscaping", + }, + { + "value": "270", + "label": "Home Furnishings", + }, + { + "value": "271", + "label": "Home Appliances", + }, + { + "value": "272", + "label": "Lamps & Lighting", + }, + { + "value": "273", + "label": "Motorcycles", + }, + { + "value": "275", + "label": "Photo & Video Sharing", + }, + { + "value": "276", + "label": "Restaurants", + }, + { + "value": "277", + "label": "Alcoholic Beverages", + }, + { + "value": "278", + "label": "Accounting & Auditing", + }, + { + "value": "279", + "label": "Credit & Lending", + }, + { + "value": "280", + "label": "Merchant Services & Payment Systems", + }, + { + "value": "284", + "label": "Crafts", + }, + { + "value": "287", + "label": "Industrial Materials & Equipment", + }, + { + "value": "288", + "label": "Chemicals Industry", + }, + { + "value": "289", + "label": "Freight & Trucking", + }, + { + "value": "290", + "label": "Packaging", + }, + { + "value": "291", + "label": "Moving & Relocation", + }, + { + "value": "292", + "label": "Auctions", + }, + { + "value": "293", + "label": "Weddings", + }, + { + "value": "294", + "label": "Soccer", + }, + { + "value": "296", + "label": "Cricket", + }, + { + "value": "297", + "label": "Culinary Training", + }, + { + "value": "298", + "label": "Seniors & Retirement", + }, + { + "value": "299", + "label": "Online Communities", + }, + { + "value": "301", + "label": "Web Portals", + }, + { + "value": "302", + "label": "Web Services", + }, + { + "value": "303", + "label": "Operating Systems", + }, + { + "value": "304", + "label": "Internet Clients & Browsers", + }, + { + "value": "305", + "label": "Televisions", + }, + { + "value": "306", + "label": "Cameras & Camcorders", + }, + { + "value": "307", + "label": "Cameras", + }, + { + "value": "308", + "label": "Camcorders", + }, + { + "value": "309", + "label": "Desktop Computers", + }, + { + "value": "310", + "label": "Laptops & Notebooks", + }, + { + "value": "311", + "label": "Networking", + }, + { + "value": "312", + "label": "Computer Peripherals", + }, + { + "value": "313", + "label": "Open Source", + }, + { + "value": "314", + "label": "Computer Security", + }, + { + "value": "315", + "label": "Antivirus & Malware", + }, + { + "value": "316", + "label": "Comics & Animation", + }, + { + "value": "317", + "label": "Anime & Manga", + }, + { + "value": "318", + "label": "Comics", + }, + { + "value": "319", + "label": "Cartoons", + }, + { + "value": "320", + "label": "Photo Rating Sites", + }, + { + "value": "321", + "label": "File Sharing & Hosting", + }, + { + "value": "323", + "label": "Flowers", + }, + { + "value": "324", + "label": "Party & Holiday Supplies", + }, + { + "value": "326", + "label": "Affiliate Programs", + }, + { + "value": "327", + "label": "Public Relations", + }, + { + "value": "328", + "label": "Telemarketing", + }, + { + "value": "329", + "label": "Business Services", + }, + { + "value": "330", + "label": "Recruitment & Staffing", + }, + { + "value": "331", + "label": "Corporate Training", + }, + { + "value": "332", + "label": "Document & Printing Services", + }, + { + "value": "333", + "label": "Office Furniture", + }, + { + "value": "334", + "label": "Corporate Events", + }, + { + "value": "335", + "label": "Trade Shows & Conventions", + }, + { + "value": "336", + "label": "Business Plans & Presentations", + }, + { + "value": "337", + "label": "Office & Facilities Management", + }, + { + "value": "338", + "label": "Management", + }, + { + "value": "340", + "label": "E-Commerce Services", + }, + { + "value": "341", + "label": "Customer Relationship Management (CRM)", + }, + { + "value": "342", + "label": "Enterprise Resource Planning (ERP)", + }, + { + "value": "343", + "label": "Data Management", + }, + { + "value": "344", + "label": "Network Security", + }, + { + "value": "346", + "label": "Networking Equipment", + }, + { + "value": "347", + "label": "Network Monitoring & Management", + }, + { + "value": "350", + "label": "Gems & Jewelry", + }, + { + "value": "352", + "label": "Price Comparisons", + }, + { + "value": "353", + "label": "Product Reviews & Price Comparisons", + }, + { + "value": "354", + "label": "Import & Export", + }, + { + "value": "355", + "label": "Book Retailers", + }, + { + "value": "356", + "label": "Aerospace & Defense", + }, + { + "value": "357", + "label": "TV Soap Operas", + }, + { + "value": "358", + "label": "TV Shows & Programs", + }, + { + "value": "359", + "label": "TV Networks & Stations", + }, + { + "value": "360", + "label": "Bollywood & South Asian Film", + }, + { + "value": "361", + "label": "Audio Equipment", + }, + { + "value": "362", + "label": "Gadgets & Portable Electronics", + }, + { + "value": "364", + "label": "Lottery & Sweepstakes", + }, + { + "value": "365", + "label": "Coupons & Discount Offers", + }, + { + "value": "366", + "label": "Military", + }, + { + "value": "367", + "label": "Distance Learning", + }, + { + "value": "369", + "label": "Vocational & Continuing Education", + }, + { + "value": "371", + "label": "Primary & Secondary Schooling (K-12)", + }, + { + "value": "372", + "label": "Colleges & Universities", + }, + { + "value": "373", + "label": "Standardized & Admissions Tests", + }, + { + "value": "374", + "label": "Educational Resources", + }, + { + "value": "375", + "label": "Libraries & Museums", + }, + { + "value": "377", + "label": "Business & Personal Listings", + }, + { + "value": "378", + "label": "Apartments & Residential Rentals", + }, + { + "value": "379", + "label": "Pet Food & Supplies", + }, + { + "value": "380", + "label": "Veterinarians", + }, + { + "value": "381", + "label": "Game Cheats & Hints", + }, + { + "value": "382", + "label": "Mobile & Wireless", + }, + { + "value": "383", + "label": "Service Providers", + }, + { + "value": "384", + "label": "Phone Service Providers", + }, + { + "value": "385", + "label": "Communications Equipment", + }, + { + "value": "386", + "label": "Voice & Video Chat", + }, + { + "value": "389", + "label": "Calling Cards", + }, + { + "value": "390", + "label": "Mobile Phones", + }, + { + "value": "392", + "label": "Teleconferencing", + }, + { + "value": "394", + "label": "Email & Messaging", + }, + { + "value": "396", + "label": "Politics", + }, + { + "value": "398", + "label": "Campaigns & Elections", + }, + { + "value": "400", + "label": "Ancestry & Genealogy", + }, + { + "value": "401", + "label": "Pregnancy & Maternity", + }, + { + "value": "402", + "label": "Youth Camps", + }, + { + "value": "403", + "label": "Child Care", + }, + { + "value": "404", + "label": "Beer", + }, + { + "value": "405", + "label": "Wine", + }, + { + "value": "406", + "label": "Liquor", + }, + { + "value": "408", + "label": "Newspapers", + }, + { + "value": "409", + "label": "Right-Wing Politics", + }, + { + "value": "410", + "label": "Left-Wing Politics", + }, + { + "value": "412", + "label": "Magazines", + }, + { + "value": "418", + "label": "Nursing", + }, + { + "value": "419", + "label": "Health Conditions", + }, + { + "value": "420", + "label": "Skin Conditions", + }, + { + "value": "421", + "label": "Sexually Transmitted Diseases", + }, + { + "value": "422", + "label": "Web Design & Development", + }, + { + "value": "423", + "label": "Bankruptcy", + }, + { + "value": "424", + "label": "Criminal Law", + }, + { + "value": "425", + "label": "Property Management", + }, + { + "value": "426", + "label": "Intellectual Property", + }, + { + "value": "427", + "label": "Accident & Personal Injury Law", + }, + { + "value": "428", + "label": "T-Shirts", + }, + { + "value": "429", + "label": "Cancer", + }, + { + "value": "432", + "label": "Toys", + }, + { + "value": "433", + "label": "History", + }, + { + "value": "434", + "label": "Electronics & Electrical", + }, + { + "value": "435", + "label": "Astronomy", + }, + { + "value": "436", + "label": "Mathematics", + }, + { + "value": "437", + "label": "Mental Health", + }, + { + "value": "438", + "label": "Vehicle Wheels & Tires", + }, + { + "value": "439", + "label": "Photographic & Digital Arts", + }, + { + "value": "440", + "label": "Biological Sciences", + }, + { + "value": "441", + "label": "Water & Marine Sciences", + }, + { + "value": "442", + "label": "Ecology & Environment", + }, + { + "value": "443", + "label": "Geology", + }, + { + "value": "444", + "label": "Physics", + }, + { + "value": "445", + "label": "Scientific Equipment", + }, + { + "value": "446", + "label": "Scientific Institutions", + }, + { + "value": "447", + "label": "Flash-Based Entertainment", + }, + { + "value": "448", + "label": "Astrology & Divination", + }, + { + "value": "449", + "label": "Occult & Paranormal", + }, + { + "value": "450", + "label": "Customer Services", + }, + { + "value": "451", + "label": "Warranties & Service Contracts", + }, + { + "value": "456", + "label": "Nutrition", + }, + { + "value": "457", + "label": "Special & Restricted Diets", + }, + { + "value": "458", + "label": "Cycling", + }, + { + "value": "459", + "label": "Boating", + }, + { + "value": "461", + "label": "Hunting & Shooting", + }, + { + "value": "462", + "label": "Fishing", + }, + { + "value": "463", + "label": "Property Inspections & Appraisals", + }, + { + "value": "465", + "label": "Home Insurance", + }, + { + "value": "466", + "label": "Home Financing", + }, + { + "value": "467", + "label": "Auto Insurance", + }, + { + "value": "468", + "label": "Auto Financing", + }, + { + "value": "471", + "label": "Pest Control", + }, + { + "value": "472", + "label": "Domestic Services", + }, + { + "value": "473", + "label": "Vehicle Shopping", + }, + { + "value": "474", + "label": "Humanities", + }, + { + "value": "477", + "label": "Architecture", + }, + { + "value": "485", + "label": "Search Engines", + }, + { + "value": "486", + "label": "Graphics & Animation Software", + }, + { + "value": "487", + "label": "Computer Monitors & Displays", + }, + { + "value": "488", + "label": "Data Formats & Protocols", + }, + { + "value": "492", + "label": "Video Players & Recorders", + }, + { + "value": "493", + "label": "Input Devices", + }, + { + "value": "494", + "label": "Printers", + }, + { + "value": "495", + "label": "Scanners", + }, + { + "value": "496", + "label": "Computer Drives & Storage", + }, + { + "value": "497", + "label": "Multimedia Software", + }, + { + "value": "498", + "label": "Business & Productivity Software", + }, + { + "value": "499", + "label": "Alternative & Natural Medicine", + }, + { + "value": "500", + "label": "Physical Therapy", + }, + { + "value": "501", + "label": "Cable & Satellite Providers", + }, + { + "value": "502", + "label": "Subcultures & Niche Interests", + }, + { + "value": "503", + "label": "Goth Subculture", + }, + { + "value": "504", + "label": "Blogging Resources & Services", + }, + { + "value": "505", + "label": "Chemistry", + }, + { + "value": "507", + "label": "Gossip & Tabloid News", + }, + { + "value": "508", + "label": "Social Services", + }, + { + "value": "509", + "label": "Social Sciences", + }, + { + "value": "510", + "label": "Demographics", + }, + { + "value": "511", + "label": "Counseling Services", + }, + { + "value": "512", + "label": "Wrestling", + }, + { + "value": "513", + "label": "Olympics", + }, + { + "value": "514", + "label": "Combat Sports", + }, + { + "value": "515", + "label": "Boxing", + }, + { + "value": "516", + "label": "Martial Arts", + }, + { + "value": "517", + "label": "Rugby", + }, + { + "value": "518", + "label": "Track & Field", + }, + { + "value": "519", + "label": "Gymnastics", + }, + { + "value": "520", + "label": "Economics", + }, + { + "value": "521", + "label": "International Relations", + }, + { + "value": "522", + "label": "Family Law", + }, + { + "value": "527", + "label": "Directories & Listings", + }, + { + "value": "528", + "label": "South Asians & Diaspora", + }, + { + "value": "529", + "label": "Social Networks", + }, + { + "value": "530", + "label": "Undergarments", + }, + { + "value": "531", + "label": "Shopping Portals & Search Engines", + }, + { + "value": "532", + "label": "Ringtones & Mobile Goodies", + }, + { + "value": "533", + "label": "Reference", + }, + { + "value": "534", + "label": "Cheerleading", + }, + { + "value": "535", + "label": "Law Enforcement", + }, + { + "value": "536", + "label": "Sex Education & Counseling", + }, + { + "value": "538", + "label": "Edgy & Bizarre", + }, + { + "value": "539", + "label": "Fun & Trivia", + }, + { + "value": "540", + "label": "Fan Fiction", + }, + { + "value": "541", + "label": "Running & Walking", + }, + { + "value": "542", + "label": "Hiking & Camping", + }, + { + "value": "543", + "label": "Psychology", + }, + { + "value": "546", + "label": "Matrimonial Services", + }, + { + "value": "547", + "label": "African-Americans", + }, + { + "value": "548", + "label": "Latinos & Latin-Americans", + }, + { + "value": "549", + "label": "East Asians & Diaspora", + }, + { + "value": "550", + "label": "Jewish Culture", + }, + { + "value": "551", + "label": "Small Business", + }, + { + "value": "552", + "label": "MLM & Business Opportunities", + }, + { + "value": "554", + "label": "Extreme Sports", + }, + { + "value": "555", + "label": "Visa & Immigration", + }, + { + "value": "556", + "label": "Arabs & Middle Easterners", + }, + { + "value": "557", + "label": "Massage Therapy", + }, + { + "value": "558", + "label": "OBGYN", + }, + { + "value": "559", + "label": "Heart & Hypertension", + }, + { + "value": "560", + "label": "Non-Alcoholic Beverages", + }, + { + "value": "563", + "label": "Pets", + }, + { + "value": "565", + "label": "Poetry", + }, + { + "value": "566", + "label": "Textiles & Nonwovens", + }, + { + "value": "567", + "label": "Technical Support", + }, + { + "value": "568", + "label": "Equestrian", + }, + { + "value": "569", + "label": "Events & Listings", + }, + { + "value": "571", + "label": "Eating Disorders", + }, + { + "value": "572", + "label": "Local News", + }, + { + "value": "573", + "label": "Camera & Photo Equipment", + }, + { + "value": "574", + "label": "Stock Photography", + }, + { + "value": "575", + "label": "Webcams & Virtual Tours", + }, + { + "value": "576", + "label": "Photo & Video Services", + }, + { + "value": "577", + "label": "Photo & Video Software", + }, + { + "value": "578", + "label": "Skins Themes & Wallpapers", + }, + { + "value": "579", + "label": "Africans & Diaspora", + }, + { + "value": "580", + "label": "Southeast Asians & Pacific Islanders", + }, + { + "value": "581", + "label": "Dance", + }, + { + "value": "582", + "label": "Online Journals & Personal Sites", + }, + { + "value": "585", + "label": "Christian & Gospel Music", + }, + { + "value": "586", + "label": "Classical Music", + }, + { + "value": "587", + "label": "Country Music", + }, + { + "value": "588", + "label": "Dance & Electronic Music", + }, + { + "value": "589", + "label": "Jazz & Blues", + }, + { + "value": "590", + "label": "Rock Music", + }, + { + "value": "591", + "label": "Latin American Music", + }, + { + "value": "592", + "label": "Urban & Hip-Hop", + }, + { + "value": "593", + "label": "World Music", + }, + { + "value": "606", + "label": "Metals & Mining", + }, + { + "value": "607", + "label": "Exotic Pets", + }, + { + "value": "608", + "label": "E-Books", + }, + { + "value": "609", + "label": "Myth & Folklore", + }, + { + "value": "610", + "label": "Trucks & SUVs", + }, + { + "value": "611", + "label": "Yoga & Pilates", + }, + { + "value": "612", + "label": "Entertainment Industry", + }, + { + "value": "613", + "label": "Online Media", + }, + { + "value": "614", + "label": "Ticket Sales", + }, + { + "value": "615", + "label": "Horror Films", + }, + { + "value": "616", + "label": "Science Fiction & Fantasy Films", + }, + { + "value": "617", + "label": "Song Lyrics & Tabs", + }, + { + "value": "618", + "label": "Vocals & Show Tunes", + }, + { + "value": "619", + "label": "Retirement & Pension", + }, + { + "value": "620", + "label": "Risk Management", + }, + { + "value": "621", + "label": "Food Production", + }, + { + "value": "622", + "label": "Roleplaying Games", + }, + { + "value": "623", + "label": "Aging & Geriatrics", + }, + { + "value": "624", + "label": "Alzheimer's Disease", + }, + { + "value": "625", + "label": "AIDS & HIV", + }, + { + "value": "626", + "label": "Allergies", + }, + { + "value": "627", + "label": "Asthma", + }, + { + "value": "628", + "label": "Arthritis", + }, + { + "value": "629", + "label": "Cold & Flu", + }, + { + "value": "630", + "label": "Diabetes", + }, + { + "value": "631", + "label": "Headaches & Migraines", + }, + { + "value": "632", + "label": "Infectious Diseases", + }, + { + "value": "633", + "label": "Sleep Disorders", + }, + { + "value": "634", + "label": "Doctors' Offices", + }, + { + "value": "635", + "label": "Medical Procedures", + }, + { + "value": "636", + "label": "Men's Health", + }, + { + "value": "638", + "label": "GERD & Digestive Disorders", + }, + { + "value": "639", + "label": "Anxiety & Stress", + }, + { + "value": "640", + "label": "Depression", + }, + { + "value": "641", + "label": "Learning & Developmental Disabilities", + }, + { + "value": "642", + "label": "ADD & ADHD", + }, + { + "value": "643", + "label": "Cholesterol Issues", + }, + { + "value": "644", + "label": "Occupational Health & Safety", + }, + { + "value": "645", + "label": "Pediatrics", + }, + { + "value": "646", + "label": "Drugs & Medications", + }, + { + "value": "647", + "label": "Infertility", + }, + { + "value": "648", + "label": "Women's Health", + }, + { + "value": "649", + "label": "Assisted Living & Long Term Care", + }, + { + "value": "650", + "label": "Building Materials & Supplies", + }, + { + "value": "651", + "label": "Civil Engineering", + }, + { + "value": "652", + "label": "Construction Consulting & Contracting", + }, + { + "value": "653", + "label": "Design", + }, + { + "value": "654", + "label": "Graphic Design", + }, + { + "value": "655", + "label": "Industrial & Product Design", + }, + { + "value": "656", + "label": "Interior Design", + }, + { + "value": "657", + "label": "Renewable & Alternative Energy", + }, + { + "value": "658", + "label": "Electricity", + }, + { + "value": "659", + "label": "Oil & Gas", + }, + { + "value": "660", + "label": "Waste Management", + }, + { + "value": "661", + "label": "Factory Automation", + }, + { + "value": "662", + "label": "Aviation", + }, + { + "value": "663", + "label": "Couriers & Messengers", + }, + { + "value": "664", + "label": "Distribution & Logistics", + }, + { + "value": "665", + "label": "Maritime Transport", + }, + { + "value": "666", + "label": "Rail Transport", + }, + { + "value": "667", + "label": "Urban Transport", + }, + { + "value": "668", + "label": "Space Technology", + }, + { + "value": "669", + "label": "Defense Industry", + }, + { + "value": "670", + "label": "Agrochemicals", + }, + { + "value": "671", + "label": "Cleaning Agents", + }, + { + "value": "672", + "label": "Coatings & Adhesives", + }, + { + "value": "673", + "label": "Dyes & Pigments", + }, + { + "value": "674", + "label": "Plastics & Polymers", + }, + { + "value": "675", + "label": "Web Stats & Analytics", + }, + { + "value": "676", + "label": "Science Fiction & Fantasy", + }, + { + "value": "677", + "label": "Disabled & Special Needs", + }, + { + "value": "678", + "label": "Holidays & Seasonal Events", + }, + { + "value": "679", + "label": "Children's Interests", + }, + { + "value": "680", + "label": "Teen Interests", + }, + { + "value": "681", + "label": "Indigenous Peoples", + }, + { + "value": "682", + "label": "Eastern Europeans", + }, + { + "value": "683", + "label": "Western Europeans", + }, + { + "value": "685", + "label": "Traffic & Public Transit", + }, + { + "value": "686", + "label": "Urban & Regional Planning", + }, + { + "value": "687", + "label": "Property Development", + }, + { + "value": "688", + "label": "Outdoors", + }, + { + "value": "689", + "label": "Surf & Swim", + }, + { + "value": "690", + "label": "Biographies & Quotations", + }, + { + "value": "691", + "label": "Calculators & Reference Tools", + }, + { + "value": "692", + "label": "Dictionaries & Encyclopedias", + }, + { + "value": "693", + "label": "Forms Guides & Templates", + }, + { + "value": "694", + "label": "How-To, DIY & Expert Content", + }, + { + "value": "695", + "label": "Time & Calendars", + }, + { + "value": "696", + "label": "Luxury Goods", + }, + { + "value": "697", + "label": "Footwear", + }, + { + "value": "699", + "label": "Volleyball", + }, + { + "value": "700", + "label": "Teaching & Classroom Resources", + }, + { + "value": "701", + "label": "Labor & Employment Law", + }, + { + "value": "702", + "label": "Royalty", + }, + { + "value": "703", + "label": "Work & Labor Issues", + }, + { + "value": "704", + "label": "Crime & Justice", + }, + { + "value": "705", + "label": "Security Products & Services", + }, + { + "value": "706", + "label": "Welfare & Unemployment", + }, + { + "value": "707", + "label": "Adventure Travel", + }, + { + "value": "708", + "label": "Bus & Rail", + }, + { + "value": "717", + "label": "Computer Components", + }, + { + "value": "718", + "label": "Outsourcing", + }, + { + "value": "719", + "label": "Physical Asset Management", + }, + { + "value": "720", + "label": "Quality Control & Tracking", + }, + { + "value": "721", + "label": "Business Process", + }, + { + "value": "722", + "label": "Strategic Planning", + }, + { + "value": "723", + "label": "Compensation & Benefits", + }, + { + "value": "724", + "label": "Payroll Services", + }, + { + "value": "725", + "label": "Writing & Editing Services", + }, + { + "value": "726", + "label": "Fire & Security Services", + }, + { + "value": "727", + "label": "Home Office", + }, + { + "value": "728", + "label": "Computer Servers", + }, + { + "value": "729", + "label": "Network Storage", + }, + { + "value": "730", + "label": "Development Tools", + }, + { + "value": "731", + "label": "C & C++", + }, + { + "value": "732", + "label": "Java", + }, + { + "value": "733", + "label": "Scripting Languages", + }, + { + "value": "734", + "label": "Windows & .NET", + }, + { + "value": "735", + "label": "Mac OS", + }, + { + "value": "736", + "label": "Linux & Unix", + }, + { + "value": "737", + "label": "Windows OS", + }, + { + "value": "739", + "label": "Hardware Modding & Tuning", + }, + { + "value": "740", + "label": "Sound & Video Cards", + }, + { + "value": "741", + "label": "Chips & Processors", + }, + { + "value": "742", + "label": "Electronic Components", + }, + { + "value": "743", + "label": "Electromechanical Devices", + }, + { + "value": "744", + "label": "Optoelectronics & Fiber", + }, + { + "value": "745", + "label": "Power Supplies", + }, + { + "value": "746", + "label": "Test & Measurement", + }, + { + "value": "747", + "label": "Aquaculture", + }, + { + "value": "748", + "label": "Agricultural Equipment", + }, + { + "value": "749", + "label": "Crops & Seed", + }, + { + "value": "750", + "label": "Forestry", + }, + { + "value": "751", + "label": "Horticulture", + }, + { + "value": "752", + "label": "Livestock", + }, + { + "value": "784", + "label": "Business News", + }, + { + "value": "785", + "label": "Technology News", + }, + { + "value": "786", + "label": "Paintball", + }, + { + "value": "787", + "label": "Radio Control & Modeling", + }, + { + "value": "788", + "label": "Anatomy", + }, + { + "value": "791", + "label": "Homeschooling", + }, + { + "value": "792", + "label": "Legal Education", + }, + { + "value": "793", + "label": "Veterans", + }, + { + "value": "794", + "label": "GPS & Navigation", + }, + { + "value": "799", + "label": "Business Education", + }, + { + "value": "800", + "label": "Knowledge Management", + }, + { + "value": "801", + "label": "Supply Chain Management", + }, + { + "value": "802", + "label": "Developer Jobs", + }, + { + "value": "803", + "label": "Vehicle Shows", + }, + { + "value": "804", + "label": "Educational Software", + }, + { + "value": "805", + "label": "Fonts", + }, + { + "value": "806", + "label": "Custom & Performance Vehicles", + }, + { + "value": "807", + "label": "Internet Software", + }, + { + "value": "808", + "label": "Content Management", + }, + { + "value": "809", + "label": "Podcasting", + }, + { + "value": "810", + "label": "Hybrid & Alternative Vehicles", + }, + { + "value": "811", + "label": "Credit Cards", + }, + { + "value": "812", + "label": "Debt Management", + }, + { + "value": "813", + "label": "College Financing", + }, + { + "value": "814", + "label": "Currencies & Foreign Exchange", + }, + { + "value": "815", + "label": "Vehicle Brands", + }, + { + "value": "816", + "label": "Restaurant Supply", + }, + { + "value": "817", + "label": "Injury", + }, + { + "value": "818", + "label": "Obesity", + }, + { + "value": "819", + "label": "Pain Management", + }, + { + "value": "820", + "label": "Acura", + }, + { + "value": "821", + "label": "Audi", + }, + { + "value": "822", + "label": "BMW", + }, + { + "value": "823", + "label": "Cadillac", + }, + { + "value": "824", + "label": "Respiratory Conditions", + }, + { + "value": "825", + "label": "Vegetarian Cuisine", + }, + { + "value": "826", + "label": "Chevrolet", + }, + { + "value": "827", + "label": "Doors & Windows", + }, + { + "value": "828", + "label": "HVAC & Climate Control", + }, + { + "value": "829", + "label": "Nails Screws & Fasteners", + }, + { + "value": "830", + "label": "Plumbing Fixtures & Equipment", + }, + { + "value": "831", + "label": "Wood & Plastics", + }, + { + "value": "832", + "label": "Flooring", + }, + { + "value": "833", + "label": "Chrysler", + }, + { + "value": "834", + "label": "Citroรซn", + }, + { + "value": "835", + "label": "Generators", + }, + { + "value": "836", + "label": "Dodge", + }, + { + "value": "837", + "label": "Heavy Machinery", + }, + { + "value": "838", + "label": "Fiat", + }, + { + "value": "839", + "label": "Valves Hoses & Fittings", + }, + { + "value": "840", + "label": "Ford", + }, + { + "value": "841", + "label": "Retail Trade", + }, + { + "value": "842", + "label": "GMC", + }, + { + "value": "843", + "label": "Honda", + }, + { + "value": "844", + "label": "Retail Equipment & Technology", + }, + { + "value": "845", + "label": "Hyundai", + }, + { + "value": "846", + "label": "Jeep", + }, + { + "value": "847", + "label": "Social Network Apps & Add-Ons", + }, + { + "value": "848", + "label": "Kia", + }, + { + "value": "849", + "label": "Lexus", + }, + { + "value": "850", + "label": "Lincoln", + }, + { + "value": "851", + "label": "Mazda", + }, + { + "value": "852", + "label": "Mercedes-Benz", + }, + { + "value": "853", + "label": "Mercury", + }, + { + "value": "854", + "label": "Mitsubishi", + }, + { + "value": "855", + "label": "Nissan", + }, + { + "value": "856", + "label": "Peugeot", + }, + { + "value": "857", + "label": "Pontiac", + }, + { + "value": "858", + "label": "Porsche", + }, + { + "value": "859", + "label": "Renault-Samsung", + }, + { + "value": "860", + "label": "Saturn", + }, + { + "value": "861", + "label": "Subaru", + }, + { + "value": "862", + "label": "Buddhism", + }, + { + "value": "863", + "label": "Toyota", + }, + { + "value": "864", + "label": "Christianity", + }, + { + "value": "865", + "label": "Volkswagen", + }, + { + "value": "866", + "label": "Hinduism", + }, + { + "value": "867", + "label": "Volvo", + }, + { + "value": "868", + "label": "Islam", + }, + { + "value": "869", + "label": "Judaism", + }, + { + "value": "870", + "label": "Self-Help & Motivational", + }, + { + "value": "882", + "label": "Animal Products & Services", + }, + { + "value": "883", + "label": "Animal Welfare", + }, + { + "value": "884", + "label": "Birds", + }, + { + "value": "885", + "label": "Cats", + }, + { + "value": "886", + "label": "Dogs", + }, + { + "value": "887", + "label": "Fish & Aquaria", + }, + { + "value": "888", + "label": "Horses", + }, + { + "value": "889", + "label": "Rabbits & Rodents", + }, + { + "value": "890", + "label": "Reptiles & Amphibians", + }, + { + "value": "891", + "label": "Concerts & Music Festivals", + }, + { + "value": "892", + "label": "Sheet Music", + }, + { + "value": "893", + "label": "Soundtracks", + }, + { + "value": "894", + "label": "Acting & Theater", + }, + { + "value": "895", + "label": "Live Comedy", + }, + { + "value": "896", + "label": "GM-Daewoo", + }, + { + "value": "897", + "label": "Saab", + }, + { + "value": "898", + "label": "Vauxhall-Opel", + }, + { + "value": "899", + "label": "Game Systems & Consoles", + }, + { + "value": "900", + "label": "Data Sheets & Electronics Reference", + }, + { + "value": "901", + "label": "Freeware & Shareware", + }, + { + "value": "902", + "label": "Proxying & Filtering", + }, + { + "value": "903", + "label": "Financial Planning", + }, + { + "value": "904", + "label": "Commodities & Futures Trading", + }, + { + "value": "905", + "label": "Venture Capital", + }, + { + "value": "906", + "label": "Candy & Sweets", + }, + { + "value": "907", + "label": "Baked Goods", + }, + { + "value": "908", + "label": "Fruits & Vegetables", + }, + { + "value": "909", + "label": "Meat & Seafood", + }, + { + "value": "910", + "label": "Soups & Stews", + }, + { + "value": "911", + "label": "World Cuisines", + }, + { + "value": "912", + "label": "Asian Cuisine", + }, + { + "value": "913", + "label": "Latin American Cuisine", + }, + { + "value": "914", + "label": "Mediterranean Cuisine", + }, + { + "value": "915", + "label": "North American Cuisine", + }, + { + "value": "916", + "label": "Coffee & Tea", + }, + { + "value": "917", + "label": "Dining Guides", + }, + { + "value": "918", + "label": "Fast Food", + }, + { + "value": "919", + "label": "Arcade & Coin-Op Games", + }, + { + "value": "920", + "label": "Board Games", + }, + { + "value": "921", + "label": "Chess & Abstract Strategy Games", + }, + { + "value": "922", + "label": "Miniatures & Wargaming", + }, + { + "value": "923", + "label": "Collectible Card Games", + }, + { + "value": "924", + "label": "Poker & Casino Games", + }, + { + "value": "925", + "label": "Adventure Games", + }, + { + "value": "926", + "label": "Casual Games", + }, + { + "value": "927", + "label": "Driving & Racing Games", + }, + { + "value": "928", + "label": "Fighting Games", + }, + { + "value": "929", + "label": "Music & Dance Games", + }, + { + "value": "930", + "label": "Shooter Games", + }, + { + "value": "931", + "label": "Simulation Games", + }, + { + "value": "932", + "label": "Sports Games", + }, + { + "value": "933", + "label": "Strategy Games", + }, + { + "value": "935", + "label": "Massive Multiplayer", + }, + { + "value": "936", + "label": "Party Games", + }, + { + "value": "937", + "label": "Puzzles & Brainteasers", + }, + { + "value": "938", + "label": "Table Games", + }, + { + "value": "939", + "label": "Billiards", + }, + { + "value": "940", + "label": "Table Tennis", + }, + { + "value": "941", + "label": "Genetic Disorders", + }, + { + "value": "942", + "label": "Neurological Disorders", + }, + { + "value": "943", + "label": "Medical Tests & Exams", + }, + { + "value": "944", + "label": "Surgery", + }, + { + "value": "945", + "label": "Medical Photos & Illustration", + }, + { + "value": "946", + "label": "Poisons & Overdoses", + }, + { + "value": "947", + "label": "Public Health", + }, + { + "value": "948", + "label": "Bed & Bath", + }, + { + "value": "949", + "label": "Cleaning Supplies & Services", + }, + { + "value": "950", + "label": "Construction & Power Tools", + }, + { + "value": "951", + "label": "Kitchen & Dining", + }, + { + "value": "952", + "label": "Swimming Pools & Spas", + }, + { + "value": "953", + "label": "Yard & Patio", + }, + { + "value": "954", + "label": "Nuclear Energy", + }, + { + "value": "955", + "label": "Hospitality Industry", + }, + { + "value": "956", + "label": "Event Planning", + }, + { + "value": "957", + "label": "Food Service", + }, + { + "value": "958", + "label": "Jobs & Education", + }, + { + "value": "959", + "label": "Career Resources & Planning", + }, + { + "value": "960", + "label": "Job Listings", + }, + { + "value": "961", + "label": "Resumes & Portfolios", + }, + { + "value": "962", + "label": "Embassies & Consulates", + }, + { + "value": "963", + "label": "Executive Branch", + }, + { + "value": "964", + "label": "Legislative Branch", + }, + { + "value": "965", + "label": "Multilateral Organizations", + }, + { + "value": "966", + "label": "State & Local Government", + }, + { + "value": "967", + "label": "Constitutional Law & Civil Rights", + }, + { + "value": "968", + "label": "Drunk Driving Law", + }, + { + "value": "969", + "label": "Legal Services", + }, + { + "value": "970", + "label": "Product Liability", + }, + { + "value": "972", + "label": "Virtual Worlds", + }, + { + "value": "973", + "label": "Expatriate Communities", + }, + { + "value": "974", + "label": "Adoption", + }, + { + "value": "975", + "label": "Skeptics & Non-Believers", + }, + { + "value": "976", + "label": "Reproductive Rights", + }, + { + "value": "977", + "label": "Special Occasions", + }, + { + "value": "978", + "label": "Photo & Image Sharing", + }, + { + "value": "979", + "label": "Video Sharing", + }, + { + "value": "980", + "label": "General Reference", + }, + { + "value": "981", + "label": "Flora & Fauna", + }, + { + "value": "982", + "label": "Genetics", + }, + { + "value": "983", + "label": "Athletic Apparel", + }, + { + "value": "984", + "label": "Casual Apparel", + }, + { + "value": "985", + "label": "Children's Clothing", + }, + { + "value": "986", + "label": "Handbags & Purses", + }, + { + "value": "987", + "label": "Watches", + }, + { + "value": "988", + "label": "Costumes", + }, + { + "value": "989", + "label": "Eyewear", + }, + { + "value": "990", + "label": "Formal Wear", + }, + { + "value": "991", + "label": "Headwear", + }, + { + "value": "992", + "label": "Men's Clothing", + }, + { + "value": "993", + "label": "Outerwear", + }, + { + "value": "994", + "label": "Sleepwear", + }, + { + "value": "995", + "label": "Swimwear", + }, + { + "value": "996", + "label": "Uniforms & Workwear", + }, + { + "value": "997", + "label": "Women's Clothing", + }, + { + "value": "998", + "label": "Fantasy Sports", + }, + { + "value": "999", + "label": "Recreational Aviation", + }, + { + "value": "1000", + "label": "Individual Sports", + }, + { + "value": "1001", + "label": "Team Sports", + }, + { + "value": "1002", + "label": "Water Activities", + }, + { + "value": "1003", + "label": "Luggage & Travel Accessories", + }, + { + "value": "1004", + "label": "Specialty Travel", + }, + { + "value": "1005", + "label": "Ecotourism", + }, + { + "value": "1006", + "label": "Historical Sites & Buildings", + }, + { + "value": "1007", + "label": "Regional Parks & Gardens", + }, + { + "value": "1008", + "label": "Theme Parks", + }, + { + "value": "1009", + "label": "Zoos-Aquariums-Preserves", + }, + { + "value": "1010", + "label": "Travel Agencies & Services", + }, + { + "value": "1011", + "label": "Travel Guides & Travelogues", + }, + { + "value": "1012", + "label": "Early Childhood Education", + }, + { + "value": "1013", + "label": "Classic Vehicles", + }, + { + "value": "1014", + "label": "City & Local Guides", + }, + { + "value": "1015", + "label": "Alumni & Reunions", + }, + { + "value": "1016", + "label": "Bowling", + }, + { + "value": "1017", + "label": "Handball", + }, + { + "value": "1019", + "label": "Vacation Offers", + }, + { + "value": "1020", + "label": "Religious Music", + }, + { + "value": "1021", + "label": "Pop Music", + }, + { + "value": "1022", + "label": "Experimental & Industrial Music", + }, + { + "value": "1023", + "label": "Folk & Traditional Music", + }, + { + "value": "1024", + "label": "Music Equipment & Technology", + }, + { + "value": "1025", + "label": "DJ Resources & Equipment", + }, + { + "value": "1026", + "label": "Music Recording Technology", + }, + { + "value": "1027", + "label": "Music Reference", + }, + { + "value": "1028", + "label": "Music Composition & Theory", + }, + { + "value": "1030", + "label": "Rap & Hip-Hop", + }, + { + "value": "1031", + "label": "Reggae & Caribbean Music", + }, + { + "value": "1032", + "label": "South Asian Music", + }, + { + "value": "1033", + "label": "East Asian Music", + }, + { + "value": "1034", + "label": "Arab & Middle Eastern Music", + }, + { + "value": "1035", + "label": "Hard Rock & Progressive", + }, + { + "value": "1036", + "label": "Metal (Music)", + }, + { + "value": "1037", + "label": "Classic Rock & Oldies", + }, + { + "value": "1038", + "label": "Indie & Alternative Music", + }, + { + "value": "1039", + "label": "Soul & R&B", + }, + { + "value": "1040", + "label": "Blues", + }, + { + "value": "1041", + "label": "Punk (Music)", + }, + { + "value": "1043", + "label": "Nintendo", + }, + { + "value": "1044", + "label": "Sony PlayStation", + }, + { + "value": "1045", + "label": "Xbox", + }, + { + "value": "1046", + "label": "Handheld Game Consoles", + }, + { + "value": "1047", + "label": "TV Comedies", + }, + { + "value": "1048", + "label": "TV Talk Shows", + }, + { + "value": "1049", + "label": "TV Reality Shows", + }, + { + "value": "1050", + "label": "TV Game Shows", + }, + { + "value": "1055", + "label": "TV Commercials", + }, + { + "value": "1056", + "label": "Trucks", + }, + { + "value": "1057", + "label": "SUVs", + }, + { + "value": "1058", + "label": "Vans & Minivans", + }, + { + "value": "1059", + "label": "Bentley", + }, + { + "value": "1060", + "label": "Buick", + }, + { + "value": "1061", + "label": "Ferrari", + }, + { + "value": "1062", + "label": "Hummer", + }, + { + "value": "1063", + "label": "Jaguar", + }, + { + "value": "1064", + "label": "Lamborghini", + }, + { + "value": "1065", + "label": "Land Rover", + }, + { + "value": "1066", + "label": "Maserati", + }, + { + "value": "1067", + "label": "Mini", + }, + { + "value": "1068", + "label": "Rolls-Royce", + }, + { + "value": "1069", + "label": "Scion", + }, + { + "value": "1070", + "label": "Suzuki", + }, + { + "value": "1071", + "label": "Smart Phones", + }, + { + "value": "1072", + "label": "Documentary Films", + }, + { + "value": "1073", + "label": "College Sports", + }, + { + "value": "1074", + "label": "Beaches & Islands", + }, + { + "value": "1075", + "label": "Courts & Judiciary", + }, + { + "value": "1076", + "label": "Signage", + }, + { + "value": "1077", + "label": "Sports News", + }, + { + "value": "1078", + "label": "Christmas", + }, + { + "value": "1079", + "label": "Halloween & October 31st", + }, + { + "value": "1080", + "label": "Real Estate Listings", + }, + { + "value": "1081", + "label": "Timeshares & Vacation Properties", + }, + { + "value": "1082", + "label": "Sports Coaching & Training", + }, + { + "value": "1083", + "label": "Sports Memorabilia", + }, + { + "value": "1084", + "label": "Geographic Reference", + }, + { + "value": "1085", + "label": "Movie Listings & Theater Showtimes", + }, + { + "value": "1086", + "label": "Film Festivals", + }, + { + "value": "1087", + "label": "Music Education & Instruction", + }, + { + "value": "1088", + "label": "Desktop Publishing", + }, + { + "value": "1089", + "label": "Audio & Music Software", + }, + { + "value": "1090", + "label": "Media Players", + }, + { + "value": "1091", + "label": "Samples & Sound Libraries", + }, + { + "value": "1092", + "label": "Audio Files Formats & Codecs", + }, + { + "value": "1093", + "label": "Philosophy", + }, + { + "value": "1094", + "label": "Drama Films", + }, + { + "value": "1095", + "label": "Comedy Films", + }, + { + "value": "1096", + "label": "Thriller, Crime & Mystery Films", + }, + { + "value": "1097", + "label": "Action & Adventure Films", + }, + { + "value": "1098", + "label": "Silent Films", + }, + { + "value": "1099", + "label": "Western Films", + }, + { + "value": "1100", + "label": "Superhero Films", + }, + { + "value": "1101", + "label": "Martial Arts Films", + }, + { + "value": "1102", + "label": "Classic Films", + }, + { + "value": "1103", + "label": "Cult & Indie Films", + }, + { + "value": "1104", + "label": "Animated Films", + }, + { + "value": "1105", + "label": "Musical Films", + }, + { + "value": "1106", + "label": "Movie Reference", + }, + { + "value": "1107", + "label": "Movie Reviews & Previews", + }, + { + "value": "1108", + "label": "Film & TV Awards", + }, + { + "value": "1109", + "label": "Mobile Apps & Add-Ons", + }, + { + "value": "1110", + "label": "TV Family-Oriented Shows", + }, + { + "value": "1111", + "label": "TV Crime & Legal Shows", + }, + { + "value": "1112", + "label": "TV Sci-Fi & Fantasy Shows", + }, + { + "value": "1113", + "label": "Music Awards", + }, + { + "value": "1114", + "label": "Record Labels", + }, + { + "value": "1115", + "label": "Recording Industry", + }, + { + "value": "1116", + "label": "Film & TV Industry", + }, + { + "value": "1117", + "label": "Film & TV Production", + }, + { + "value": "1118", + "label": "Special Education", + }, + { + "value": "1119", + "label": "Mountain & Ski Resorts", + }, + { + "value": "1120", + "label": "Lakes & Rivers", + }, + { + "value": "1121", + "label": "Unions & Labor Movement", + }, + { + "value": "1122", + "label": "Valentine's Day", + }, + { + "value": "1123", + "label": "Easter", + }, + { + "value": "1124", + "label": "Jewish Holidays", + }, + { + "value": "1125", + "label": "Thanksgiving", + }, + { + "value": "1126", + "label": "Skate Sports", + }, + { + "value": "1127", + "label": "Poverty & Hunger", + }, + { + "value": "1131", + "label": "Family & Relationships", + }, + { + "value": "1132", + "label": "Family", + }, + { + "value": "1133", + "label": "Marriage", + }, + { + "value": "1134", + "label": "Friendship", + }, + { + "value": "1135", + "label": "Romance", + }, + { + "value": "1136", + "label": "Public Records", + }, + { + "value": "1137", + "label": "Legal Forms", + }, + { + "value": "1138", + "label": "Business Finance", + }, + { + "value": "1139", + "label": "Investment Banking", + }, + { + "value": "1140", + "label": "Boats & Watercraft", + }, + { + "value": "1141", + "label": "Robotics", + }, + { + "value": "1142", + "label": "Web Apps & Online Tools", + }, + { + "value": "1143", + "label": "Entertainment Media", + }, + { + "value": "1144", + "label": "Entertainment Media Rentals", + }, + { + "value": "1145", + "label": "DVD & Video Rentals", + }, + { + "value": "1146", + "label": "Video Game Retailers", + }, + { + "value": "1147", + "label": "Personal Aircraft", + }, + { + "value": "1148", + "label": "Skiing & Snowboarding", + }, + { + "value": "1149", + "label": "Ice Skating", + }, + { + "value": "1150", + "label": "Mail & Package Delivery", + }, + { + "value": "1152", + "label": "Fluid Handling", + }, + { + "value": "1153", + "label": "Plumbing", + }, + { + "value": "1155", + "label": "Fashion Modeling", + }, + { + "value": "1157", + "label": "Home Theater Systems", + }, + { + "value": "1158", + "label": "Speakers", }, { - "regionId": 18, - "value": "BH", - "label": "Bahrain", - "signal": 2, - "emoji": "๐Ÿ‡ง๐Ÿ‡ญ", + "value": "1159", + "label": "Business Operations", }, { - "regionId": 11, - "value": "AR", - "label": "Argentina", - "signal": 2, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ท", + "value": "1160", + "label": "Commercial Lending", }, { - "regionId": 16, - "value": "AZ", - "label": "Azerbaijan", - "signal": 3, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฟ", + "value": "1161", + "label": "Public Finance", }, { - "regionId": 57, - "value": "CY", - "label": "Cyprus", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡พ", + "value": "1162", + "label": "Consulting", }, { - "regionId": 36, - "value": "BI", - "label": "Burundi", - "signal": 1, - "emoji": "๐Ÿ‡ง๐Ÿ‡ฎ", + "value": "1163", + "label": "Financial Markets", }, { - "regionId": 38, - "value": "CM", - "label": "Cameroon", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฒ", + "value": "1164", + "label": "Economy News", }, { - "regionId": 55, - "value": "HR", - "label": "Croatia", - "signal": 3, - "emoji": "๐Ÿ‡ญ๐Ÿ‡ท", + "value": "1165", + "label": "Fiscal Policy News", }, { - "regionId": 62, - "value": "DO", - "label": "Dominican Republic", - "signal": 2, - "emoji": "๐Ÿ‡ฉ๐Ÿ‡ด", + "value": "1166", + "label": "Housing & Development", }, { - "regionId": 14, - "value": "AU", - "label": "Australia", - "signal": 3, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡บ", + "value": "1167", + "label": "Painting", }, { - "regionId": 21, - "value": "BY", - "label": "Belarus", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡พ", + "value": "1168", + "label": "Earth Sciences", }, { - "regionId": 7, - "value": "AO", - "label": "Angola", - "signal": 2, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ด", + "value": "1169", + "label": "Paleontology", }, { - "regionId": 34, - "value": "BG", - "label": "Bulgaria", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡ฌ", + "value": "1170", + "label": "Bluetooth Accessories", }, { - "regionId": 51, - "value": "CD", - "label": "Democratic Republic of the Congo", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฉ", + "value": "1171", + "label": "Mobile & Wireless Accessories", }, { - "regionId": 13, - "value": "AW", - "label": "Aruba", - "signal": 2, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ผ", + "value": "1173", + "label": "Dress-Up & Fashion Games", }, { - "regionId": 12, - "value": "AM", - "label": "Armenia", - "signal": 2, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฒ", + "value": "1174", + "label": "Fun Tests & Silly Surveys", }, { - "regionId": 19, - "value": "BD", - "label": "Bangladesh", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡ฉ", + "value": "1175", + "label": "Roofing", }, { - "regionId": 22, - "value": "BE", - "label": "Belgium", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡ช", + "value": "1176", + "label": "Printing & Publishing", }, { - "regionId": 37, - "value": "KH", - "label": "Cambodia", - "signal": 2, - "emoji": "๐Ÿ‡ฐ๐Ÿ‡ญ", + "value": "1177", + "label": "Writers Resources", }, { - "regionId": 58, - "value": "CZ", - "label": "Czech Republic", - "signal": 3, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฟ", + "value": "1178", + "label": "Commercial & Investment Real Estate", }, { - "regionId": 59, - "value": "DK", - "label": "Denmark", - "signal": 2, - "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฐ", + "value": "1179", + "label": "Company News", }, { - "regionId": 35, - "value": "BF", - "label": "Burkina Faso", - "signal": 2, - "emoji": "๐Ÿ‡ง๐Ÿ‡ซ", + "value": "1180", + "label": "Political Humor", }, { - "regionId": 39, - "value": "CA", - "label": "Canada", - "signal": 3, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฆ", + "value": "1181", + "label": "Corporate & Financial Crime", }, { - "regionId": 56, - "value": "CU", - "label": "Cuba", - "signal": 1, - "emoji": "๐Ÿ‡จ๐Ÿ‡บ", + "value": "1182", + "label": "Radio Equipment", }, { - "regionId": 45, - "value": "CN", - "label": "China", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡ณ", + "value": "1183", + "label": "Children's Literature", }, { - "regionId": 80, - "value": "GM", - "label": "Gambia The", - "signal": 1, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฒ", + "value": "1184", + "label": "Literary Classics", }, { - "regionId": 81, - "value": "GE", - "label": "Georgia", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ช", + "value": "1185", + "label": "Opera", }, { - "regionId": 44, - "value": "CL", - "label": "Chile", - "signal": 3, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฑ", + "value": "1186", + "label": "Talk Radio", }, { - "regionId": 50, - "value": "CG", - "label": "Congo", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฌ", + "value": "1187", + "label": "TV Guides & Reference", }, { - "regionId": 54, - "value": "CI", - "label": "Cote D'Ivoire (Ivory Coast)", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡ฎ", + "value": "1188", + "label": "Car Electronics", }, { - "regionId": 79, - "value": "GA", - "label": "Gabon", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฆ", + "value": "1189", + "label": "Car Video", }, { - "regionId": 48, - "value": "CO", - "label": "Colombia", - "signal": 3, - "emoji": "๐Ÿ‡จ๐Ÿ‡ด", + "value": "1190", + "label": "Automotive Industry", }, { - "regionId": 53, - "value": "CR", - "label": "Costa Rica", - "signal": 3, - "emoji": "๐Ÿ‡จ๐Ÿ‡ท", + "value": "1191", + "label": "Bicycles & Accessories", }, { - "regionId": 102, - "value": "ID", - "label": "Indonesia", - "signal": 3, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡ฉ", + "value": "1192", + "label": "Electronic Accessories", }, { - "regionId": 77, - "value": "PF", - "label": "French Polynesia", - "signal": 1, - "emoji": "๐Ÿ‡ต๐Ÿ‡ซ", + "value": "1193", + "label": "TV Dramas", }, { - "regionId": 127, - "value": "LU", - "label": "Luxembourg", - "signal": 3, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡บ", + "value": "1194", + "label": "TV Medical Shows", }, { - "regionId": 135, - "value": "MT", - "label": "Malta", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡น", + "value": "1195", + "label": "Arts Education", }, { - "regionId": 134, - "value": "ML", - "label": "Mali", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฑ", + "value": "1198", + "label": "World Sports Competitions", }, { - "regionId": 142, - "value": "MX", - "label": "Mexico", - "signal": 4, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฝ", + "value": "1199", + "label": "Professional & Trade Associations", }, { - "regionId": 140, - "value": "MU", - "label": "Mauritius", - "signal": 1, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡บ", + "value": "1200", + "label": "Business Formation", }, { - "regionId": 130, - "value": "MG", - "label": "Madagascar", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฌ", + "value": "1201", + "label": "Opinion & Commentary", }, { - "regionId": 131, - "value": "MW", - "label": "Malawi", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ผ", + "value": "1202", + "label": "Political Polls & Surveys", }, { - "regionId": 147, - "value": "ME", - "label": "Montenegro", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ช", + "value": "1203", + "label": "Media Critics & Watchdogs", }, { - "regionId": 156, - "value": "NL", - "label": "Netherlands", - "signal": 3, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ฑ", + "value": "1204", + "label": "Journalism & News Industry", }, { - "regionId": 128, - "value": "MO", - "label": "Macau S.A.R.", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ด", + "value": "1205", + "label": "Discrimination & Identity Relations", }, { - "regionId": 144, - "value": "MD", - "label": "Moldova", - "signal": 3, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฉ", + "value": "1206", + "label": "Drag & Street Racing", }, { - "regionId": 132, - "value": "MY", - "label": "Malaysia", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡พ", + "value": "1207", + "label": "Stunts & Dangerous Feats", }, { - "regionId": 146, - "value": "MN", - "label": "Mongolia", - "signal": 3, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ณ", + "value": "1208", + "label": "African Music", }, { - "regionId": 136, - "value": "IM", - "label": "Man (Isle of)", - "signal": 2, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡ฒ", + "value": "1209", + "label": "World News", }, { - "regionId": 73, - "value": "FJ", - "label": "Fiji Islands", - "signal": 1, - "emoji": "๐Ÿ‡ซ๐Ÿ‡ฏ", + "value": "1210", + "label": "Swap Meets & Outdoor Markets", }, { - "regionId": 74, - "value": "FI", - "label": "Finland", - "signal": 2, - "emoji": "๐Ÿ‡ซ๐Ÿ‡ฎ", + "value": "1211", + "label": "Ear Nose & Throat", }, { - "regionId": 75, - "value": "FR", - "label": "France", - "signal": 4, - "emoji": "๐Ÿ‡ซ๐Ÿ‡ท", + "value": "1212", + "label": "Scooters & Mopeds", }, { - "regionId": 101, - "value": "IN", - "label": "India", - "signal": 2, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡ณ", + "value": "1213", + "label": "Campers & RVs", }, { - "regionId": 100, - "value": "IS", - "label": "Iceland", - "signal": 2, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡ธ", + "value": "1214", + "label": "Commercial Vehicles", }, { - "regionId": 129, - "value": "MK", - "label": "North Macedonia", - "signal": 3, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฐ", + "value": "1215", + "label": "Cargo Trucks & Trailers", }, { - "regionId": 158, - "value": "NZ", - "label": "New Zealand", - "signal": 3, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ฟ", + "value": "1216", + "label": "Engine & Transmission", }, { - "regionId": 159, - "value": "NI", - "label": "Nicaragua", - "signal": 2, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ฎ", + "value": "1217", + "label": "Auto Exterior", }, { - "regionId": 165, - "value": "NO", - "label": "Norway", - "signal": 2, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ด", + "value": "1218", + "label": "Auto Interior", }, { - "regionId": 95, - "value": "HT", - "label": "Haiti", - "signal": 2, - "emoji": "๐Ÿ‡ญ๐Ÿ‡น", + "value": "1219", + "label": "Beauty Pageants", }, { - "regionId": 97, - "value": "HN", - "label": "Honduras", - "signal": 2, - "emoji": "๐Ÿ‡ญ๐Ÿ‡ณ", + "value": "1220", + "label": "Cosmetic Procedures", }, { - "regionId": 99, - "value": "HU", - "label": "Hungary", - "signal": 3, - "emoji": "๐Ÿ‡ญ๐Ÿ‡บ", + "value": "1221", + "label": "Intelligence & Counterterrorism", }, { - "regionId": 94, - "value": "GY", - "label": "Guyana", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡พ", + "value": "1222", + "label": "Online Image Galleries", }, { - "regionId": 98, - "value": "HK", - "label": "Hong Kong S.A.R.", - "signal": 2, - "emoji": "๐Ÿ‡ญ๐Ÿ‡ฐ", + "value": "1223", + "label": "Clip Art & Animated GIFs", }, { - "regionId": 161, - "value": "NG", - "label": "Nigeria", - "signal": 4, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ฌ", + "value": "1224", + "label": "Eyeglasses & Contacts", }, { - "regionId": 166, - "value": "OM", - "label": "Oman", - "signal": 3, - "emoji": "๐Ÿ‡ด๐Ÿ‡ฒ", + "value": "1225", + "label": "Wholesalers & Liquidators", }, { - "regionId": 173, - "value": "PE", - "label": "Peru", - "signal": 2, - "emoji": "๐Ÿ‡ต๐Ÿ‡ช", + "value": "1226", + "label": "Neuroscience", }, { - "regionId": 167, - "value": "PK", - "label": "Pakistan", - "signal": 4, - "emoji": "๐Ÿ‡ต๐Ÿ‡ฐ", + "value": "1227", + "label": "Computer Science", }, { - "regionId": 169, - "value": "PS", - "label": "Palestinian Territory Occupied", - "signal": 3, - "emoji": "๐Ÿ‡ต๐Ÿ‡ธ", + "value": "1228", + "label": "Apparel Services", }, { - "regionId": 171, - "value": "PG", - "label": "Papua new Guinea", - "signal": 2, - "emoji": "๐Ÿ‡ต๐Ÿ‡ฌ", + "value": "1229", + "label": "Computer Education", }, { - "regionId": 176, - "value": "PL", - "label": "Poland", - "signal": 4, - "emoji": "๐Ÿ‡ต๐Ÿ‡ฑ", + "value": "1230", + "label": "Fiber & Textile Arts", }, { - "regionId": 172, - "value": "PY", - "label": "Paraguay", - "signal": 2, - "emoji": "๐Ÿ‡ต๐Ÿ‡พ", + "value": "1231", + "label": "Baby & Pet Names", }, { - "regionId": 170, - "value": "PA", - "label": "Panama", - "signal": 2, - "emoji": "๐Ÿ‡ต๐Ÿ‡ฆ", + "value": "1232", + "label": "House Painting & Finishing", }, { - "regionId": 174, - "value": "PH", - "label": "Philippines", - "signal": 3, - "emoji": "๐Ÿ‡ต๐Ÿ‡ญ", + "value": "1233", + "label": "Technical Reference", }, { - "regionId": 70, - "value": "ET", - "label": "Ethiopia", - "signal": 2, - "emoji": "๐Ÿ‡ช๐Ÿ‡น", + "value": "1234", + "label": "People Search", }, { - "regionId": 90, - "value": "GT", - "label": "Guatemala", - "signal": 3, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡น", + "value": "1235", + "label": "Steroids & Performance-Enhancing Drugs", }, { - "regionId": 85, - "value": "GR", - "label": "Greece", - "signal": 4, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ท", + "value": "1236", + "label": "Sexual Enhancement", }, { - "regionId": 93, - "value": "GW", - "label": "Guinea-Bissau", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ผ", + "value": "1237", + "label": "Smoking & Smoking Cessation", }, { - "regionId": 69, - "value": "EE", - "label": "Estonia", - "signal": 3, - "emoji": "๐Ÿ‡ช๐Ÿ‡ช", + "value": "1238", + "label": "Cleansing & Detoxification", }, { - "regionId": 92, - "value": "GN", - "label": "Guinea", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ณ", + "value": "1239", + "label": "Acupuncture & Chinese Medicine", }, { - "regionId": 194, - "value": "SA", - "label": "Saudi Arabia", - "signal": 3, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ฆ", + "value": "1240", + "label": "Company Earnings", }, { - "regionId": 196, - "value": "RS", - "label": "Serbia", - "signal": 2, - "emoji": "๐Ÿ‡ท๐Ÿ‡ธ", + "value": "1241", + "label": "Mergers & Acquisitions", }, { - "regionId": 17, - "value": "BS", - "label": "The Bahamas", - "signal": 2, - "emoji": "๐Ÿ‡ง๐Ÿ‡ธ", + "value": "1242", + "label": "Reggaeton", }, { - "regionId": 64, - "value": "EC", - "label": "Ecuador", - "signal": 2, - "emoji": "๐Ÿ‡ช๐Ÿ‡จ", + "value": "1243", + "label": "Broadway & Musical Theater", }, { - "regionId": 87, - "value": "GD", - "label": "Grenada", - "signal": 1, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฉ", + "value": "1244", + "label": "Spoofs & Satire", }, { - "regionId": 28, - "value": "BA", - "label": "Bosnia and Herzegovina", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡ฆ", + "value": "1245", + "label": "Airport Parking & Transportation", }, { - "regionId": 31, - "value": "BR", - "label": "Brazil", - "signal": 3, - "emoji": "๐Ÿ‡ง๐Ÿ‡ท", + "value": "1246", + "label": "Carnival & Mardi Gras", }, { - "regionId": 82, - "value": "DE", - "label": "Germany", - "signal": 3, - "emoji": "๐Ÿ‡ฉ๐Ÿ‡ช", + "value": "1247", + "label": "Air Force", }, { - "regionId": 83, - "value": "GH", - "label": "Ghana", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ญ", + "value": "1248", + "label": "Army", }, { - "regionId": 183, - "value": "RW", - "label": "Rwanda", - "signal": 2, - "emoji": "๐Ÿ‡ท๐Ÿ‡ผ", + "value": "1249", + "label": "Navy", }, { - "regionId": 195, - "value": "SN", - "label": "Senegal", - "signal": 3, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ณ", + "value": "1250", + "label": "Marines", }, { - "regionId": 219, - "value": "TH", - "label": "Thailand", - "signal": 2, - "emoji": "๐Ÿ‡น๐Ÿ‡ญ", + "value": "1251", + "label": "Scientology", }, { - "regionId": 217, - "value": "TJ", - "label": "Tajikistan", - "signal": 2, - "emoji": "๐Ÿ‡น๐Ÿ‡ฏ", + "value": "1252", + "label": "Statistics", }, { - "regionId": 218, - "value": "TZ", - "label": "Tanzania", - "signal": 2, - "emoji": "๐Ÿ‡น๐Ÿ‡ฟ", + "value": "1253", + "label": "Health News", }, { - "regionId": 65, - "value": "EG", - "label": "Egypt", - "signal": 3, - "emoji": "๐Ÿ‡ช๐Ÿ‡ฌ", + "value": "1254", + "label": "Atmospheric Science", }, { - "regionId": 66, - "value": "SV", - "label": "El Salvador", - "signal": 2, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ป", + "value": "1255", + "label": "Climate Change & Global Warming", }, { - "regionId": 84, - "value": "GI", - "label": "Gibraltar", - "signal": 1, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฎ", + "value": "1256", + "label": "Health Policy", }, { - "regionId": 188, - "value": "VC", - "label": "Saint Vincent And The Grenadines", - "signal": 2, - "emoji": "๐Ÿ‡ป๐Ÿ‡จ", + "value": "1257", + "label": "Asians & Diaspora", }, { - "regionId": 200, - "value": "SK", - "label": "Slovakia", - "signal": 3, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ฐ", + "value": "1258", + "label": "Pagan & Esoteric Traditions", }, { - "regionId": 201, - "value": "SI", - "label": "Slovenia", - "signal": 2, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ฎ", + "value": "1259", + "label": "Scandals & Investigations", }, { - "regionId": 223, - "value": "TT", - "label": "Trinidad And Tobago", - "signal": 2, - "emoji": "๐Ÿ‡น๐Ÿ‡น", + "value": "1260", + "label": "Troubled Relationships", }, { - "regionId": 224, - "value": "TN", - "label": "Tunisia", - "signal": 4, - "emoji": "๐Ÿ‡น๐Ÿ‡ณ", + "value": "1261", + "label": "Divorce & Separation", }, { - "regionId": 225, - "value": "TR", - "label": "Turkey", - "signal": 3, - "emoji": "๐Ÿ‡น๐Ÿ‡ท", + "value": "1262", + "label": "Parasites & Parasitic Diseases", }, { - "regionId": 229, - "value": "UG", - "label": "Uganda", - "signal": 2, - "emoji": "๐Ÿ‡บ๐Ÿ‡ฌ", + "value": "1263", + "label": "Vaccines & Immunizations", }, { - "regionId": 227, - "value": "TC", - "label": "Turks And Caicos Islands", - "signal": 2, - "emoji": "๐Ÿ‡น๐Ÿ‡จ", + "value": "1264", + "label": "Foreign Language Resources", }, { - "regionId": 230, - "value": "UA", - "label": "Ukraine", - "signal": 2, - "emoji": "๐Ÿ‡บ๐Ÿ‡ฆ", + "value": "1265", + "label": "Translation Tools & Resources", }, { - "regionId": 220, - "value": "TG", - "label": "Togo", - "signal": 2, - "emoji": "๐Ÿ‡น๐Ÿ‡ฌ", + "value": "1266", + "label": "Foreign Language Study", }, { - "regionId": 233, - "value": "US", - "label": "United States", - "signal": 4, - "emoji": "๐Ÿ‡บ๐Ÿ‡ธ", + "value": "1267", + "label": "Vehicle Specs, Reviews & Comparisons", }, { - "regionId": 177, - "value": "PT", - "label": "Portugal", - "signal": 3, - "emoji": "๐Ÿ‡ต๐Ÿ‡น", + "value": "1268", + "label": "Fuel Economy & Gas Prices", }, { - "regionId": 178, - "value": "PR", - "label": "Puerto Rico", - "signal": 2, - "emoji": "๐Ÿ‡ต๐Ÿ‡ท", + "value": "1269", + "label": "Vehicle Fuels & Lubricants", }, { - "regionId": 231, - "value": "AE", - "label": "United Arab Emirates", - "signal": 3, - "emoji": "๐Ÿ‡ฆ๐Ÿ‡ช", + "value": "1270", + "label": "Birthdays & Name Days", }, { - "regionId": 232, - "value": "GB", - "label": "United Kingdom", - "signal": 2, - "emoji": "๐Ÿ‡ฌ๐Ÿ‡ง", + "value": "1271", + "label": "New Year", }, { - "regionId": 240, - "value": "VN", - "label": "Vietnam", - "signal": 3, - "emoji": "๐Ÿ‡ป๐Ÿ‡ณ", + "value": "1272", + "label": "Business & Corporate Law", }, { - "regionId": 112, - "value": "KZ", - "label": "Kazakhstan", - "signal": 4, - "emoji": "๐Ÿ‡ฐ๐Ÿ‡ฟ", + "value": "1273", + "label": "Live Sporting Events", }, { - "regionId": 106, - "value": "IL", - "label": "Israel", - "signal": 4, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡ฑ", + "value": "1274", + "label": "Christian Holidays", }, { - "regionId": 108, - "value": "JM", - "label": "Jamaica", - "signal": 2, - "emoji": "๐Ÿ‡ฏ๐Ÿ‡ฒ", + "value": "1275", + "label": "Islamic Holidays", }, { - "regionId": 242, - "value": "VI", - "label": "Virgin Islands (US)", - "signal": 1, - "emoji": "๐Ÿ‡ป๐Ÿ‡ฎ", + "value": "1276", + "label": "Contests, Awards & Prizes", }, { - "regionId": 118, - "value": "KG", - "label": "Kyrgyzstan", - "signal": 3, - "emoji": "๐Ÿ‡ฐ๐Ÿ‡ฌ", + "value": "1277", + "label": "Tablet PCs", }, { - "regionId": 120, - "value": "LV", - "label": "Latvia", - "signal": 2, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡ป", + "value": "1278", + "label": "Insects & Entomology", }, { - "regionId": 154, - "value": "NP", - "label": "Nepal", - "signal": 2, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ต", + "value": "1279", + "label": "VPN & Remote Access", }, { - "regionId": 246, - "value": "ZM", - "label": "Zambia", - "signal": 2, - "emoji": "๐Ÿ‡ฟ๐Ÿ‡ฒ", + "value": "1280", + "label": "Human Rights & Liberties", }, { - "regionId": 124, - "value": "LY", - "label": "Libya", - "signal": 1, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡พ", + "value": "1281", + "label": "Privacy Issues", }, { - "regionId": 152, - "value": "NA", - "label": "Namibia", - "signal": 1, - "emoji": "๐Ÿ‡ณ๐Ÿ‡ฆ", + "value": "1282", + "label": "Grants & Financial Assistance", }, { - "regionId": 180, - "value": "RE", - "label": "Reunion", - "signal": 1, - "emoji": "๐Ÿ‡ท๐Ÿ‡ช", + "value": "1283", + "label": "Tax Preparation & Planning", }, { - "regionId": 179, - "value": "QA", - "label": "Qatar", - "signal": 2, - "emoji": "๐Ÿ‡ถ๐Ÿ‡ฆ", + "value": "1284", + "label": "Prisons & Corrections", }, { - "regionId": 182, - "value": "RU", - "label": "Russia", - "signal": 2, - "emoji": "๐Ÿ‡ท๐Ÿ‡บ", + "value": "1285", + "label": "Latin Pop", }, { - "regionId": 110, - "value": "JE", - "label": "Jersey", - "signal": 1, - "emoji": "๐Ÿ‡ฏ๐Ÿ‡ช", + "value": "1286", + "label": "Salsa & Tropical Music", }, { - "regionId": 117, - "value": "KW", - "label": "Kuwait", - "signal": 4, - "emoji": "๐Ÿ‡ฐ๐Ÿ‡ผ", + "value": "1287", + "label": "Brazilian Music", }, { - "regionId": 126, - "value": "LT", - "label": "Lithuania", - "signal": 2, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡น", + "value": "1288", + "label": "Military History", }, { - "regionId": 149, - "value": "MA", - "label": "Morocco", - "signal": 3, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฆ", + "value": "1289", + "label": "Academic Conferences & Publications", }, { - "regionId": 105, - "value": "IE", - "label": "Ireland", - "signal": 3, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡ช", + "value": "1290", + "label": "Family-Oriented Games & Activities", }, { - "regionId": 107, - "value": "IT", - "label": "Italy", - "signal": 3, - "emoji": "๐Ÿ‡ฎ๐Ÿ‡น", + "value": "1291", + "label": "Family Films", }, { - "regionId": 151, - "value": "MM", - "label": "Myanmar", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฒ", + "value": "1292", + "label": "Small Kitchen Appliances", }, { - "regionId": 247, - "value": "ZW", - "label": "Zimbabwe", - "signal": 1, - "emoji": "๐Ÿ‡ฟ๐Ÿ‡ผ", + "value": "1293", + "label": "Major Kitchen Appliances", }, { - "regionId": 122, - "value": "LS", - "label": "Lesotho", - "signal": 1, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡ธ", + "value": "1294", + "label": "Vehicle Codes & Driving Laws", }, { - "regionId": 245, - "value": "YE", - "label": "Yemen", - "signal": 2, - "emoji": "๐Ÿ‡พ๐Ÿ‡ช", + "value": "1296", + "label": "Places of Worship", }, { - "regionId": 181, - "value": "RO", - "label": "Romania", - "signal": 2, - "emoji": "๐Ÿ‡ท๐Ÿ‡ด", + "value": "1298", + "label": "Distributed & Parallel Computing", }, { - "regionId": 150, - "value": "MZ", - "label": "Mozambique", - "signal": 2, - "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฟ", + "value": "1299", + "label": "Machine Learning & Artificial Intelligence", }, { - "regionId": 109, - "value": "JP", - "label": "Japan", - "signal": 1, - "emoji": "๐Ÿ‡ฏ๐Ÿ‡ต", + "value": "1300", + "label": "CAD & CAM", }, { - "regionId": 111, - "value": "JO", - "label": "Jordan", - "signal": 3, - "emoji": "๐Ÿ‡ฏ๐Ÿ‡ด", + "value": "1301", + "label": "Same-Sex Marriage", }, { - "regionId": 113, - "value": "KE", - "label": "Kenya", - "signal": 4, - "emoji": "๐Ÿ‡ฐ๐Ÿ‡ช", + "value": "1302", + "label": "Communications & Media Studies", }, { - "regionId": 239, - "value": "VE", - "label": "Venezuela", - "signal": 2, - "emoji": "๐Ÿ‡ป๐Ÿ‡ช", + "value": "1303", + "label": "Public Speaking", }, { - "regionId": 236, - "value": "UZ", - "label": "Uzbekistan", - "signal": 3, - "emoji": "๐Ÿ‡บ๐Ÿ‡ฟ", + "value": "1304", + "label": "Etiquette", }, { - "regionId": 235, - "value": "UY", - "label": "Uruguay", - "signal": 2, - "emoji": "๐Ÿ‡บ๐Ÿ‡พ", + "value": "1305", + "label": "Diving & Underwater Activities", }, { - "regionId": 208, - "value": "LK", - "label": "Sri Lanka", - "signal": 3, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡ฐ", + "value": "1306", + "label": "Parking", }, { - "regionId": 209, - "value": "SD", - "label": "Sudan", - "signal": 2, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ฉ", + "value": "1307", + "label": "Recycling", }, { - "regionId": 214, - "value": "CH", - "label": "Switzerland", - "signal": 2, - "emoji": "๐Ÿ‡จ๐Ÿ‡ญ", + "value": "1308", + "label": "Study Abroad", }, { - "regionId": 116, - "value": "KR", - "label": "South Korea", - "signal": 3, - "emoji": "๐Ÿ‡ฐ๐Ÿ‡ท", + "value": "1309", + "label": "Loyalty Cards & Programs", }, { - "regionId": 210, - "value": "SR", - "label": "Suriname", - "signal": 2, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ท", + "value": "1310", + "label": "Romance Films", }, { - "regionId": 204, - "value": "ZA", - "label": "South Africa", - "signal": 2, - "emoji": "๐Ÿ‡ฟ๐Ÿ‡ฆ", + "value": "1311", + "label": "Action & Platform Games", }, { - "regionId": 207, - "value": "ES", - "label": "Spain", - "signal": 4, - "emoji": "๐Ÿ‡ช๐Ÿ‡ธ", + "value": "1312", + "label": "Gangs & Organized Crime", }, { - "regionId": 216, - "value": "TW", - "label": "Taiwan", - "signal": 3, - "emoji": "๐Ÿ‡น๐Ÿ‡ผ", + "value": "1313", + "label": "Immigration Policy & Border Issues", }, { - "regionId": 213, - "value": "SE", - "label": "Sweden", - "signal": 3, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ช", + "value": "1314", + "label": "Drug Laws & Policy", }, { - "regionId": 203, - "value": "SO", - "label": "Somalia", - "signal": 2, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ด", + "value": "1315", + "label": "Video File Formats & Codecs", }, { - "regionId": 121, - "value": "LB", - "label": "Lebanon", - "signal": 3, - "emoji": "๐Ÿ‡ฑ๐Ÿ‡ง", + "value": "1316", + "label": "Public Policy", }, { - "regionId": 199, - "value": "SG", - "label": "Singapore", - "signal": 3, - "emoji": "๐Ÿ‡ธ๐Ÿ‡ฌ", + "value": "1317", + "label": "Microcars & City Cars", + }, + { + "value": "1318", + "label": "Flash Drives & Memory Cards", + }, + { + "value": "1319", + "label": "Memory Card Readers", + }, + { + "value": "1320", + "label": "Hard Drives", + }, + { + "value": "1321", + "label": "CD & DVD Drives & Burners", + }, + { + "value": "1322", + "label": "CD & DVD Storage Media", + }, + { + "value": "1323", + "label": "Data Backup & Recovery", + }, + { + "value": "1324", + "label": "E-Book Readers", + }, + { + "value": "1325", + "label": "Guitars", + }, + { + "value": "1326", + "label": "Pianos & Keyboards", + }, + { + "value": "1327", + "label": "Drums & Percussion", + }, + { + "value": "1328", + "label": "Endocrine Conditions", + }, + { + "value": "1329", + "label": "Thyroid Conditions", + }, + { + "value": "1330", + "label": "Printers, Copiers & Fax", + }, + { + "value": "1331", + "label": "Copiers", + }, + { + "value": "1332", + "label": "Fax Machines", + }, + { + "value": "1333", + "label": "Ink & Toner", + }, + { + "value": "1334", + "label": "Projectors & Screens", + }, + { + "value": "1339", + "label": "Carpooling & Ridesharing", + }, + { + "value": "1340", + "label": "Theology & Religious Study", + }, + { + "value": "1341", + "label": "Accounting & Financial Software", + }, + { + "value": "1342", + "label": "Video Game Emulation", + }, + { + "value": "1343", + "label": "Gaming Media & Reference", + }, + { + "value": "1344", + "label": "Spreadsheet Software", + }, + { + "value": "1345", + "label": "Word Processing Software", + }, + { + "value": "1346", + "label": "Presentation Software", + }, + { + "value": "1347", + "label": "Public Storage", + }, + { + "value": "1348", + "label": "Home Storage & Shelving", + }, + { + "value": "1349", + "label": "Water Supply & Treatment", + }, + { + "value": "1350", + "label": "Drug & Alcohol Treatment", + }, + { + "value": "1351", + "label": "Drug & Alcohol Testing", + }, + { + "value": "1352", + "label": "Assistive Technology", + }, + { + "value": "1353", + "label": "Mobility Equipment & Accessories", + }, + { + "value": "1354", + "label": "HDTVs", + }, + { + "value": "1355", + "label": "Plasma TVs", + }, + { + "value": "1356", + "label": "LCD TVs", + }, + { + "value": "1357", + "label": "Projection TVs", + }, + { + "value": "1358", + "label": "Calendar & Scheduling Software", + }, + { + "value": "1359", + "label": "Project Management Software", + }, + { + "value": "1360", + "label": "Project Management", + }, + { + "value": "1361", + "label": "Art & Craft Supplies", + }, + { + "value": "1362", + "label": "Rugs & Carpets", + }, + { + "value": "1363", + "label": "Clocks", + }, + { + "value": "1364", + "label": "Laundry", + }, + { + "value": "1365", + "label": "Bathroom", + }, + { + "value": "1366", + "label": "Bedroom", + }, + { + "value": "1367", + "label": "Beds & Headboards", + }, + { + "value": "1368", + "label": "Mattresses", + }, + { + "value": "1369", + "label": "Bedding & Bed Linens", + }, + { + "value": "1370", + "label": "Sofas & Chairs", + }, + { + "value": "1371", + "label": "Water Filters & Purifiers", + }, + { + "value": "1372", + "label": "Nursery & Playroom", + }, + { + "value": "1373", + "label": "Cutlery & Cutting Accessories", + }, + { + "value": "1374", + "label": "Babies & Toddlers", + }, + { + "value": "1375", + "label": "Business Cards & Stationary", + }, + { + "value": "1376", + "label": "Tennis", + }, + { + "value": "1377", + "label": "Infiniti", + }, + { + "value": "1378", + "label": "Isuzu", + }, + { + "value": "1379", + "label": "Text & Instant Messaging", + }, + { + "value": "1380", + "label": "Electric & Plug-In Vehicles", + }, + { + "value": "1381", + "label": "Microblogging", + }, + { + "value": "1382", + "label": "Mobile OS", + }, + { + "value": "1383", + "label": "Camera Lenses", + }, + { + "value": "1384", + "label": "Binoculars, Telescopes & Optical Devices", + }, + { + "value": "1385", + "label": "Government Contracting & Procurement", + }, + { + "value": "1386", + "label": "Lobbying", + }, + { + "value": "1387", + "label": "Government Agencies", + }, + { + "value": "1388", + "label": "Training & Certification", + }, + { + "value": "1389", + "label": "Agritourism", + }, + { + "value": "1390", + "label": "Sightseeing Tours", + }, + { + "value": "1391", + "label": "Vineyards & Wine Tourism", + }, + { + "value": "1392", + "label": "Tourist Boards & Visitor Centers", + }, + { + "value": "1393", + "label": "DVRs & Set-Top Boxes", + }, + { + "value": "1394", + "label": "Blu-Ray Players & Recorders", + }, + { + "value": "1395", + "label": "DVD Players & Recorders", + }, + { + "value": "1396", + "label": "Headphones", + }, + { + "value": "1397", + "label": "Drawing & Coloring", + }, +]; + +export const GOOGLE_TRENDS_PROPERTY_OPTIONS = [ + { + "value": "images", + "label": "Image Search", + }, + { + "value": "news", + "label": "News Search", + }, + { + "value": "froogle", + "label": "Google Shopping", + }, + { + "value": "youtube", + "label": "YouTube Search", }, ]; diff --git a/components/scrapeless/package.json b/components/scrapeless/package.json index 843e20c5c6789..3a27c0b3f5332 100644 --- a/components/scrapeless/package.json +++ b/components/scrapeless/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/scrapeless", - "version": "0.2.0", + "version": "0.2.1", "description": "Pipedream Scrapeless Components", "main": "scrapeless.app.mjs", "keywords": [ @@ -14,6 +14,6 @@ }, "dependencies": { "@pipedream/platform": "^3.0.3", - "@scrapeless-ai/sdk": "^1.4.0" + "@scrapeless-ai/sdk": "1.6.0" } } diff --git a/components/scrapeless/scrapeless.app.mjs b/components/scrapeless/scrapeless.app.mjs index 30bd9266e3832..f2467db7b1a36 100644 --- a/components/scrapeless/scrapeless.app.mjs +++ b/components/scrapeless/scrapeless.app.mjs @@ -1,6 +1,5 @@ import { axios } from "@pipedream/platform"; import { ConfigurationError } from "@pipedream/platform"; -import { Scrapeless } from "@scrapeless-ai/sdk"; export default { type: "app", @@ -23,7 +22,12 @@ export default { ...opts, }); }, - _scrapelessClient() { + async _scrapelessClient() { + process.env.SCRAPELESS_IS_ONLINE = "true"; + process.env.SCRAPELESS_LOG_ROOT_DIR = "/tmp"; + + const { Scrapeless } = await import("@scrapeless-ai/sdk"); + const { api_key } = this.$auth; if (!api_key) { throw new ConfigurationError("API key is required"); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ee86e798dedcf..7e090d56d69c1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11804,8 +11804,8 @@ importers: specifier: ^3.0.3 version: 3.0.3 '@scrapeless-ai/sdk': - specifier: ^1.4.0 - version: 1.5.1(typescript@5.7.2) + specifier: 1.6.0 + version: 1.6.0(typescript@5.7.2) components/scrapeninja: dependencies: @@ -15828,14 +15828,6 @@ importers: specifier: ^6.0.0 version: 6.2.0 - modelcontextprotocol/node_modules2/@modelcontextprotocol/sdk/dist/cjs: {} - - modelcontextprotocol/node_modules2/@modelcontextprotocol/sdk/dist/esm: {} - - modelcontextprotocol/node_modules2/zod-to-json-schema/dist/cjs: {} - - modelcontextprotocol/node_modules2/zod-to-json-schema/dist/esm: {} - packages/ai: dependencies: '@pipedream/sdk': @@ -20246,8 +20238,8 @@ packages: '@rushstack/ts-command-line@4.23.1': resolution: {integrity: sha512-40jTmYoiu/xlIpkkRsVfENtBq4CW3R4azbL0Vmda+fMwHWqss6wwf/Cy/UJmMqIzpfYc2OTnjYP1ZLD3CmyeCA==} - '@scrapeless-ai/sdk@1.5.1': - resolution: {integrity: sha512-dZ92ERwMMH3zR8tIYuYnk9sBuRzddlOJTTlBFxvSHAN7bkDEa0d8YGio+YsrNwJ7S2bNuU1NCcTK95WdbaSRJw==} + '@scrapeless-ai/sdk@1.6.0': + resolution: {integrity: sha512-U+VW0hIUf7x37P9rWDqNY3tzpDdTN1Akwds7hMBkoc1avrQyt8a+tV9nCJFcNTFDD0pfEM5esCJhhJhfIncMvw==} '@sec-ant/readable-stream@0.4.1': resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} @@ -33233,7 +33225,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - debug: 4.4.0 + debug: 4.4.1 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -33242,7 +33234,7 @@ snapshots: '@babel/helper-member-expression-to-functions@7.25.9': dependencies: '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.27.7 transitivePeerDependencies: - supports-color @@ -33264,7 +33256,7 @@ snapshots: '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.27.7 '@babel/helper-plugin-utils@7.25.9': {} @@ -33320,7 +33312,7 @@ snapshots: dependencies: '@babel/template': 7.25.9 '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.27.7 transitivePeerDependencies: - supports-color @@ -34977,10 +34969,10 @@ snapshots: '@types/ws': 8.5.13 duplexify: 3.7.1 inherits: 2.0.4 - isomorphic-ws: 4.0.1(ws@8.18.0) + isomorphic-ws: 4.0.1(ws@8.18.2) readable-stream: 2.3.8 safe-buffer: 5.2.1 - ws: 8.18.0 + ws: 8.18.2 xtend: 4.0.2 transitivePeerDependencies: - bufferutil @@ -35009,7 +35001,7 @@ snapshots: '@antfu/install-pkg': 0.4.1 '@antfu/utils': 0.7.10 '@iconify/types': 2.0.0 - debug: 4.4.0 + debug: 4.4.1 kolorist: 1.8.0 local-pkg: 0.5.1 mlly: 1.7.3 @@ -37386,15 +37378,16 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@scrapeless-ai/sdk@1.5.1(typescript@5.7.2)': + '@scrapeless-ai/sdk@1.6.0(typescript@5.7.2)': dependencies: dotenv: 16.6.0 - form-data: 4.0.2 + form-data: 4.0.3 node-fetch: 2.7.0 playwright-core: 1.53.1 puppeteer-core: 24.10.2 stack-trace: 1.0.0-pre2 tsdown: 0.11.13(typescript@5.7.2) + uuid: 11.1.0 winston: 3.17.0 winston-daily-rotate-file: 5.0.0(winston@3.17.0) winston-transport: 4.9.0 @@ -38371,16 +38364,16 @@ snapshots: '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.27.7 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.26.2 - '@babel/types': 7.26.0 + '@babel/parser': 7.27.7 + '@babel/types': 7.27.7 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.27.7 '@types/body-parser@1.19.5': dependencies: @@ -38896,7 +38889,7 @@ snapshots: '@typescript-eslint/typescript-estree@2.34.0(typescript@3.9.10)': dependencies: - debug: 4.4.0 + debug: 4.4.1 eslint-visitor-keys: 1.3.0 glob: 7.2.3 is-glob: 4.0.3 @@ -38942,7 +38935,7 @@ snapshots: '@typescript/vfs@1.6.0(typescript@5.6.3)': dependencies: - debug: 4.4.0 + debug: 4.4.1 typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -39073,7 +39066,7 @@ snapshots: agent-base@7.1.1: dependencies: - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -39612,7 +39605,7 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.27.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 @@ -41173,7 +41166,7 @@ snapshots: detective-less@1.0.2: dependencies: - debug: 4.4.0 + debug: 4.4.1 gonzales-pe: 4.3.0 node-source-walk: 4.3.0 transitivePeerDependencies: @@ -41181,7 +41174,7 @@ snapshots: detective-postcss@3.0.1: dependencies: - debug: 4.4.0 + debug: 4.4.1 is-url: 1.2.4 postcss: 7.0.39 postcss-values-parser: 1.5.0 @@ -42967,7 +42960,7 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 data-uri-to-buffer: 3.0.1 - debug: 4.4.0 + debug: 4.4.1 file-uri-to-path: 2.0.0 fs-extra: 8.1.0 ftp: 0.3.10 @@ -42978,7 +42971,7 @@ snapshots: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.4.0 + debug: 4.4.1 fs-extra: 11.2.0 transitivePeerDependencies: - supports-color @@ -43756,7 +43749,7 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -43771,7 +43764,7 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -44235,9 +44228,9 @@ snapshots: transitivePeerDependencies: - encoding - isomorphic-ws@4.0.1(ws@8.18.0): + isomorphic-ws@4.0.1(ws@8.18.2): dependencies: - ws: 8.18.0 + ws: 8.18.2 isomorphic-ws@4.0.1(ws@8.7.0): dependencies: @@ -46240,7 +46233,7 @@ snapshots: micromark@2.11.4: dependencies: - debug: 4.4.0 + debug: 4.4.1 parse-entities: 2.0.0 transitivePeerDependencies: - supports-color @@ -46436,7 +46429,7 @@ snapshots: mqtt-packet@6.10.0: dependencies: bl: 4.1.0 - debug: 4.4.0 + debug: 4.4.1 process-nextick-args: 2.0.1 transitivePeerDependencies: - supports-color @@ -46445,7 +46438,7 @@ snapshots: dependencies: commist: 1.1.0 concat-stream: 2.0.0 - debug: 4.4.0 + debug: 4.4.1 duplexify: 4.1.3 help-me: 3.0.0 inherits: 2.0.4 @@ -46939,7 +46932,7 @@ snapshots: number-allocator@1.0.14: dependencies: - debug: 4.4.0 + debug: 4.4.1 js-sdsl: 4.3.0 transitivePeerDependencies: - supports-color @@ -47334,7 +47327,7 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.4.0 + debug: 4.4.1 get-uri: 3.0.2 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 @@ -47348,7 +47341,7 @@ snapshots: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.1 - debug: 4.4.0 + debug: 4.4.1 get-uri: 6.0.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -49614,7 +49607,7 @@ snapshots: socks-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.4.0 + debug: 4.4.1 socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -49622,7 +49615,7 @@ snapshots: socks-proxy-agent@8.0.4: dependencies: agent-base: 7.1.1 - debug: 4.4.0 + debug: 4.4.1 socks: 2.8.3 transitivePeerDependencies: - supports-color